diff --git a/dist/webuploader.custom.js b/dist/webuploader.custom.js
index 872072ea2..fb745c9f6 100644
--- a/dist/webuploader.custom.js
+++ b/dist/webuploader.custom.js
@@ -1,6607 +1,6607 @@
-/*! WebUploader 0.1.8-alpha */
+/*! WebUploader 0.1.8-alpha */
-/**
- * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
- *
- * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
- */
-(function( root, factory ) {
- var modules = {},
-
- // 内部require, 简单不完全实现。
- // https://github.com/amdjs/amdjs-api/wiki/require
- _require = function( deps, callback ) {
- var args, len, i;
-
- // 如果deps不是数组,则直接返回指定module
- if ( typeof deps === 'string' ) {
- return getModule( deps );
- } else {
- args = [];
- for( len = deps.length, i = 0; i < len; i++ ) {
- args.push( getModule( deps[ i ] ) );
- }
-
- return callback.apply( null, args );
- }
- },
-
- // 内部define,暂时不支持不指定id.
- _define = function( id, deps, factory ) {
- if ( arguments.length === 2 ) {
- factory = deps;
- deps = null;
- }
-
- _require( deps || [], function() {
- setModule( id, factory, arguments );
- });
- },
-
- // 设置module, 兼容CommonJs写法。
- setModule = function( id, factory, args ) {
- var module = {
- exports: factory
- },
- returned;
-
- if ( typeof factory === 'function' ) {
- args.length || (args = [ _require, module.exports, module ]);
- returned = factory.apply( null, args );
- returned !== undefined && (module.exports = returned);
- }
-
- modules[ id ] = module.exports;
- },
-
- // 根据id获取module
- getModule = function( id ) {
- var module = modules[ id ] || root[ id ];
-
- if ( !module ) {
- throw new Error( '`' + id + '` is undefined' );
- }
-
- return module;
- },
-
- // 将所有modules,将路径ids装换成对象。
- exportsTo = function( obj ) {
- var key, host, parts, part, last, ucFirst;
-
- // make the first character upper case.
- ucFirst = function( str ) {
- return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
- };
-
- for ( key in modules ) {
- host = obj;
-
- if ( !modules.hasOwnProperty( key ) ) {
- continue;
- }
-
- parts = key.split('/');
- last = ucFirst( parts.pop() );
-
- while( (part = ucFirst( parts.shift() )) ) {
- host[ part ] = host[ part ] || {};
- host = host[ part ];
- }
-
- host[ last ] = modules[ key ];
- }
-
- return obj;
- },
-
- makeExport = function( dollar ) {
- root.__dollar = dollar;
-
- // exports every module.
- return exportsTo( factory( root, _define, _require ) );
- },
-
- origin;
-
- if ( typeof module === 'object' && typeof module.exports === 'object' ) {
-
- // For CommonJS and CommonJS-like environments where a proper window is present,
- module.exports = makeExport();
- } else if ( typeof define === 'function' && define.amd ) {
-
- // Allow using this built library as an AMD module
- // in another project. That other project will only
- // see this AMD call, not the internal modules in
- // the closure below.
- define([ 'jquery' ], makeExport );
- } else {
-
- // Browser globals case. Just assign the
- // result to a property on the global.
- origin = root.WebUploader;
- root.WebUploader = makeExport();
- root.WebUploader.noConflict = function() {
- root.WebUploader = origin;
- };
- }
-})( window, function( window, define, require ) {
-
+/**
+ * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
+ *
+ * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
+ */
+(function( root, factory ) {
+ var modules = {},
+
+ // 内部require, 简单不完全实现。
+ // https://github.com/amdjs/amdjs-api/wiki/require
+ _require = function( deps, callback ) {
+ var args, len, i;
+
+ // 如果deps不是数组,则直接返回指定module
+ if ( typeof deps === 'string' ) {
+ return getModule( deps );
+ } else {
+ args = [];
+ for( len = deps.length, i = 0; i < len; i++ ) {
+ args.push( getModule( deps[ i ] ) );
+ }
+
+ return callback.apply( null, args );
+ }
+ },
+
+ // 内部define,暂时不支持不指定id.
+ _define = function( id, deps, factory ) {
+ if ( arguments.length === 2 ) {
+ factory = deps;
+ deps = null;
+ }
+
+ _require( deps || [], function() {
+ setModule( id, factory, arguments );
+ });
+ },
+
+ // 设置module, 兼容CommonJs写法。
+ setModule = function( id, factory, args ) {
+ var module = {
+ exports: factory
+ },
+ returned;
+
+ if ( typeof factory === 'function' ) {
+ args.length || (args = [ _require, module.exports, module ]);
+ returned = factory.apply( null, args );
+ returned !== undefined && (module.exports = returned);
+ }
+
+ modules[ id ] = module.exports;
+ },
+
+ // 根据id获取module
+ getModule = function( id ) {
+ var module = modules[ id ] || root[ id ];
+
+ if ( !module ) {
+ throw new Error( '`' + id + '` is undefined' );
+ }
+
+ return module;
+ },
+
+ // 将所有modules,将路径ids装换成对象。
+ exportsTo = function( obj ) {
+ var key, host, parts, part, last, ucFirst;
+
+ // make the first character upper case.
+ ucFirst = function( str ) {
+ return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
+ };
+
+ for ( key in modules ) {
+ host = obj;
+
+ if ( !modules.hasOwnProperty( key ) ) {
+ continue;
+ }
+
+ parts = key.split('/');
+ last = ucFirst( parts.pop() );
+
+ while( (part = ucFirst( parts.shift() )) ) {
+ host[ part ] = host[ part ] || {};
+ host = host[ part ];
+ }
+
+ host[ last ] = modules[ key ];
+ }
+
+ return obj;
+ },
+
+ makeExport = function( dollar ) {
+ root.__dollar = dollar;
+
+ // exports every module.
+ return exportsTo( factory( root, _define, _require ) );
+ },
+
+ origin;
+
+ if ( typeof module === 'object' && typeof module.exports === 'object' ) {
+
+ // For CommonJS and CommonJS-like environments where a proper window is present,
+ module.exports = makeExport();
+ } else if ( typeof define === 'function' && define.amd ) {
+
+ // Allow using this built library as an AMD module
+ // in another project. That other project will only
+ // see this AMD call, not the internal modules in
+ // the closure below.
+ define([ 'jquery' ], makeExport );
+ } else {
+
+ // Browser globals case. Just assign the
+ // result to a property on the global.
+ origin = root.WebUploader;
+ root.WebUploader = makeExport();
+ root.WebUploader.noConflict = function() {
+ root.WebUploader = origin;
+ };
+ }
+})( window, function( window, define, require ) {
+
- /**
- * @fileOverview jQuery or Zepto
- * @require "jquery"
- * @require "zepto"
- */
- define('dollar-third',[],function() {
- var req = window.require;
- var $ = window.__dollar ||
- window.jQuery ||
- window.Zepto ||
- req('jquery') ||
- req('zepto');
-
- if ( !$ ) {
- throw new Error('jQuery or Zepto not found!');
- }
-
- return $;
- });
+ /**
+ * @fileOverview jQuery or Zepto
+ * @require "jquery"
+ * @require "zepto"
+ */
+ define('dollar-third',[],function() {
+ var req = window.require;
+ var $ = window.__dollar ||
+ window.jQuery ||
+ window.Zepto ||
+ req('jquery') ||
+ req('zepto');
+
+ if ( !$ ) {
+ throw new Error('jQuery or Zepto not found!');
+ }
+
+ return $;
+ });
- /**
- * @fileOverview Dom 操作相关
- */
- define('dollar',[
- 'dollar-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview Dom 操作相关
+ */
+ define('dollar',[
+ 'dollar-third'
+ ], function( _ ) {
+ return _;
});
- /**
- * 直接来源于jquery的代码。
- * @fileOverview Promise/A+
- * @beta
- */
- define('promise-builtin',[
- 'dollar'
- ], function( $ ) {
-
- var api;
-
- // 简单版Callbacks, 默认memory,可选once.
- function Callbacks( once ) {
- var list = [],
- stack = !once && [],
- fire = function( data ) {
- memory = data;
- fired = true;
- firingIndex = firingStart || 0;
- firingStart = 0;
- firingLength = list.length;
- firing = true;
-
- for ( ; list && firingIndex < firingLength; firingIndex++ ) {
- list[ firingIndex ].apply( data[ 0 ], data[ 1 ] );
- }
- firing = false;
-
- if ( list ) {
- if ( stack ) {
- stack.length && fire( stack.shift() );
- } else {
- list = [];
- }
- }
- },
- self = {
- add: function() {
- if ( list ) {
- var start = list.length;
- (function add ( args ) {
- $.each( args, function( _, arg ) {
- var type = $.type( arg );
- if ( type === 'function' ) {
- list.push( arg );
- } else if ( arg && arg.length &&
- type !== 'string' ) {
-
- add( arg );
- }
- });
- })( arguments );
-
- if ( firing ) {
- firingLength = list.length;
- } else if ( memory ) {
- firingStart = start;
- fire( memory );
- }
- }
- return this;
- },
-
- disable: function() {
- list = stack = memory = undefined;
- return this;
- },
-
- // Lock the list in its current state
- lock: function() {
- stack = undefined;
- if ( !memory ) {
- self.disable();
- }
- return this;
- },
-
- fireWith: function( context, args ) {
- if ( list && (!fired || stack) ) {
- args = args || [];
- args = [ context, args.slice ? args.slice() : args ];
- if ( firing ) {
- stack.push( args );
- } else {
- fire( args );
- }
- }
- return this;
- },
-
- fire: function() {
- self.fireWith( this, arguments );
- return this;
- }
- },
-
- fired, firing, firingStart, firingLength, firingIndex, memory;
-
- return self;
- }
-
- function Deferred( func ) {
- var tuples = [
- // action, add listener, listener list, final state
- [ 'resolve', 'done', Callbacks( true ), 'resolved' ],
- [ 'reject', 'fail', Callbacks( true ), 'rejected' ],
- [ 'notify', 'progress', Callbacks() ]
- ],
- state = 'pending',
- promise = {
- state: function() {
- return state;
- },
- always: function() {
- deferred.done( arguments ).fail( arguments );
- return this;
- },
- then: function( /* fnDone, fnFail, fnProgress */ ) {
- var fns = arguments;
- return Deferred(function( newDefer ) {
- $.each( tuples, function( i, tuple ) {
- var action = tuple[ 0 ],
- fn = $.isFunction( fns[ i ] ) && fns[ i ];
-
- // deferred[ done | fail | progress ] for
- // forwarding actions to newDefer
- deferred[ tuple[ 1 ] ](function() {
- var returned;
-
- returned = fn && fn.apply( this, arguments );
-
- if ( returned &&
- $.isFunction( returned.promise ) ) {
-
- returned.promise()
- .done( newDefer.resolve )
- .fail( newDefer.reject )
- .progress( newDefer.notify );
- } else {
- newDefer[ action + 'With' ](
- this === promise ?
- newDefer.promise() :
- this,
- fn ? [ returned ] : arguments );
- }
- });
- });
- fns = null;
- }).promise();
- },
-
- // Get a promise for this deferred
- // If obj is provided, the promise aspect is added to the object
- promise: function( obj ) {
-
- return obj != null ? $.extend( obj, promise ) : promise;
- }
- },
- deferred = {};
-
- // Keep pipe for back-compat
- promise.pipe = promise.then;
-
- // Add list-specific methods
- $.each( tuples, function( i, tuple ) {
- var list = tuple[ 2 ],
- stateString = tuple[ 3 ];
-
- // promise[ done | fail | progress ] = list.add
- promise[ tuple[ 1 ] ] = list.add;
-
- // Handle state
- if ( stateString ) {
- list.add(function() {
- // state = [ resolved | rejected ]
- state = stateString;
-
- // [ reject_list | resolve_list ].disable; progress_list.lock
- }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
- }
-
- // deferred[ resolve | reject | notify ]
- deferred[ tuple[ 0 ] ] = function() {
- deferred[ tuple[ 0 ] + 'With' ]( this === deferred ? promise :
- this, arguments );
- return this;
- };
- deferred[ tuple[ 0 ] + 'With' ] = list.fireWith;
- });
-
- // Make the deferred a promise
- promise.promise( deferred );
-
- // Call given func if any
- if ( func ) {
- func.call( deferred, deferred );
- }
-
- // All done!
- return deferred;
- }
-
- api = {
- /**
- * 创建一个[Deferred](http://api.jquery.com/category/deferred-object/)对象。
- * 详细的Deferred用法说明,请参照jQuery的API文档。
- *
- * Deferred对象在钩子回掉函数中经常要用到,用来处理需要等待的异步操作。
- *
- * @for Base
- * @method Deferred
- * @grammar Base.Deferred() => Deferred
- * @example
- * // 在文件开始发送前做些异步操作。
- * // WebUploader会等待此异步操作完成后,开始发送文件。
- * Uploader.register({
- * 'before-send-file': 'doSomthingAsync'
- * }, {
- *
- * doSomthingAsync: function() {
- * var deferred = Base.Deferred();
- *
- * // 模拟一次异步操作。
- * setTimeout(deferred.resolve, 2000);
- *
- * return deferred.promise();
- * }
- * });
- */
- Deferred: Deferred,
-
- /**
- * 判断传入的参数是否为一个promise对象。
- * @method isPromise
- * @grammar Base.isPromise( anything ) => Boolean
- * @param {*} anything 检测对象。
- * @return {Boolean}
- * @for Base
- * @example
- * console.log( Base.isPromise() ); // => false
- * console.log( Base.isPromise({ key: '123' }) ); // => false
- * console.log( Base.isPromise( Base.Deferred().promise() ) ); // => true
- *
- * // Deferred也是一个Promise
- * console.log( Base.isPromise( Base.Deferred() ) ); // => true
- */
- isPromise: function( anything ) {
- return anything && typeof anything.then === 'function';
- },
-
- /**
- * 返回一个promise,此promise在所有传入的promise都完成了后完成。
- * 详细请查看[这里](http://api.jquery.com/jQuery.when/)。
- *
- * @method when
- * @for Base
- * @grammar Base.when( promise1[, promise2[, promise3...]] ) => Promise
- */
- when: function( subordinate /* , ..., subordinateN */ ) {
- var i = 0,
- slice = [].slice,
- resolveValues = slice.call( arguments ),
- length = resolveValues.length,
-
- // the count of uncompleted subordinates
- remaining = length !== 1 || (subordinate &&
- $.isFunction( subordinate.promise )) ? length : 0,
-
- // the master Deferred. If resolveValues consist of
- // only a single Deferred, just use that.
- deferred = remaining === 1 ? subordinate : Deferred(),
-
- // Update function for both resolve and progress values
- updateFunc = function( i, contexts, values ) {
- return function( value ) {
- contexts[ i ] = this;
- values[ i ] = arguments.length > 1 ?
- slice.call( arguments ) : value;
-
- if ( values === progressValues ) {
- deferred.notifyWith( contexts, values );
- } else if ( !(--remaining) ) {
- deferred.resolveWith( contexts, values );
- }
- };
- },
-
- progressValues, progressContexts, resolveContexts;
-
- // add listeners to Deferred subordinates; treat others as resolved
- if ( length > 1 ) {
- progressValues = new Array( length );
- progressContexts = new Array( length );
- resolveContexts = new Array( length );
- for ( ; i < length; i++ ) {
- if ( resolveValues[ i ] &&
- $.isFunction( resolveValues[ i ].promise ) ) {
-
- resolveValues[ i ].promise()
- .done( updateFunc( i, resolveContexts,
- resolveValues ) )
- .fail( deferred.reject )
- .progress( updateFunc( i, progressContexts,
- progressValues ) );
- } else {
- --remaining;
- }
- }
- }
-
- // if we're not waiting on anything, resolve the master
- if ( !remaining ) {
- deferred.resolveWith( resolveContexts, resolveValues );
- }
-
- return deferred.promise();
- }
- };
-
- return api;
+ /**
+ * 直接来源于jquery的代码。
+ * @fileOverview Promise/A+
+ * @beta
+ */
+ define('promise-builtin',[
+ 'dollar'
+ ], function( $ ) {
+
+ var api;
+
+ // 简单版Callbacks, 默认memory,可选once.
+ function Callbacks( once ) {
+ var list = [],
+ stack = !once && [],
+ fire = function( data ) {
+ memory = data;
+ fired = true;
+ firingIndex = firingStart || 0;
+ firingStart = 0;
+ firingLength = list.length;
+ firing = true;
+
+ for ( ; list && firingIndex < firingLength; firingIndex++ ) {
+ list[ firingIndex ].apply( data[ 0 ], data[ 1 ] );
+ }
+ firing = false;
+
+ if ( list ) {
+ if ( stack ) {
+ stack.length && fire( stack.shift() );
+ } else {
+ list = [];
+ }
+ }
+ },
+ self = {
+ add: function() {
+ if ( list ) {
+ var start = list.length;
+ (function add ( args ) {
+ $.each( args, function( _, arg ) {
+ var type = $.type( arg );
+ if ( type === 'function' ) {
+ list.push( arg );
+ } else if ( arg && arg.length &&
+ type !== 'string' ) {
+
+ add( arg );
+ }
+ });
+ })( arguments );
+
+ if ( firing ) {
+ firingLength = list.length;
+ } else if ( memory ) {
+ firingStart = start;
+ fire( memory );
+ }
+ }
+ return this;
+ },
+
+ disable: function() {
+ list = stack = memory = undefined;
+ return this;
+ },
+
+ // Lock the list in its current state
+ lock: function() {
+ stack = undefined;
+ if ( !memory ) {
+ self.disable();
+ }
+ return this;
+ },
+
+ fireWith: function( context, args ) {
+ if ( list && (!fired || stack) ) {
+ args = args || [];
+ args = [ context, args.slice ? args.slice() : args ];
+ if ( firing ) {
+ stack.push( args );
+ } else {
+ fire( args );
+ }
+ }
+ return this;
+ },
+
+ fire: function() {
+ self.fireWith( this, arguments );
+ return this;
+ }
+ },
+
+ fired, firing, firingStart, firingLength, firingIndex, memory;
+
+ return self;
+ }
+
+ function Deferred( func ) {
+ var tuples = [
+ // action, add listener, listener list, final state
+ [ 'resolve', 'done', Callbacks( true ), 'resolved' ],
+ [ 'reject', 'fail', Callbacks( true ), 'rejected' ],
+ [ 'notify', 'progress', Callbacks() ]
+ ],
+ state = 'pending',
+ promise = {
+ state: function() {
+ return state;
+ },
+ always: function() {
+ deferred.done( arguments ).fail( arguments );
+ return this;
+ },
+ then: function( /* fnDone, fnFail, fnProgress */ ) {
+ var fns = arguments;
+ return Deferred(function( newDefer ) {
+ $.each( tuples, function( i, tuple ) {
+ var action = tuple[ 0 ],
+ fn = $.isFunction( fns[ i ] ) && fns[ i ];
+
+ // deferred[ done | fail | progress ] for
+ // forwarding actions to newDefer
+ deferred[ tuple[ 1 ] ](function() {
+ var returned;
+
+ returned = fn && fn.apply( this, arguments );
+
+ if ( returned &&
+ $.isFunction( returned.promise ) ) {
+
+ returned.promise()
+ .done( newDefer.resolve )
+ .fail( newDefer.reject )
+ .progress( newDefer.notify );
+ } else {
+ newDefer[ action + 'With' ](
+ this === promise ?
+ newDefer.promise() :
+ this,
+ fn ? [ returned ] : arguments );
+ }
+ });
+ });
+ fns = null;
+ }).promise();
+ },
+
+ // Get a promise for this deferred
+ // If obj is provided, the promise aspect is added to the object
+ promise: function( obj ) {
+
+ return obj != null ? $.extend( obj, promise ) : promise;
+ }
+ },
+ deferred = {};
+
+ // Keep pipe for back-compat
+ promise.pipe = promise.then;
+
+ // Add list-specific methods
+ $.each( tuples, function( i, tuple ) {
+ var list = tuple[ 2 ],
+ stateString = tuple[ 3 ];
+
+ // promise[ done | fail | progress ] = list.add
+ promise[ tuple[ 1 ] ] = list.add;
+
+ // Handle state
+ if ( stateString ) {
+ list.add(function() {
+ // state = [ resolved | rejected ]
+ state = stateString;
+
+ // [ reject_list | resolve_list ].disable; progress_list.lock
+ }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
+ }
+
+ // deferred[ resolve | reject | notify ]
+ deferred[ tuple[ 0 ] ] = function() {
+ deferred[ tuple[ 0 ] + 'With' ]( this === deferred ? promise :
+ this, arguments );
+ return this;
+ };
+ deferred[ tuple[ 0 ] + 'With' ] = list.fireWith;
+ });
+
+ // Make the deferred a promise
+ promise.promise( deferred );
+
+ // Call given func if any
+ if ( func ) {
+ func.call( deferred, deferred );
+ }
+
+ // All done!
+ return deferred;
+ }
+
+ api = {
+ /**
+ * 创建一个[Deferred](http://api.jquery.com/category/deferred-object/)对象。
+ * 详细的Deferred用法说明,请参照jQuery的API文档。
+ *
+ * Deferred对象在钩子回掉函数中经常要用到,用来处理需要等待的异步操作。
+ *
+ * @for Base
+ * @method Deferred
+ * @grammar Base.Deferred() => Deferred
+ * @example
+ * // 在文件开始发送前做些异步操作。
+ * // WebUploader会等待此异步操作完成后,开始发送文件。
+ * Uploader.register({
+ * 'before-send-file': 'doSomthingAsync'
+ * }, {
+ *
+ * doSomthingAsync: function() {
+ * var deferred = Base.Deferred();
+ *
+ * // 模拟一次异步操作。
+ * setTimeout(deferred.resolve, 2000);
+ *
+ * return deferred.promise();
+ * }
+ * });
+ */
+ Deferred: Deferred,
+
+ /**
+ * 判断传入的参数是否为一个promise对象。
+ * @method isPromise
+ * @grammar Base.isPromise( anything ) => Boolean
+ * @param {*} anything 检测对象。
+ * @return {Boolean}
+ * @for Base
+ * @example
+ * console.log( Base.isPromise() ); // => false
+ * console.log( Base.isPromise({ key: '123' }) ); // => false
+ * console.log( Base.isPromise( Base.Deferred().promise() ) ); // => true
+ *
+ * // Deferred也是一个Promise
+ * console.log( Base.isPromise( Base.Deferred() ) ); // => true
+ */
+ isPromise: function( anything ) {
+ return anything && typeof anything.then === 'function';
+ },
+
+ /**
+ * 返回一个promise,此promise在所有传入的promise都完成了后完成。
+ * 详细请查看[这里](http://api.jquery.com/jQuery.when/)。
+ *
+ * @method when
+ * @for Base
+ * @grammar Base.when( promise1[, promise2[, promise3...]] ) => Promise
+ */
+ when: function( subordinate /* , ..., subordinateN */ ) {
+ var i = 0,
+ slice = [].slice,
+ resolveValues = slice.call( arguments ),
+ length = resolveValues.length,
+
+ // the count of uncompleted subordinates
+ remaining = length !== 1 || (subordinate &&
+ $.isFunction( subordinate.promise )) ? length : 0,
+
+ // the master Deferred. If resolveValues consist of
+ // only a single Deferred, just use that.
+ deferred = remaining === 1 ? subordinate : Deferred(),
+
+ // Update function for both resolve and progress values
+ updateFunc = function( i, contexts, values ) {
+ return function( value ) {
+ contexts[ i ] = this;
+ values[ i ] = arguments.length > 1 ?
+ slice.call( arguments ) : value;
+
+ if ( values === progressValues ) {
+ deferred.notifyWith( contexts, values );
+ } else if ( !(--remaining) ) {
+ deferred.resolveWith( contexts, values );
+ }
+ };
+ },
+
+ progressValues, progressContexts, resolveContexts;
+
+ // add listeners to Deferred subordinates; treat others as resolved
+ if ( length > 1 ) {
+ progressValues = new Array( length );
+ progressContexts = new Array( length );
+ resolveContexts = new Array( length );
+ for ( ; i < length; i++ ) {
+ if ( resolveValues[ i ] &&
+ $.isFunction( resolveValues[ i ].promise ) ) {
+
+ resolveValues[ i ].promise()
+ .done( updateFunc( i, resolveContexts,
+ resolveValues ) )
+ .fail( deferred.reject )
+ .progress( updateFunc( i, progressContexts,
+ progressValues ) );
+ } else {
+ --remaining;
+ }
+ }
+ }
+
+ // if we're not waiting on anything, resolve the master
+ if ( !remaining ) {
+ deferred.resolveWith( resolveContexts, resolveValues );
+ }
+
+ return deferred.promise();
+ }
+ };
+
+ return api;
});
define('promise',[
'promise-builtin'
], function( $ ) {
return $;
});
- /**
- * @fileOverview 基础类方法。
- */
-
- /**
- * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
- *
- * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
- * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
- *
- * * module `base`:WebUploader.Base
- * * module `file`: WebUploader.File
- * * module `lib/dnd`: WebUploader.Lib.Dnd
- * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
- *
- *
- * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
- * @module WebUploader
- * @title WebUploader API文档
- */
- define('base',[
- 'dollar',
- 'promise'
- ], function( $, promise ) {
-
- var noop = function() {},
- call = Function.call;
-
- // http://jsperf.com/uncurrythis
- // 反科里化
- function uncurryThis( fn ) {
- return function() {
- return call.apply( fn, arguments );
- };
- }
-
- function bindFn( fn, context ) {
- return function() {
- return fn.apply( context, arguments );
- };
- }
-
- function createObject( proto ) {
- var f;
-
- if ( Object.create ) {
- return Object.create( proto );
- } else {
- f = function() {};
- f.prototype = proto;
- return new f();
- }
- }
-
-
- /**
- * 基础类,提供一些简单常用的方法。
- * @class Base
- */
- return {
-
- /**
- * @property {String} version 当前版本号。
- */
- version: '0.1.8-alpha',
-
- /**
- * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
- */
- $: $,
-
- Deferred: promise.Deferred,
-
- isPromise: promise.isPromise,
-
- when: promise.when,
-
- /**
- * @description 简单的浏览器检查结果。
- *
- * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
- * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
- * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
- * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
- * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
- * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
- *
- * @property {Object} [browser]
- */
- browser: (function( ua ) {
- var ret = {},
- webkit = ua.match( /WebKit\/([\d.]+)/ ),
- chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
- ua.match( /CriOS\/([\d.]+)/ ),
-
- ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
- ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
- firefox = ua.match( /Firefox\/([\d.]+)/ ),
- safari = ua.match( /Safari\/([\d.]+)/ ),
- opera = ua.match( /OPR\/([\d.]+)/ );
-
- webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
- chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
- ie && (ret.ie = parseFloat( ie[ 1 ] ));
- firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
- safari && (ret.safari = parseFloat( safari[ 1 ] ));
- opera && (ret.opera = parseFloat( opera[ 1 ] ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * @description 操作系统检查结果。
- *
- * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
- * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
- * @property {Object} [os]
- */
- os: (function( ua ) {
- var ret = {},
-
- // osx = !!ua.match( /\(Macintosh\; Intel / ),
- android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
- ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
-
- // osx && (ret.osx = true);
- android && (ret.android = parseFloat( android[ 1 ] ));
- ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * 实现类与类之间的继承。
- * @method inherits
- * @grammar Base.inherits( super ) => child
- * @grammar Base.inherits( super, protos ) => child
- * @grammar Base.inherits( super, protos, statics ) => child
- * @param {Class} super 父类
- * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
- * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
- * @param {Object} [statics] 静态属性或方法。
- * @return {Class} 返回子类。
- * @example
- * function Person() {
- * console.log( 'Super' );
- * }
- * Person.prototype.hello = function() {
- * console.log( 'hello' );
- * };
- *
- * var Manager = Base.inherits( Person, {
- * world: function() {
- * console.log( 'World' );
- * }
- * });
- *
- * // 因为没有指定构造器,父类的构造器将会执行。
- * var instance = new Manager(); // => Super
- *
- * // 继承子父类的方法
- * instance.hello(); // => hello
- * instance.world(); // => World
- *
- * // 子类的__super__属性指向父类
- * console.log( Manager.__super__ === Person ); // => true
- */
- inherits: function( Super, protos, staticProtos ) {
- var child;
-
- if ( typeof protos === 'function' ) {
- child = protos;
- protos = null;
- } else if ( protos && protos.hasOwnProperty('constructor') ) {
- child = protos.constructor;
- } else {
- child = function() {
- return Super.apply( this, arguments );
- };
- }
-
- // 复制静态方法
- $.extend( true, child, Super, staticProtos || {} );
-
- /* jshint camelcase: false */
-
- // 让子类的__super__属性指向父类。
- child.__super__ = Super.prototype;
-
- // 构建原型,添加原型方法或属性。
- // 暂时用Object.create实现。
- child.prototype = createObject( Super.prototype );
- protos && $.extend( true, child.prototype, protos );
-
- return child;
- },
-
- /**
- * 一个不做任何事情的方法。可以用来赋值给默认的callback.
- * @method noop
- */
- noop: noop,
-
- /**
- * 返回一个新的方法,此方法将已指定的`context`来执行。
- * @grammar Base.bindFn( fn, context ) => Function
- * @method bindFn
- * @example
- * var doSomething = function() {
- * console.log( this.name );
- * },
- * obj = {
- * name: 'Object Name'
- * },
- * aliasFn = Base.bind( doSomething, obj );
- *
- * aliasFn(); // => Object Name
- *
- */
- bindFn: bindFn,
-
- /**
- * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
- * @grammar Base.log( args... ) => undefined
- * @method log
- */
- log: (function() {
- if ( window.console ) {
- return bindFn( console.log, console );
- }
- return noop;
- })(),
-
- nextTick: (function() {
-
- return function( cb ) {
- setTimeout( cb, 1 );
- };
-
- // @bug 当浏览器不在当前窗口时就停了。
- // var next = window.requestAnimationFrame ||
- // window.webkitRequestAnimationFrame ||
- // window.mozRequestAnimationFrame ||
- // function( cb ) {
- // window.setTimeout( cb, 1000 / 60 );
- // };
-
- // // fix: Uncaught TypeError: Illegal invocation
- // return bindFn( next, window );
- })(),
-
- /**
- * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
- * 将用来将非数组对象转化成数组对象。
- * @grammar Base.slice( target, start[, end] ) => Array
- * @method slice
- * @example
- * function doSomthing() {
- * var args = Base.slice( arguments, 1 );
- * console.log( args );
- * }
- *
- * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
- */
- slice: uncurryThis( [].slice ),
-
- /**
- * 生成唯一的ID
- * @method guid
- * @grammar Base.guid() => String
- * @grammar Base.guid( prefx ) => String
- */
- guid: (function() {
- var counter = 0;
-
- return function( prefix ) {
- var guid = (+new Date()).toString( 32 ),
- i = 0;
-
- for ( ; i < 5; i++ ) {
- guid += Math.floor( Math.random() * 65535 ).toString( 32 );
- }
-
- return (prefix || 'wu_') + guid + (counter++).toString( 32 );
- };
- })(),
-
- /**
- * 格式化文件大小, 输出成带单位的字符串
- * @method formatSize
- * @grammar Base.formatSize( size ) => String
- * @grammar Base.formatSize( size, pointLength ) => String
- * @grammar Base.formatSize( size, pointLength, units ) => String
- * @param {Number} size 文件大小
- * @param {Number} [pointLength=2] 精确到的小数点数。
- * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
- * @example
- * console.log( Base.formatSize( 100 ) ); // => 100B
- * console.log( Base.formatSize( 1024 ) ); // => 1.00K
- * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
- * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
- * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
- * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
- */
- formatSize: function( size, pointLength, units ) {
- var unit;
-
- units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
-
- while ( (unit = units.shift()) && size > 1024 ) {
- size = size / 1024;
- }
-
- return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
- unit;
- }
- };
+ /**
+ * @fileOverview 基础类方法。
+ */
+
+ /**
+ * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
+ *
+ * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
+ * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
+ *
+ * * module `base`:WebUploader.Base
+ * * module `file`: WebUploader.File
+ * * module `lib/dnd`: WebUploader.Lib.Dnd
+ * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
+ *
+ *
+ * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
+ * @module WebUploader
+ * @title WebUploader API文档
+ */
+ define('base',[
+ 'dollar',
+ 'promise'
+ ], function( $, promise ) {
+
+ var noop = function() {},
+ call = Function.call;
+
+ // http://jsperf.com/uncurrythis
+ // 反科里化
+ function uncurryThis( fn ) {
+ return function() {
+ return call.apply( fn, arguments );
+ };
+ }
+
+ function bindFn( fn, context ) {
+ return function() {
+ return fn.apply( context, arguments );
+ };
+ }
+
+ function createObject( proto ) {
+ var f;
+
+ if ( Object.create ) {
+ return Object.create( proto );
+ } else {
+ f = function() {};
+ f.prototype = proto;
+ return new f();
+ }
+ }
+
+
+ /**
+ * 基础类,提供一些简单常用的方法。
+ * @class Base
+ */
+ return {
+
+ /**
+ * @property {String} version 当前版本号。
+ */
+ version: '0.1.8-alpha',
+
+ /**
+ * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
+ */
+ $: $,
+
+ Deferred: promise.Deferred,
+
+ isPromise: promise.isPromise,
+
+ when: promise.when,
+
+ /**
+ * @description 简单的浏览器检查结果。
+ *
+ * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
+ * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
+ * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
+ * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
+ * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
+ * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
+ *
+ * @property {Object} [browser]
+ */
+ browser: (function( ua ) {
+ var ret = {},
+ webkit = ua.match( /WebKit\/([\d.]+)/ ),
+ chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
+ ua.match( /CriOS\/([\d.]+)/ ),
+
+ ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
+ ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
+ firefox = ua.match( /Firefox\/([\d.]+)/ ),
+ safari = ua.match( /Safari\/([\d.]+)/ ),
+ opera = ua.match( /OPR\/([\d.]+)/ );
+
+ webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
+ chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
+ ie && (ret.ie = parseFloat( ie[ 1 ] ));
+ firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
+ safari && (ret.safari = parseFloat( safari[ 1 ] ));
+ opera && (ret.opera = parseFloat( opera[ 1 ] ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * @description 操作系统检查结果。
+ *
+ * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
+ * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
+ * @property {Object} [os]
+ */
+ os: (function( ua ) {
+ var ret = {},
+
+ // osx = !!ua.match( /\(Macintosh\; Intel / ),
+ android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
+ ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
+
+ // osx && (ret.osx = true);
+ android && (ret.android = parseFloat( android[ 1 ] ));
+ ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * 实现类与类之间的继承。
+ * @method inherits
+ * @grammar Base.inherits( super ) => child
+ * @grammar Base.inherits( super, protos ) => child
+ * @grammar Base.inherits( super, protos, statics ) => child
+ * @param {Class} super 父类
+ * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
+ * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
+ * @param {Object} [statics] 静态属性或方法。
+ * @return {Class} 返回子类。
+ * @example
+ * function Person() {
+ * console.log( 'Super' );
+ * }
+ * Person.prototype.hello = function() {
+ * console.log( 'hello' );
+ * };
+ *
+ * var Manager = Base.inherits( Person, {
+ * world: function() {
+ * console.log( 'World' );
+ * }
+ * });
+ *
+ * // 因为没有指定构造器,父类的构造器将会执行。
+ * var instance = new Manager(); // => Super
+ *
+ * // 继承子父类的方法
+ * instance.hello(); // => hello
+ * instance.world(); // => World
+ *
+ * // 子类的__super__属性指向父类
+ * console.log( Manager.__super__ === Person ); // => true
+ */
+ inherits: function( Super, protos, staticProtos ) {
+ var child;
+
+ if ( typeof protos === 'function' ) {
+ child = protos;
+ protos = null;
+ } else if ( protos && protos.hasOwnProperty('constructor') ) {
+ child = protos.constructor;
+ } else {
+ child = function() {
+ return Super.apply( this, arguments );
+ };
+ }
+
+ // 复制静态方法
+ $.extend( true, child, Super, staticProtos || {} );
+
+ /* jshint camelcase: false */
+
+ // 让子类的__super__属性指向父类。
+ child.__super__ = Super.prototype;
+
+ // 构建原型,添加原型方法或属性。
+ // 暂时用Object.create实现。
+ child.prototype = createObject( Super.prototype );
+ protos && $.extend( true, child.prototype, protos );
+
+ return child;
+ },
+
+ /**
+ * 一个不做任何事情的方法。可以用来赋值给默认的callback.
+ * @method noop
+ */
+ noop: noop,
+
+ /**
+ * 返回一个新的方法,此方法将已指定的`context`来执行。
+ * @grammar Base.bindFn( fn, context ) => Function
+ * @method bindFn
+ * @example
+ * var doSomething = function() {
+ * console.log( this.name );
+ * },
+ * obj = {
+ * name: 'Object Name'
+ * },
+ * aliasFn = Base.bind( doSomething, obj );
+ *
+ * aliasFn(); // => Object Name
+ *
+ */
+ bindFn: bindFn,
+
+ /**
+ * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
+ * @grammar Base.log( args... ) => undefined
+ * @method log
+ */
+ log: (function() {
+ if ( window.console ) {
+ return bindFn( console.log, console );
+ }
+ return noop;
+ })(),
+
+ nextTick: (function() {
+
+ return function( cb ) {
+ setTimeout( cb, 1 );
+ };
+
+ // @bug 当浏览器不在当前窗口时就停了。
+ // var next = window.requestAnimationFrame ||
+ // window.webkitRequestAnimationFrame ||
+ // window.mozRequestAnimationFrame ||
+ // function( cb ) {
+ // window.setTimeout( cb, 1000 / 60 );
+ // };
+
+ // // fix: Uncaught TypeError: Illegal invocation
+ // return bindFn( next, window );
+ })(),
+
+ /**
+ * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
+ * 将用来将非数组对象转化成数组对象。
+ * @grammar Base.slice( target, start[, end] ) => Array
+ * @method slice
+ * @example
+ * function doSomthing() {
+ * var args = Base.slice( arguments, 1 );
+ * console.log( args );
+ * }
+ *
+ * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
+ */
+ slice: uncurryThis( [].slice ),
+
+ /**
+ * 生成唯一的ID
+ * @method guid
+ * @grammar Base.guid() => String
+ * @grammar Base.guid( prefx ) => String
+ */
+ guid: (function() {
+ var counter = 0;
+
+ return function( prefix ) {
+ var guid = (+new Date()).toString( 32 ),
+ i = 0;
+
+ for ( ; i < 5; i++ ) {
+ guid += Math.floor( Math.random() * 65535 ).toString( 32 );
+ }
+
+ return (prefix || 'wu_') + guid + (counter++).toString( 32 );
+ };
+ })(),
+
+ /**
+ * 格式化文件大小, 输出成带单位的字符串
+ * @method formatSize
+ * @grammar Base.formatSize( size ) => String
+ * @grammar Base.formatSize( size, pointLength ) => String
+ * @grammar Base.formatSize( size, pointLength, units ) => String
+ * @param {Number} size 文件大小
+ * @param {Number} [pointLength=2] 精确到的小数点数。
+ * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
+ * @example
+ * console.log( Base.formatSize( 100 ) ); // => 100B
+ * console.log( Base.formatSize( 1024 ) ); // => 1.00K
+ * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
+ * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
+ * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
+ * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
+ */
+ formatSize: function( size, pointLength, units ) {
+ var unit;
+
+ units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
+
+ while ( (unit = units.shift()) && size > 1024 ) {
+ size = size / 1024;
+ }
+
+ return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
+ unit;
+ }
+ };
});
- /**
- * 事件处理类,可以独立使用,也可以扩展给对象使用。
- * @fileOverview Mediator
- */
- define('mediator',[
- 'base'
- ], function( Base ) {
- var $ = Base.$,
- slice = [].slice,
- separator = /\s+/,
- protos;
-
- // 根据条件过滤出事件handlers.
- function findHandlers( arr, name, callback, context ) {
- return $.grep( arr, function( handler ) {
- return handler &&
- (!name || handler.e === name) &&
- (!callback || handler.cb === callback ||
- handler.cb._cb === callback) &&
- (!context || handler.ctx === context);
- });
- }
-
- function eachEvent( events, callback, iterator ) {
- // 不支持对象,只支持多个event用空格隔开
- $.each( (events || '').split( separator ), function( _, key ) {
- iterator( key, callback );
- });
- }
-
- function triggerHanders( events, args ) {
- var stoped = false,
- i = -1,
- len = events.length,
- handler;
-
- while ( ++i < len ) {
- handler = events[ i ];
-
- if ( handler.cb.apply( handler.ctx2, args ) === false ) {
- stoped = true;
- break;
- }
- }
-
- return !stoped;
- }
-
- protos = {
-
- /**
- * 绑定事件。
- *
- * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
- * ```javascript
- * var obj = {};
- *
- * // 使得obj有事件行为
- * Mediator.installTo( obj );
- *
- * obj.on( 'testa', function( arg1, arg2 ) {
- * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
- * });
- *
- * obj.trigger( 'testa', 'arg1', 'arg2' );
- * ```
- *
- * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
- * 切会影响到`trigger`方法的返回值,为`false`。
- *
- * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
- * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
- * ```javascript
- * obj.on( 'all', function( type, arg1, arg2 ) {
- * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
- * });
- * ```
- *
- * @method on
- * @grammar on( name, callback[, context] ) => self
- * @param {String} name 事件名,支持多个事件用空格隔开
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- * @class Mediator
- */
- on: function( name, callback, context ) {
- var me = this,
- set;
-
- if ( !callback ) {
- return this;
- }
-
- set = this._events || (this._events = []);
-
- eachEvent( name, callback, function( name, callback ) {
- var handler = { e: name };
-
- handler.cb = callback;
- handler.ctx = context;
- handler.ctx2 = context || me;
- handler.id = set.length;
-
- set.push( handler );
- });
-
- return this;
- },
-
- /**
- * 绑定事件,且当handler执行完后,自动解除绑定。
- * @method once
- * @grammar once( name, callback[, context] ) => self
- * @param {String} name 事件名
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- once: function( name, callback, context ) {
- var me = this;
-
- if ( !callback ) {
- return me;
- }
-
- eachEvent( name, callback, function( name, callback ) {
- var once = function() {
- me.off( name, once );
- return callback.apply( context || me, arguments );
- };
-
- once._cb = callback;
- me.on( name, once, context );
- });
-
- return me;
- },
-
- /**
- * 解除事件绑定
- * @method off
- * @grammar off( [name[, callback[, context] ] ] ) => self
- * @param {String} [name] 事件名
- * @param {Function} [callback] 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- off: function( name, cb, ctx ) {
- var events = this._events;
-
- if ( !events ) {
- return this;
- }
-
- if ( !name && !cb && !ctx ) {
- this._events = [];
- return this;
- }
-
- eachEvent( name, cb, function( name, cb ) {
- $.each( findHandlers( events, name, cb, ctx ), function() {
- delete events[ this.id ];
- });
- });
-
- return this;
- },
-
- /**
- * 触发事件
- * @method trigger
- * @grammar trigger( name[, args...] ) => self
- * @param {String} type 事件名
- * @param {*} [...] 任意参数
- * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
- */
- trigger: function( type ) {
- var args, events, allEvents;
-
- if ( !this._events || !type ) {
- return this;
- }
-
- args = slice.call( arguments, 1 );
- events = findHandlers( this._events, type );
- allEvents = findHandlers( this._events, 'all' );
-
- return triggerHanders( events, args ) &&
- triggerHanders( allEvents, arguments );
- }
- };
-
- /**
- * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
- * 主要目的是负责模块与模块之间的合作,降低耦合度。
- *
- * @class Mediator
- */
- return $.extend({
-
- /**
- * 可以通过这个接口,使任何对象具备事件功能。
- * @method installTo
- * @param {Object} obj 需要具备事件行为的对象。
- * @return {Object} 返回obj.
- */
- installTo: function( obj ) {
- return $.extend( obj, protos );
- }
-
- }, protos );
+ /**
+ * 事件处理类,可以独立使用,也可以扩展给对象使用。
+ * @fileOverview Mediator
+ */
+ define('mediator',[
+ 'base'
+ ], function( Base ) {
+ var $ = Base.$,
+ slice = [].slice,
+ separator = /\s+/,
+ protos;
+
+ // 根据条件过滤出事件handlers.
+ function findHandlers( arr, name, callback, context ) {
+ return $.grep( arr, function( handler ) {
+ return handler &&
+ (!name || handler.e === name) &&
+ (!callback || handler.cb === callback ||
+ handler.cb._cb === callback) &&
+ (!context || handler.ctx === context);
+ });
+ }
+
+ function eachEvent( events, callback, iterator ) {
+ // 不支持对象,只支持多个event用空格隔开
+ $.each( (events || '').split( separator ), function( _, key ) {
+ iterator( key, callback );
+ });
+ }
+
+ function triggerHanders( events, args ) {
+ var stoped = false,
+ i = -1,
+ len = events.length,
+ handler;
+
+ while ( ++i < len ) {
+ handler = events[ i ];
+
+ if ( handler.cb.apply( handler.ctx2, args ) === false ) {
+ stoped = true;
+ break;
+ }
+ }
+
+ return !stoped;
+ }
+
+ protos = {
+
+ /**
+ * 绑定事件。
+ *
+ * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
+ * ```javascript
+ * var obj = {};
+ *
+ * // 使得obj有事件行为
+ * Mediator.installTo( obj );
+ *
+ * obj.on( 'testa', function( arg1, arg2 ) {
+ * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
+ * });
+ *
+ * obj.trigger( 'testa', 'arg1', 'arg2' );
+ * ```
+ *
+ * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
+ * 切会影响到`trigger`方法的返回值,为`false`。
+ *
+ * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
+ * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
+ * ```javascript
+ * obj.on( 'all', function( type, arg1, arg2 ) {
+ * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
+ * });
+ * ```
+ *
+ * @method on
+ * @grammar on( name, callback[, context] ) => self
+ * @param {String} name 事件名,支持多个事件用空格隔开
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ * @class Mediator
+ */
+ on: function( name, callback, context ) {
+ var me = this,
+ set;
+
+ if ( !callback ) {
+ return this;
+ }
+
+ set = this._events || (this._events = []);
+
+ eachEvent( name, callback, function( name, callback ) {
+ var handler = { e: name };
+
+ handler.cb = callback;
+ handler.ctx = context;
+ handler.ctx2 = context || me;
+ handler.id = set.length;
+
+ set.push( handler );
+ });
+
+ return this;
+ },
+
+ /**
+ * 绑定事件,且当handler执行完后,自动解除绑定。
+ * @method once
+ * @grammar once( name, callback[, context] ) => self
+ * @param {String} name 事件名
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ once: function( name, callback, context ) {
+ var me = this;
+
+ if ( !callback ) {
+ return me;
+ }
+
+ eachEvent( name, callback, function( name, callback ) {
+ var once = function() {
+ me.off( name, once );
+ return callback.apply( context || me, arguments );
+ };
+
+ once._cb = callback;
+ me.on( name, once, context );
+ });
+
+ return me;
+ },
+
+ /**
+ * 解除事件绑定
+ * @method off
+ * @grammar off( [name[, callback[, context] ] ] ) => self
+ * @param {String} [name] 事件名
+ * @param {Function} [callback] 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ off: function( name, cb, ctx ) {
+ var events = this._events;
+
+ if ( !events ) {
+ return this;
+ }
+
+ if ( !name && !cb && !ctx ) {
+ this._events = [];
+ return this;
+ }
+
+ eachEvent( name, cb, function( name, cb ) {
+ $.each( findHandlers( events, name, cb, ctx ), function() {
+ delete events[ this.id ];
+ });
+ });
+
+ return this;
+ },
+
+ /**
+ * 触发事件
+ * @method trigger
+ * @grammar trigger( name[, args...] ) => self
+ * @param {String} type 事件名
+ * @param {*} [...] 任意参数
+ * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
+ */
+ trigger: function( type ) {
+ var args, events, allEvents;
+
+ if ( !this._events || !type ) {
+ return this;
+ }
+
+ args = slice.call( arguments, 1 );
+ events = findHandlers( this._events, type );
+ allEvents = findHandlers( this._events, 'all' );
+
+ return triggerHanders( events, args ) &&
+ triggerHanders( allEvents, arguments );
+ }
+ };
+
+ /**
+ * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
+ * 主要目的是负责模块与模块之间的合作,降低耦合度。
+ *
+ * @class Mediator
+ */
+ return $.extend({
+
+ /**
+ * 可以通过这个接口,使任何对象具备事件功能。
+ * @method installTo
+ * @param {Object} obj 需要具备事件行为的对象。
+ * @return {Object} 返回obj.
+ */
+ installTo: function( obj ) {
+ return $.extend( obj, protos );
+ }
+
+ }, protos );
});
- /**
- * @fileOverview Uploader上传类
- */
- define('uploader',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$;
-
- /**
- * 上传入口类。
- * @class Uploader
- * @constructor
- * @grammar new Uploader( opts ) => Uploader
- * @example
- * var uploader = WebUploader.Uploader({
- * swf: 'path_of_swf/Uploader.swf',
- *
- * // 开起分片上传。
- * chunked: true
- * });
- */
- function Uploader( opts ) {
- this.options = $.extend( true, {}, Uploader.options, opts );
- this._init( this.options );
- }
-
- // default Options
- // widgets中有相应扩展
- Uploader.options = {};
- Mediator.installTo( Uploader.prototype );
-
- // 批量添加纯命令式方法。
- $.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( fn, command ) {
- Uploader.prototype[ fn ] = function() {
- return this.request( command, arguments );
- };
- });
-
- $.extend( Uploader.prototype, {
- state: 'pending',
-
- _init: function( opts ) {
- var me = this;
-
- me.request( 'init', opts, function() {
- me.state = 'ready';
- me.trigger('ready');
- });
- },
-
- /**
- * 获取或者设置Uploader配置项。
- * @method option
- * @grammar option( key ) => *
- * @grammar option( key, val ) => self
- * @example
- *
- * // 初始状态图片上传前不会压缩
- * var uploader = new WebUploader.Uploader({
- * compress: null;
- * });
- *
- * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
- * uploader.option( 'compress', {
- * width: 1600,
- * height: 1600
- * });
- */
- option: function( key, val ) {
- var opts = this.options;
-
- // setter
- if ( arguments.length > 1 ) {
-
- if ( $.isPlainObject( val ) &&
- $.isPlainObject( opts[ key ] ) ) {
- $.extend( opts[ key ], val );
- } else {
- opts[ key ] = val;
- }
-
- } else { // getter
- return key ? opts[ key ] : opts;
- }
- },
-
- /**
- * 获取文件统计信息。返回一个包含一下信息的对象。
- * * `successNum` 上传成功的文件数
- * * `progressNum` 上传中的文件数
- * * `cancelNum` 被删除的文件数
- * * `invalidNum` 无效的文件数
- * * `uploadFailNum` 上传失败的文件数
- * * `queueNum` 还在队列中的文件数
- * * `interruptNum` 被暂停的文件数
- * @method getStats
- * @grammar getStats() => Object
- */
- getStats: function() {
- // return this._mgr.getStats.apply( this._mgr, arguments );
- var stats = this.request('get-stats');
-
- return stats ? {
- successNum: stats.numOfSuccess,
- progressNum: stats.numOfProgress,
-
- // who care?
- // queueFailNum: 0,
- cancelNum: stats.numOfCancel,
- invalidNum: stats.numOfInvalid,
- uploadFailNum: stats.numOfUploadFailed,
- queueNum: stats.numOfQueue,
- interruptNum: stats.numOfInterrupt
- } : {};
- },
-
- // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
- trigger: function( type/*, args...*/ ) {
- var args = [].slice.call( arguments, 1 ),
- opts = this.options,
- name = 'on' + type.substring( 0, 1 ).toUpperCase() +
- type.substring( 1 );
-
- if (
- // 调用通过on方法注册的handler.
- Mediator.trigger.apply( this, arguments ) === false ||
-
- // 调用opts.onEvent
- $.isFunction( opts[ name ] ) &&
- opts[ name ].apply( this, args ) === false ||
-
- // 调用this.onEvent
- $.isFunction( this[ name ] ) &&
- this[ name ].apply( this, args ) === false ||
-
- // 广播所有uploader的事件。
- Mediator.trigger.apply( Mediator,
- [ this, type ].concat( args ) ) === false ) {
-
- return false;
- }
-
- return true;
- },
-
- /**
- * 销毁 webuploader 实例
- * @method destroy
- * @grammar destroy() => undefined
- */
- destroy: function() {
- this.request( 'destroy', arguments );
- this.off();
- },
-
- // widgets/widget.js将补充此方法的详细文档。
- request: Base.noop
- });
-
- /**
- * 创建Uploader实例,等同于new Uploader( opts );
- * @method create
- * @class Base
- * @static
- * @grammar Base.create( opts ) => Uploader
- */
- Base.create = Uploader.create = function( opts ) {
- return new Uploader( opts );
- };
+ /**
+ * @fileOverview Uploader上传类
+ */
+ define('uploader',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$;
+
+ /**
+ * 上传入口类。
+ * @class Uploader
+ * @constructor
+ * @grammar new Uploader( opts ) => Uploader
+ * @example
+ * var uploader = WebUploader.Uploader({
+ * swf: 'path_of_swf/Uploader.swf',
+ *
+ * // 开起分片上传。
+ * chunked: true
+ * });
+ */
+ function Uploader( opts ) {
+ this.options = $.extend( true, {}, Uploader.options, opts );
+ this._init( this.options );
+ }
+
+ // default Options
+ // widgets中有相应扩展
+ Uploader.options = {};
+ Mediator.installTo( Uploader.prototype );
+
+ // 批量添加纯命令式方法。
+ $.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( fn, command ) {
+ Uploader.prototype[ fn ] = function() {
+ return this.request( command, arguments );
+ };
+ });
+
+ $.extend( Uploader.prototype, {
+ state: 'pending',
+
+ _init: function( opts ) {
+ var me = this;
+
+ me.request( 'init', opts, function() {
+ me.state = 'ready';
+ me.trigger('ready');
+ });
+ },
+
+ /**
+ * 获取或者设置Uploader配置项。
+ * @method option
+ * @grammar option( key ) => *
+ * @grammar option( key, val ) => self
+ * @example
+ *
+ * // 初始状态图片上传前不会压缩
+ * var uploader = new WebUploader.Uploader({
+ * compress: null;
+ * });
+ *
+ * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
+ * uploader.option( 'compress', {
+ * width: 1600,
+ * height: 1600
+ * });
+ */
+ option: function( key, val ) {
+ var opts = this.options;
+
+ // setter
+ if ( arguments.length > 1 ) {
+
+ if ( $.isPlainObject( val ) &&
+ $.isPlainObject( opts[ key ] ) ) {
+ $.extend( opts[ key ], val );
+ } else {
+ opts[ key ] = val;
+ }
+
+ } else { // getter
+ return key ? opts[ key ] : opts;
+ }
+ },
+
+ /**
+ * 获取文件统计信息。返回一个包含一下信息的对象。
+ * * `successNum` 上传成功的文件数
+ * * `progressNum` 上传中的文件数
+ * * `cancelNum` 被删除的文件数
+ * * `invalidNum` 无效的文件数
+ * * `uploadFailNum` 上传失败的文件数
+ * * `queueNum` 还在队列中的文件数
+ * * `interruptNum` 被暂停的文件数
+ * @method getStats
+ * @grammar getStats() => Object
+ */
+ getStats: function() {
+ // return this._mgr.getStats.apply( this._mgr, arguments );
+ var stats = this.request('get-stats');
+
+ return stats ? {
+ successNum: stats.numOfSuccess,
+ progressNum: stats.numOfProgress,
+
+ // who care?
+ // queueFailNum: 0,
+ cancelNum: stats.numOfCancel,
+ invalidNum: stats.numOfInvalid,
+ uploadFailNum: stats.numOfUploadFailed,
+ queueNum: stats.numOfQueue,
+ interruptNum: stats.numOfInterrupt
+ } : {};
+ },
+
+ // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
+ trigger: function( type/*, args...*/ ) {
+ var args = [].slice.call( arguments, 1 ),
+ opts = this.options,
+ name = 'on' + type.substring( 0, 1 ).toUpperCase() +
+ type.substring( 1 );
+
+ if (
+ // 调用通过on方法注册的handler.
+ Mediator.trigger.apply( this, arguments ) === false ||
+
+ // 调用opts.onEvent
+ $.isFunction( opts[ name ] ) &&
+ opts[ name ].apply( this, args ) === false ||
+
+ // 调用this.onEvent
+ $.isFunction( this[ name ] ) &&
+ this[ name ].apply( this, args ) === false ||
+
+ // 广播所有uploader的事件。
+ Mediator.trigger.apply( Mediator,
+ [ this, type ].concat( args ) ) === false ) {
+
+ return false;
+ }
+
+ return true;
+ },
+
+ /**
+ * 销毁 webuploader 实例
+ * @method destroy
+ * @grammar destroy() => undefined
+ */
+ destroy: function() {
+ this.request( 'destroy', arguments );
+ this.off();
+ },
+
+ // widgets/widget.js将补充此方法的详细文档。
+ request: Base.noop
+ });
+
+ /**
+ * 创建Uploader实例,等同于new Uploader( opts );
+ * @method create
+ * @class Base
+ * @static
+ * @grammar Base.create( opts ) => Uploader
+ */
+ Base.create = Uploader.create = function( opts ) {
+ return new Uploader( opts );
+ };
+
+ // 暴露Uploader,可以通过它来扩展业务逻辑。
+ Base.Uploader = Uploader;
+
+ return Uploader;
+ });
- // 暴露Uploader,可以通过它来扩展业务逻辑。
- Base.Uploader = Uploader;
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/runtime',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ factories = {},
+
+ // 获取对象的第一个key
+ getFirstKey = function( obj ) {
+ for ( var key in obj ) {
+ if ( obj.hasOwnProperty( key ) ) {
+ return key;
+ }
+ }
+ return null;
+ };
+
+ // 接口类。
+ function Runtime( options ) {
+ this.options = $.extend({
+ container: document.body
+ }, options );
+ this.uid = Base.guid('rt_');
+ }
+
+ $.extend( Runtime.prototype, {
+
+ getContainer: function() {
+ var opts = this.options,
+ parent, container;
+
+ if ( this._container ) {
+ return this._container;
+ }
+
+ parent = $( opts.container || document.body );
+ container = $( document.createElement('div') );
+
+ container.attr( 'id', 'rt_' + this.uid );
+ container.css({
+ position: 'absolute',
+ top: '0px',
+ left: '0px',
+ width: '1px',
+ height: '1px',
+ overflow: 'hidden'
+ });
+
+ parent.append( container );
+ parent.addClass('webuploader-container');
+ this._container = container;
+ this._parent = parent;
+ return container;
+ },
+
+ init: Base.noop,
+ exec: Base.noop,
+
+ destroy: function() {
+ this._container && this._container.remove();
+ this._parent && this._parent.removeClass('webuploader-container');
+ this.off();
+ }
+ });
+
+ Runtime.orders = 'html5,flash';
+
+
+ /**
+ * 添加Runtime实现。
+ * @param {String} type 类型
+ * @param {Runtime} factory 具体Runtime实现。
+ */
+ Runtime.addRuntime = function( type, factory ) {
+ factories[ type ] = factory;
+ };
+
+ Runtime.hasRuntime = function( type ) {
+ return !!(type ? factories[ type ] : getFirstKey( factories ));
+ };
+
+ Runtime.create = function( opts, orders ) {
+ var type, runtime;
+
+ orders = orders || Runtime.orders;
+ $.each( orders.split( /\s*,\s*/g ), function() {
+ if ( factories[ this ] ) {
+ type = this;
+ return false;
+ }
+ });
+
+ type = type || getFirstKey( factories );
+
+ if ( !type ) {
+ throw new Error('Runtime Error');
+ }
+
+ runtime = new factories[ type ]( opts );
+ return runtime;
+ };
+
+ Mediator.installTo( Runtime.prototype );
+ return Runtime;
+ });
- return Uploader;
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/client',[
+ 'base',
+ 'mediator',
+ 'runtime/runtime'
+ ], function( Base, Mediator, Runtime ) {
+
+ var cache;
+
+ cache = (function() {
+ var obj = {};
+
+ return {
+ add: function( runtime ) {
+ obj[ runtime.uid ] = runtime;
+ },
+
+ get: function( ruid, standalone ) {
+ var i;
+
+ if ( ruid ) {
+ return obj[ ruid ];
+ }
+
+ for ( i in obj ) {
+ // 有些类型不能重用,比如filepicker.
+ if ( standalone && obj[ i ].__standalone ) {
+ continue;
+ }
+
+ return obj[ i ];
+ }
+
+ return null;
+ },
+
+ remove: function( runtime ) {
+ delete obj[ runtime.uid ];
+ }
+ };
+ })();
+
+ function RuntimeClient( component, standalone ) {
+ var deferred = Base.Deferred(),
+ runtime;
+
+ this.uid = Base.guid('client_');
+
+ // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
+ this.runtimeReady = function( cb ) {
+ return deferred.done( cb );
+ };
+
+ this.connectRuntime = function( opts, cb ) {
+
+ // already connected.
+ if ( runtime ) {
+ throw new Error('already connected!');
+ }
+
+ deferred.done( cb );
+
+ if ( typeof opts === 'string' && cache.get( opts ) ) {
+ runtime = cache.get( opts );
+ }
+
+ // 像filePicker只能独立存在,不能公用。
+ runtime = runtime || cache.get( null, standalone );
+
+ // 需要创建
+ if ( !runtime ) {
+ runtime = Runtime.create( opts, opts.runtimeOrder );
+ runtime.__promise = deferred.promise();
+ runtime.once( 'ready', deferred.resolve );
+ runtime.init();
+ cache.add( runtime );
+ runtime.__client = 1;
+ } else {
+ // 来自cache
+ Base.$.extend( runtime.options, opts );
+ runtime.__promise.then( deferred.resolve );
+ runtime.__client++;
+ }
+
+ standalone && (runtime.__standalone = standalone);
+ return runtime;
+ };
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.disconnectRuntime = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ runtime.__client--;
+
+ if ( runtime.__client <= 0 ) {
+ cache.remove( runtime );
+ delete runtime.__promise;
+ runtime.destroy();
+ }
+
+ runtime = null;
+ };
+
+ this.exec = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ var args = Base.slice( arguments );
+ component && args.unshift( component );
+
+ return runtime.exec.apply( this, args );
+ };
+
+ this.getRuid = function() {
+ return runtime && runtime.uid;
+ };
+
+ this.destroy = (function( destroy ) {
+ return function() {
+ destroy && destroy.apply( this, arguments );
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ };
+ })( this.destroy );
+ }
+
+ Mediator.installTo( RuntimeClient.prototype );
+ return RuntimeClient;
});
-
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/runtime',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- factories = {},
-
- // 获取对象的第一个key
- getFirstKey = function( obj ) {
- for ( var key in obj ) {
- if ( obj.hasOwnProperty( key ) ) {
- return key;
- }
- }
- return null;
- };
-
- // 接口类。
- function Runtime( options ) {
- this.options = $.extend({
- container: document.body
- }, options );
- this.uid = Base.guid('rt_');
- }
-
- $.extend( Runtime.prototype, {
-
- getContainer: function() {
- var opts = this.options,
- parent, container;
-
- if ( this._container ) {
- return this._container;
- }
-
- parent = $( opts.container || document.body );
- container = $( document.createElement('div') );
-
- container.attr( 'id', 'rt_' + this.uid );
- container.css({
- position: 'absolute',
- top: '0px',
- left: '0px',
- width: '1px',
- height: '1px',
- overflow: 'hidden'
- });
-
- parent.append( container );
- parent.addClass('webuploader-container');
- this._container = container;
- this._parent = parent;
- return container;
- },
-
- init: Base.noop,
- exec: Base.noop,
-
- destroy: function() {
- this._container && this._container.remove();
- this._parent && this._parent.removeClass('webuploader-container');
- this.off();
- }
- });
-
- Runtime.orders = 'html5,flash';
-
-
- /**
- * 添加Runtime实现。
- * @param {String} type 类型
- * @param {Runtime} factory 具体Runtime实现。
- */
- Runtime.addRuntime = function( type, factory ) {
- factories[ type ] = factory;
- };
-
- Runtime.hasRuntime = function( type ) {
- return !!(type ? factories[ type ] : getFirstKey( factories ));
- };
-
- Runtime.create = function( opts, orders ) {
- var type, runtime;
-
- orders = orders || Runtime.orders;
- $.each( orders.split( /\s*,\s*/g ), function() {
- if ( factories[ this ] ) {
- type = this;
- return false;
- }
- });
-
- type = type || getFirstKey( factories );
-
- if ( !type ) {
- throw new Error('Runtime Error');
- }
-
- runtime = new factories[ type ]( opts );
- return runtime;
- };
-
- Mediator.installTo( Runtime.prototype );
- return Runtime;
+ /**
+ * @fileOverview Blob
+ */
+ define('lib/blob',[
+ 'base',
+ 'runtime/client'
+ ], function( Base, RuntimeClient ) {
+
+ function Blob( ruid, source ) {
+ var me = this;
+
+ me.source = source;
+ me.ruid = ruid;
+ this.size = source.size || 0;
+
+ // 如果没有指定 mimetype, 但是知道文件后缀。
+ if ( !source.type && this.ext &&
+ ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
+ this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
+ } else {
+ this.type = source.type || 'application/octet-stream';
+ }
+
+ RuntimeClient.call( me, 'Blob' );
+ this.uid = source.uid || this.uid;
+
+ if ( ruid ) {
+ me.connectRuntime( ruid );
+ }
+ }
+
+ Base.inherits( RuntimeClient, {
+ constructor: Blob,
+
+ slice: function( start, end ) {
+ return this.exec( 'slice', start, end );
+ },
+
+ getSource: function() {
+ return this.source;
+ }
+ });
+
+ return Blob;
});
+ /**
+ * 为了统一化Flash的File和HTML5的File而存在。
+ * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
+ * @fileOverview File
+ */
+ define('lib/file',[
+ 'base',
+ 'lib/blob'
+ ], function( Base, Blob ) {
+
+ var uid = 1,
+ rExt = /\.([^.]+)$/;
+
+ function File( ruid, file ) {
+ var ext;
+
+ this.name = file.name || ('untitled' + uid++);
+ ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
+
+ // todo 支持其他类型文件的转换。
+ // 如果有 mimetype, 但是文件名里面没有找出后缀规律
+ if ( !ext && file.type ) {
+ ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
+ RegExp.$1.toLowerCase() : '';
+ this.name += '.' + ext;
+ }
+
+ this.ext = ext;
+ this.lastModifiedDate = file.lastModifiedDate ||
+ file.lastModified && new Date(file.lastModified).toLocaleString() ||
+ (new Date()).toLocaleString();
+
+ Blob.apply( this, arguments );
+ }
+
+ return Base.inherits( Blob, File );
+ });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/client',[
- 'base',
- 'mediator',
- 'runtime/runtime'
- ], function( Base, Mediator, Runtime ) {
-
- var cache;
-
- cache = (function() {
- var obj = {};
-
- return {
- add: function( runtime ) {
- obj[ runtime.uid ] = runtime;
- },
-
- get: function( ruid, standalone ) {
- var i;
-
- if ( ruid ) {
- return obj[ ruid ];
- }
-
- for ( i in obj ) {
- // 有些类型不能重用,比如filepicker.
- if ( standalone && obj[ i ].__standalone ) {
- continue;
- }
-
- return obj[ i ];
- }
-
- return null;
- },
-
- remove: function( runtime ) {
- delete obj[ runtime.uid ];
- }
- };
- })();
-
- function RuntimeClient( component, standalone ) {
- var deferred = Base.Deferred(),
- runtime;
-
- this.uid = Base.guid('client_');
-
- // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
- this.runtimeReady = function( cb ) {
- return deferred.done( cb );
- };
-
- this.connectRuntime = function( opts, cb ) {
-
- // already connected.
- if ( runtime ) {
- throw new Error('already connected!');
- }
-
- deferred.done( cb );
-
- if ( typeof opts === 'string' && cache.get( opts ) ) {
- runtime = cache.get( opts );
- }
-
- // 像filePicker只能独立存在,不能公用。
- runtime = runtime || cache.get( null, standalone );
-
- // 需要创建
- if ( !runtime ) {
- runtime = Runtime.create( opts, opts.runtimeOrder );
- runtime.__promise = deferred.promise();
- runtime.once( 'ready', deferred.resolve );
- runtime.init();
- cache.add( runtime );
- runtime.__client = 1;
- } else {
- // 来自cache
- Base.$.extend( runtime.options, opts );
- runtime.__promise.then( deferred.resolve );
- runtime.__client++;
- }
-
- standalone && (runtime.__standalone = standalone);
- return runtime;
- };
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.disconnectRuntime = function() {
- if ( !runtime ) {
- return;
- }
-
- runtime.__client--;
-
- if ( runtime.__client <= 0 ) {
- cache.remove( runtime );
- delete runtime.__promise;
- runtime.destroy();
- }
-
- runtime = null;
- };
-
- this.exec = function() {
- if ( !runtime ) {
- return;
- }
-
- var args = Base.slice( arguments );
- component && args.unshift( component );
-
- return runtime.exec.apply( this, args );
- };
-
- this.getRuid = function() {
- return runtime && runtime.uid;
- };
-
- this.destroy = (function( destroy ) {
- return function() {
- destroy && destroy.apply( this, arguments );
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- };
- })( this.destroy );
- }
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepicker',[
+ 'base',
+ 'runtime/client',
+ 'lib/file'
+ ], function( Base, RuntimeClient, File ) {
+
+ var $ = Base.$;
+
+ function FilePicker( opts ) {
+ opts = this.options = $.extend({}, FilePicker.options, opts );
+
+ opts.container = $( opts.id );
+
+ if ( !opts.container.length ) {
+ throw new Error('按钮指定错误');
+ }
+
+ opts.innerHTML = opts.innerHTML || opts.label ||
+ opts.container.html() || '';
+
+ opts.button = $( opts.button || document.createElement('div') );
+ opts.button.html( opts.innerHTML );
+ opts.container.html( opts.button );
+
+ RuntimeClient.call( this, 'FilePicker', true );
+ }
+
+ FilePicker.options = {
+ button: null,
+ container: null,
+ label: null,
+ innerHTML: null,
+ multiple: true,
+ accept: null,
+ name: 'file',
+ style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
+ };
+
+ Base.inherits( RuntimeClient, {
+ constructor: FilePicker,
+
+ init: function() {
+ var me = this,
+ opts = me.options,
+ button = opts.button,
+ style = opts.style;
+
+ if (style)
+ button.addClass('webuploader-pick');
+
+ me.on( 'all', function( type ) {
+ var files;
+
+ switch ( type ) {
+ case 'mouseenter':
+ if (style)
+ button.addClass('webuploader-pick-hover');
+ break;
+
+ case 'mouseleave':
+ if (style)
+ button.removeClass('webuploader-pick-hover');
+ break;
+
+ case 'change':
+ files = me.exec('getFiles');
+ me.trigger( 'select', $.map( files, function( file ) {
+ file = new File( me.getRuid(), file );
+
+ // 记录来源。
+ file._refer = opts.container;
+ return file;
+ }), opts.container );
+ break;
+ }
+ });
+
+ me.connectRuntime( opts, function() {
+ me.refresh();
+ me.exec( 'init', opts );
+ me.trigger('ready');
+ });
+
+ this._resizeHandler = Base.bindFn( this.refresh, this );
+ $( window ).on( 'resize', this._resizeHandler );
+ },
+
+ refresh: function() {
+ var shimContainer = this.getRuntime().getContainer(),
+ button = this.options.button,
+ /*
+ width = button.outerWidth ?
+ button.outerWidth() : button.width(),
+
+ height = button.outerHeight ?
+ button.outerHeight() : button.height(),
+ */
+ width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
+ height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
+ pos = button.offset();
+
+ width && height && shimContainer.css({
+ bottom: 'auto',
+ right: 'auto',
+ width: width + 'px',
+ height: height + 'px'
+ }).offset( pos );
+ },
+
+ enable: function() {
+ var btn = this.options.button;
+
+ btn.removeClass('webuploader-pick-disable');
+ this.refresh();
+ },
+
+ disable: function() {
+ var btn = this.options.button;
+
+ this.getRuntime().getContainer().css({
+ top: '-99999px'
+ });
+
+ btn.addClass('webuploader-pick-disable');
+ },
+
+ destroy: function() {
+ var btn = this.options.button;
+ $( window ).off( 'resize', this._resizeHandler );
+ btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
+ 'webuploader-pick');
+ }
+ });
+
+ return FilePicker;
+ });
- Mediator.installTo( RuntimeClient.prototype );
- return RuntimeClient;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/widget',[
+ 'base',
+ 'uploader'
+ ], function( Base, Uploader ) {
+
+ var $ = Base.$,
+ _init = Uploader.prototype._init,
+ _destroy = Uploader.prototype.destroy,
+ IGNORE = {},
+ widgetClass = [];
+
+ function isArrayLike( obj ) {
+ if ( !obj ) {
+ return false;
+ }
+
+ var length = obj.length,
+ type = $.type( obj );
+
+ if ( obj.nodeType === 1 && length ) {
+ return true;
+ }
+
+ return type === 'array' || type !== 'function' && type !== 'string' &&
+ (length === 0 || typeof length === 'number' && length > 0 &&
+ (length - 1) in obj);
+ }
+
+ function Widget( uploader ) {
+ this.owner = uploader;
+ this.options = uploader.options;
+ }
+
+ $.extend( Widget.prototype, {
+
+ init: Base.noop,
+
+ // 类Backbone的事件监听声明,监听uploader实例上的事件
+ // widget直接无法监听事件,事件只能通过uploader来传递
+ invoke: function( apiName, args ) {
+
+ /*
+ {
+ 'make-thumb': 'makeThumb'
+ }
+ */
+ var map = this.responseMap;
+
+ // 如果无API响应声明则忽略
+ if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
+ !$.isFunction( this[ map[ apiName ] ] ) ) {
+
+ return IGNORE;
+ }
+
+ return this[ map[ apiName ] ].apply( this, args );
+
+ },
+
+ /**
+ * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
+ * @method request
+ * @grammar request( command, args ) => * | Promise
+ * @grammar request( command, args, callback ) => Promise
+ * @for Uploader
+ */
+ request: function() {
+ return this.owner.request.apply( this.owner, arguments );
+ }
+ });
+
+ // 扩展Uploader.
+ $.extend( Uploader.prototype, {
+
+ /**
+ * @property {String | Array} [disableWidgets=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
+ */
+
+ // 覆写_init用来初始化widgets
+ _init: function() {
+ var me = this,
+ widgets = me._widgets = [],
+ deactives = me.options.disableWidgets || '';
+
+ $.each( widgetClass, function( _, klass ) {
+ (!deactives || !~deactives.indexOf( klass._name )) &&
+ widgets.push( new klass( me ) );
+ });
+
+ return _init.apply( me, arguments );
+ },
+
+ request: function( apiName, args, callback ) {
+ var i = 0,
+ widgets = this._widgets,
+ len = widgets && widgets.length,
+ rlts = [],
+ dfds = [],
+ widget, rlt, promise, key;
+
+ args = isArrayLike( args ) ? args : [ args ];
+
+ for ( ; i < len; i++ ) {
+ widget = widgets[ i ];
+ rlt = widget.invoke( apiName, args );
+
+ if ( rlt !== IGNORE ) {
+
+ // Deferred对象
+ if ( Base.isPromise( rlt ) ) {
+ dfds.push( rlt );
+ } else {
+ rlts.push( rlt );
+ }
+ }
+ }
+
+ // 如果有callback,则用异步方式。
+ if ( callback || dfds.length ) {
+ promise = Base.when.apply( Base, dfds );
+ key = promise.pipe ? 'pipe' : 'then';
+
+ // 很重要不能删除。删除了会死循环。
+ // 保证执行顺序。让callback总是在下一个 tick 中执行。
+ return promise[ key ](function() {
+ var deferred = Base.Deferred(),
+ args = arguments;
+
+ if ( args.length === 1 ) {
+ args = args[ 0 ];
+ }
+
+ setTimeout(function() {
+ deferred.resolve( args );
+ }, 1 );
+
+ return deferred.promise();
+ })[ callback ? key : 'done' ]( callback || Base.noop );
+ } else {
+ return rlts[ 0 ];
+ }
+ },
+
+ destroy: function() {
+ _destroy.apply( this, arguments );
+ this._widgets = null;
+ }
+ });
+
+ /**
+ * 添加组件
+ * @grammar Uploader.register(proto);
+ * @grammar Uploader.register(map, proto);
+ * @param {object} responseMap API 名称与函数实现的映射
+ * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
+ * @method Uploader.register
+ * @for Uploader
+ * @example
+ * Uploader.register({
+ * 'make-thumb': 'makeThumb'
+ * }, {
+ * init: function( options ) {},
+ * makeThumb: function() {}
+ * });
+ *
+ * Uploader.register({
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ */
+ Uploader.register = Widget.register = function( responseMap, widgetProto ) {
+ var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
+ klass;
+
+ if ( arguments.length === 1 ) {
+ widgetProto = responseMap;
+
+ // 自动生成 map 表。
+ $.each(widgetProto, function(key) {
+ if ( key[0] === '_' || key === 'name' ) {
+ key === 'name' && (map.name = widgetProto.name);
+ return;
+ }
+
+ map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
+ });
+
+ } else {
+ map = $.extend( map, responseMap );
+ }
+
+ widgetProto.responseMap = map;
+ klass = Base.inherits( Widget, widgetProto );
+ klass._name = map.name;
+ widgetClass.push( klass );
+
+ return klass;
+ };
+
+ /**
+ * 删除插件,只有在注册时指定了名字的才能被删除。
+ * @grammar Uploader.unRegister(name);
+ * @param {string} name 组件名字
+ * @method Uploader.unRegister
+ * @for Uploader
+ * @example
+ *
+ * Uploader.register({
+ * name: 'custom',
+ *
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ *
+ * Uploader.unRegister('custom');
+ */
+ Uploader.unRegister = Widget.unRegister = function( name ) {
+ if ( !name || name === 'anonymous' ) {
+ return;
+ }
+
+ // 删除指定的插件。
+ for ( var i = widgetClass.length; i--; ) {
+ if ( widgetClass[i]._name === name ) {
+ widgetClass.splice(i, 1)
+ }
+ }
+ };
+
+ return Widget;
});
- /**
- * @fileOverview Blob
- */
- define('lib/blob',[
- 'base',
- 'runtime/client'
- ], function( Base, RuntimeClient ) {
-
- function Blob( ruid, source ) {
- var me = this;
-
- me.source = source;
- me.ruid = ruid;
- this.size = source.size || 0;
-
- // 如果没有指定 mimetype, 但是知道文件后缀。
- if ( !source.type && this.ext &&
- ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
- this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
- } else {
- this.type = source.type || 'application/octet-stream';
- }
-
- RuntimeClient.call( me, 'Blob' );
- this.uid = source.uid || this.uid;
-
- if ( ruid ) {
- me.connectRuntime( ruid );
- }
- }
-
- Base.inherits( RuntimeClient, {
- constructor: Blob,
-
- slice: function( start, end ) {
- return this.exec( 'slice', start, end );
- },
-
- getSource: function() {
- return this.source;
- }
- });
-
- return Blob;
+ /**
+ * @fileOverview 文件选择相关
+ */
+ define('widgets/filepicker',[
+ 'base',
+ 'uploader',
+ 'lib/filepicker',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePicker ) {
+ var $ = Base.$;
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Selector | Object} [pick=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 指定选择文件的按钮容器,不指定则不创建按钮。
+ *
+ * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
+ * * `label` {String} 请采用 `innerHTML` 代替
+ * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
+ * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
+ */
+ pick: null,
+
+ /**
+ * @property {Array} [accept=null]
+ * @namespace options
+ * @for Uploader
+ * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
+ *
+ * * `title` {String} 文字描述
+ * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
+ * * `mimeTypes` {String} 多个用逗号分割。
+ *
+ * 如:
+ *
+ * ```
+ * {
+ * title: 'Images',
+ * extensions: 'gif,jpg,jpeg,bmp,png',
+ * mimeTypes: 'image/*'
+ * }
+ * ```
+ */
+ accept: null/*{
+ title: 'Images',
+ extensions: 'gif,jpg,jpeg,bmp,png',
+ mimeTypes: 'image/*'
+ }*/
+ });
+
+ return Uploader.register({
+ name: 'picker',
+
+ init: function( opts ) {
+ this.pickers = [];
+ return opts.pick && this.addBtn( opts.pick );
+ },
+
+ refresh: function() {
+ $.each( this.pickers, function() {
+ this.refresh();
+ });
+ },
+
+ /**
+ * @method addButton
+ * @for Uploader
+ * @grammar addButton( pick ) => Promise
+ * @description
+ * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
+ * @example
+ * uploader.addButton({
+ * id: '#btnContainer',
+ * innerHTML: '选择文件'
+ * });
+ */
+ addBtn: function( pick ) {
+ var me = this,
+ opts = me.options,
+ accept = opts.accept,
+ promises = [];
+
+ if ( !pick ) {
+ return;
+ }
+
+ $.isPlainObject( pick ) || (pick = {
+ id: pick
+ });
+
+ $( pick.id ).each(function() {
+ var options, picker, deferred;
+
+ deferred = Base.Deferred();
+
+ options = $.extend({}, pick, {
+ accept: $.isPlainObject( accept ) ? [ accept ] : accept,
+ swf: opts.swf,
+ runtimeOrder: opts.runtimeOrder,
+ id: this
+ });
+
+ picker = new FilePicker( options );
+
+ picker.once( 'ready', deferred.resolve );
+ picker.on( 'select', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ picker.on('dialogopen', function() {
+ me.owner.trigger('dialogOpen', picker.button);
+ });
+ picker.init();
+
+ me.pickers.push( picker );
+
+ promises.push( deferred.promise() );
+ });
+
+ return Base.when.apply( Base, promises );
+ },
+
+ disable: function() {
+ $.each( this.pickers, function() {
+ this.disable();
+ });
+ },
+
+ enable: function() {
+ $.each( this.pickers, function() {
+ this.enable();
+ });
+ },
+
+ destroy: function() {
+ $.each( this.pickers, function() {
+ this.destroy();
+ });
+ this.pickers = null;
+ }
+ });
});
- /**
- * 为了统一化Flash的File和HTML5的File而存在。
- * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
- * @fileOverview File
- */
- define('lib/file',[
- 'base',
- 'lib/blob'
- ], function( Base, Blob ) {
-
- var uid = 1,
- rExt = /\.([^.]+)$/;
-
- function File( ruid, file ) {
- var ext;
-
- this.name = file.name || ('untitled' + uid++);
- ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
-
- // todo 支持其他类型文件的转换。
- // 如果有 mimetype, 但是文件名里面没有找出后缀规律
- if ( !ext && file.type ) {
- ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
- RegExp.$1.toLowerCase() : '';
- this.name += '.' + ext;
- }
-
- this.ext = ext;
- this.lastModifiedDate = file.lastModifiedDate ||
- file.lastModified && new Date(file.lastModified).toLocaleString() ||
- (new Date()).toLocaleString();
-
- Blob.apply( this, arguments );
- }
-
- return Base.inherits( Blob, File );
+ /**
+ * @fileOverview Image
+ */
+ define('lib/image',[
+ 'base',
+ 'runtime/client',
+ 'lib/blob'
+ ], function( Base, RuntimeClient, Blob ) {
+ var $ = Base.$;
+
+ // 构造器。
+ function Image( opts ) {
+ this.options = $.extend({}, Image.options, opts );
+ RuntimeClient.call( this, 'Image' );
+
+ this.on( 'load', function() {
+ this._info = this.exec('info');
+ this._meta = this.exec('meta');
+ });
+ }
+
+ // 默认选项。
+ Image.options = {
+
+ // 默认的图片处理质量
+ quality: 90,
+
+ // 是否裁剪
+ crop: false,
+
+ // 是否保留头部信息
+ preserveHeaders: false,
+
+ // 是否允许放大。
+ allowMagnify: false
+ };
+
+ // 继承RuntimeClient.
+ Base.inherits( RuntimeClient, {
+ constructor: Image,
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._meta = val;
+ return this;
+ }
+
+ // getter
+ return this._meta;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ ruid = blob.getRuid();
+
+ this.connectRuntime( ruid, function() {
+ me.exec( 'init', me.options );
+ me.exec( 'loadFromBlob', blob );
+ });
+ },
+
+ resize: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'resize' ].concat( args ) );
+ },
+
+ crop: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'crop' ].concat( args ) );
+ },
+
+ getAsDataUrl: function( type ) {
+ return this.exec( 'getAsDataUrl', type );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this.exec( 'getAsBlob', type );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
+
+ return Image;
});
-
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepicker',[
- 'base',
- 'runtime/client',
- 'lib/file'
- ], function( Base, RuntimeClient, File ) {
-
- var $ = Base.$;
-
- function FilePicker( opts ) {
- opts = this.options = $.extend({}, FilePicker.options, opts );
-
- opts.container = $( opts.id );
-
- if ( !opts.container.length ) {
- throw new Error('按钮指定错误');
- }
-
- opts.innerHTML = opts.innerHTML || opts.label ||
- opts.container.html() || '';
-
- opts.button = $( opts.button || document.createElement('div') );
- opts.button.html( opts.innerHTML );
- opts.container.html( opts.button );
-
- RuntimeClient.call( this, 'FilePicker', true );
- }
-
- FilePicker.options = {
- button: null,
- container: null,
- label: null,
- innerHTML: null,
- multiple: true,
- accept: null,
- name: 'file',
- style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
- };
-
- Base.inherits( RuntimeClient, {
- constructor: FilePicker,
-
- init: function() {
- var me = this,
- opts = me.options,
- button = opts.button,
- style = opts.style;
-
- if (style)
- button.addClass('webuploader-pick');
-
- me.on( 'all', function( type ) {
- var files;
-
- switch ( type ) {
- case 'mouseenter':
- if (style)
- button.addClass('webuploader-pick-hover');
- break;
-
- case 'mouseleave':
- if (style)
- button.removeClass('webuploader-pick-hover');
- break;
-
- case 'change':
- files = me.exec('getFiles');
- me.trigger( 'select', $.map( files, function( file ) {
- file = new File( me.getRuid(), file );
-
- // 记录来源。
- file._refer = opts.container;
- return file;
- }), opts.container );
- break;
- }
- });
-
- me.connectRuntime( opts, function() {
- me.refresh();
- me.exec( 'init', opts );
- me.trigger('ready');
- });
-
- this._resizeHandler = Base.bindFn( this.refresh, this );
- $( window ).on( 'resize', this._resizeHandler );
- },
-
- refresh: function() {
- var shimContainer = this.getRuntime().getContainer(),
- button = this.options.button,
- /*
- width = button.outerWidth ?
- button.outerWidth() : button.width(),
-
- height = button.outerHeight ?
- button.outerHeight() : button.height(),
- */
- width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
- height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
- pos = button.offset();
-
- width && height && shimContainer.css({
- bottom: 'auto',
- right: 'auto',
- width: width + 'px',
- height: height + 'px'
- }).offset( pos );
- },
-
- enable: function() {
- var btn = this.options.button;
-
- btn.removeClass('webuploader-pick-disable');
- this.refresh();
- },
-
- disable: function() {
- var btn = this.options.button;
-
- this.getRuntime().getContainer().css({
- top: '-99999px'
- });
-
- btn.addClass('webuploader-pick-disable');
- },
-
- destroy: function() {
- var btn = this.options.button;
- $( window ).off( 'resize', this._resizeHandler );
- btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
- 'webuploader-pick');
- }
- });
-
- return FilePicker;
- });
-
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/widget',[
- 'base',
- 'uploader'
- ], function( Base, Uploader ) {
-
- var $ = Base.$,
- _init = Uploader.prototype._init,
- _destroy = Uploader.prototype.destroy,
- IGNORE = {},
- widgetClass = [];
-
- function isArrayLike( obj ) {
- if ( !obj ) {
- return false;
- }
-
- var length = obj.length,
- type = $.type( obj );
-
- if ( obj.nodeType === 1 && length ) {
- return true;
- }
-
- return type === 'array' || type !== 'function' && type !== 'string' &&
- (length === 0 || typeof length === 'number' && length > 0 &&
- (length - 1) in obj);
- }
-
- function Widget( uploader ) {
- this.owner = uploader;
- this.options = uploader.options;
- }
-
- $.extend( Widget.prototype, {
-
- init: Base.noop,
-
- // 类Backbone的事件监听声明,监听uploader实例上的事件
- // widget直接无法监听事件,事件只能通过uploader来传递
- invoke: function( apiName, args ) {
-
- /*
- {
- 'make-thumb': 'makeThumb'
- }
- */
- var map = this.responseMap;
-
- // 如果无API响应声明则忽略
- if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
- !$.isFunction( this[ map[ apiName ] ] ) ) {
-
- return IGNORE;
- }
-
- return this[ map[ apiName ] ].apply( this, args );
-
- },
-
- /**
- * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
- * @method request
- * @grammar request( command, args ) => * | Promise
- * @grammar request( command, args, callback ) => Promise
- * @for Uploader
- */
- request: function() {
- return this.owner.request.apply( this.owner, arguments );
- }
- });
-
- // 扩展Uploader.
- $.extend( Uploader.prototype, {
-
- /**
- * @property {String | Array} [disableWidgets=undefined]
- * @namespace options
- * @for Uploader
- * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
- */
-
- // 覆写_init用来初始化widgets
- _init: function() {
- var me = this,
- widgets = me._widgets = [],
- deactives = me.options.disableWidgets || '';
-
- $.each( widgetClass, function( _, klass ) {
- (!deactives || !~deactives.indexOf( klass._name )) &&
- widgets.push( new klass( me ) );
- });
-
- return _init.apply( me, arguments );
- },
-
- request: function( apiName, args, callback ) {
- var i = 0,
- widgets = this._widgets,
- len = widgets && widgets.length,
- rlts = [],
- dfds = [],
- widget, rlt, promise, key;
-
- args = isArrayLike( args ) ? args : [ args ];
-
- for ( ; i < len; i++ ) {
- widget = widgets[ i ];
- rlt = widget.invoke( apiName, args );
-
- if ( rlt !== IGNORE ) {
-
- // Deferred对象
- if ( Base.isPromise( rlt ) ) {
- dfds.push( rlt );
- } else {
- rlts.push( rlt );
- }
- }
- }
-
- // 如果有callback,则用异步方式。
- if ( callback || dfds.length ) {
- promise = Base.when.apply( Base, dfds );
- key = promise.pipe ? 'pipe' : 'then';
-
- // 很重要不能删除。删除了会死循环。
- // 保证执行顺序。让callback总是在下一个 tick 中执行。
- return promise[ key ](function() {
- var deferred = Base.Deferred(),
- args = arguments;
-
- if ( args.length === 1 ) {
- args = args[ 0 ];
- }
-
- setTimeout(function() {
- deferred.resolve( args );
- }, 1 );
-
- return deferred.promise();
- })[ callback ? key : 'done' ]( callback || Base.noop );
- } else {
- return rlts[ 0 ];
- }
- },
-
- destroy: function() {
- _destroy.apply( this, arguments );
- this._widgets = null;
- }
- });
-
- /**
- * 添加组件
- * @grammar Uploader.register(proto);
- * @grammar Uploader.register(map, proto);
- * @param {object} responseMap API 名称与函数实现的映射
- * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
- * @method Uploader.register
- * @for Uploader
- * @example
- * Uploader.register({
- * 'make-thumb': 'makeThumb'
- * }, {
- * init: function( options ) {},
- * makeThumb: function() {}
- * });
- *
- * Uploader.register({
- * 'make-thumb': function() {
- *
- * }
- * });
- */
- Uploader.register = Widget.register = function( responseMap, widgetProto ) {
- var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
- klass;
-
- if ( arguments.length === 1 ) {
- widgetProto = responseMap;
-
- // 自动生成 map 表。
- $.each(widgetProto, function(key) {
- if ( key[0] === '_' || key === 'name' ) {
- key === 'name' && (map.name = widgetProto.name);
- return;
- }
-
- map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
- });
-
- } else {
- map = $.extend( map, responseMap );
- }
-
- widgetProto.responseMap = map;
- klass = Base.inherits( Widget, widgetProto );
- klass._name = map.name;
- widgetClass.push( klass );
-
- return klass;
- };
-
- /**
- * 删除插件,只有在注册时指定了名字的才能被删除。
- * @grammar Uploader.unRegister(name);
- * @param {string} name 组件名字
- * @method Uploader.unRegister
- * @for Uploader
- * @example
- *
- * Uploader.register({
- * name: 'custom',
- *
- * 'make-thumb': function() {
- *
- * }
- * });
- *
- * Uploader.unRegister('custom');
- */
- Uploader.unRegister = Widget.unRegister = function( name ) {
- if ( !name || name === 'anonymous' ) {
- return;
- }
-
- // 删除指定的插件。
- for ( var i = widgetClass.length; i--; ) {
- if ( widgetClass[i]._name === name ) {
- widgetClass.splice(i, 1)
- }
- }
- };
-
- return Widget;
+ /**
+ * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
+ */
+ define('widgets/image',[
+ 'base',
+ 'uploader',
+ 'lib/image',
+ 'widgets/widget'
+ ], function( Base, Uploader, Image ) {
+
+ var $ = Base.$,
+ throttle;
+
+ // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
+ throttle = (function( max ) {
+ var occupied = 0,
+ waiting = [],
+ tick = function() {
+ var item;
+
+ while ( waiting.length && occupied < max ) {
+ item = waiting.shift();
+ occupied += item[ 0 ];
+ item[ 1 ]();
+ }
+ };
+
+ return function( emiter, size, cb ) {
+ waiting.push([ size, cb ]);
+ emiter.once( 'destroy', function() {
+ occupied -= size;
+ setTimeout( tick, 1 );
+ });
+ setTimeout( tick, 1 );
+ };
+ })( 5 * 1024 * 1024 );
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Object} [thumb]
+ * @namespace options
+ * @for Uploader
+ * @description 配置生成缩略图的选项。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 110,
+ * height: 110,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 70,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: true,
+ *
+ * // 是否允许裁剪。
+ * crop: true,
+ *
+ * // 为空的话则保留原有图片格式。
+ * // 否则强制转换成指定的类型。
+ * type: 'image/jpeg'
+ * }
+ * ```
+ */
+ thumb: {
+ width: 110,
+ height: 110,
+ quality: 70,
+ allowMagnify: true,
+ crop: true,
+ preserveHeaders: false,
+
+ // 为空的话则保留原有图片格式。
+ // 否则强制转换成指定的类型。
+ // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
+ // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
+ type: 'image/jpeg'
+ },
+
+ /**
+ * @property {Object} [compress]
+ * @namespace options
+ * @for Uploader
+ * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 1600,
+ * height: 1600,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 90,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: false,
+ *
+ * // 是否允许裁剪。
+ * crop: false,
+ *
+ * // 是否保留头部meta信息。
+ * preserveHeaders: true,
+ *
+ * // 如果发现压缩后文件大小比原来还大,则使用原来图片
+ * // 此属性可能会影响图片自动纠正功能
+ * noCompressIfLarger: false,
+ *
+ * // 单位字节,如果图片大小小于此值,不会采用压缩。
+ * compressSize: 0
+ * }
+ * ```
+ */
+ compress: {
+ width: 1600,
+ height: 1600,
+ quality: 90,
+ allowMagnify: false,
+ crop: false,
+ preserveHeaders: true
+ }
+ });
+
+ return Uploader.register({
+
+ name: 'image',
+
+
+ /**
+ * 生成缩略图,此过程为异步,所以需要传入`callback`。
+ * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
+ *
+ * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
+ *
+ * `callback`中可以接收到两个参数。
+ * * 第一个为error,如果生成缩略图有错误,此error将为真。
+ * * 第二个为ret, 缩略图的Data URL值。
+ *
+ * **注意**
+ * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
+ * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
+ *
+ * @method makeThumb
+ * @grammar makeThumb( file, callback ) => undefined
+ * @grammar makeThumb( file, callback, width, height ) => undefined
+ * @for Uploader
+ * @example
+ *
+ * uploader.on( 'fileQueued', function( file ) {
+ * var $li = ...;
+ *
+ * uploader.makeThumb( file, function( error, ret ) {
+ * if ( error ) {
+ * $li.text('预览错误');
+ * } else {
+ * $li.append('');
+ * }
+ * });
+ *
+ * });
+ */
+ makeThumb: function( file, cb, width, height ) {
+ var opts, image;
+
+ file = this.request( 'get-file', file );
+
+ // 只预览图片格式。
+ if ( !file.type.match( /^image/ ) ) {
+ cb( true );
+ return;
+ }
+
+ opts = $.extend({}, this.options.thumb );
+
+ // 如果传入的是object.
+ if ( $.isPlainObject( width ) ) {
+ opts = $.extend( opts, width );
+ width = null;
+ }
+
+ width = width || opts.width;
+ height = height || opts.height;
+
+ image = new Image( opts );
+
+ image.once( 'load', function() {
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ // 当 resize 完后
+ image.once( 'complete', function() {
+ cb( false, image.getAsDataUrl( opts.type ) );
+ image.destroy();
+ });
+
+ image.once( 'error', function( reason ) {
+ cb( reason || true );
+ image.destroy();
+ });
+
+ throttle( image, file.source.size, function() {
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+ image.loadFromBlob( file.source );
+ });
+ },
+
+ beforeSendFile: function( file ) {
+ var opts = this.options.compress || this.options.resize,
+ compressSize = opts && opts.compressSize || 0,
+ noCompressIfLarger = opts && opts.noCompressIfLarger || false,
+ image, deferred;
+
+ file = this.request( 'get-file', file );
+
+ // 只压缩 jpeg 图片格式。
+ // gif 可能会丢失针
+ // bmp png 基本上尺寸都不大,且压缩比比较小。
+ if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
+ file.size < compressSize ||
+ file._compressed ) {
+ return;
+ }
+
+ opts = $.extend({}, opts );
+ deferred = Base.Deferred();
+
+ image = new Image( opts );
+
+ deferred.always(function() {
+ image.destroy();
+ image = null;
+ });
+ image.once( 'error', deferred.reject );
+ image.once( 'load', function() {
+ var width = opts.width,
+ height = opts.height;
+
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ image.once( 'complete', function() {
+ var blob, size;
+
+ // 移动端 UC / qq 浏览器的无图模式下
+ // ctx.getImageData 处理大图的时候会报 Exception
+ // INDEX_SIZE_ERR: DOM Exception 1
+ try {
+ blob = image.getAsBlob( opts.type );
+
+ size = file.size;
+
+ // 如果压缩后,比原来还大则不用压缩后的。
+ if ( !noCompressIfLarger || blob.size < size ) {
+ // file.source.destroy && file.source.destroy();
+ file.source = blob;
+ file.size = blob.size;
+
+ file.trigger( 'resize', blob.size, size );
+ }
+
+ // 标记,避免重复压缩。
+ file._compressed = true;
+ deferred.resolve();
+ } catch ( e ) {
+ // 出错了直接继续,让其上传原始图片
+ deferred.resolve();
+ }
+ });
+
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+
+ image.loadFromBlob( file.source );
+ return deferred.promise();
+ }
+ });
});
- /**
- * @fileOverview 文件选择相关
- */
- define('widgets/filepicker',[
- 'base',
- 'uploader',
- 'lib/filepicker',
- 'widgets/widget'
- ], function( Base, Uploader, FilePicker ) {
- var $ = Base.$;
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Selector | Object} [pick=undefined]
- * @namespace options
- * @for Uploader
- * @description 指定选择文件的按钮容器,不指定则不创建按钮。
- *
- * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
- * * `label` {String} 请采用 `innerHTML` 代替
- * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
- * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
- */
- pick: null,
-
- /**
- * @property {Array} [accept=null]
- * @namespace options
- * @for Uploader
- * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
- *
- * * `title` {String} 文字描述
- * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
- * * `mimeTypes` {String} 多个用逗号分割。
- *
- * 如:
- *
- * ```
- * {
- * title: 'Images',
- * extensions: 'gif,jpg,jpeg,bmp,png',
- * mimeTypes: 'image/*'
- * }
- * ```
- */
- accept: null/*{
- title: 'Images',
- extensions: 'gif,jpg,jpeg,bmp,png',
- mimeTypes: 'image/*'
- }*/
- });
-
- return Uploader.register({
- name: 'picker',
-
- init: function( opts ) {
- this.pickers = [];
- return opts.pick && this.addBtn( opts.pick );
- },
-
- refresh: function() {
- $.each( this.pickers, function() {
- this.refresh();
- });
- },
-
- /**
- * @method addButton
- * @for Uploader
- * @grammar addButton( pick ) => Promise
- * @description
- * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
- * @example
- * uploader.addButton({
- * id: '#btnContainer',
- * innerHTML: '选择文件'
- * });
- */
- addBtn: function( pick ) {
- var me = this,
- opts = me.options,
- accept = opts.accept,
- promises = [];
-
- if ( !pick ) {
- return;
- }
-
- $.isPlainObject( pick ) || (pick = {
- id: pick
- });
-
- $( pick.id ).each(function() {
- var options, picker, deferred;
-
- deferred = Base.Deferred();
-
- options = $.extend({}, pick, {
- accept: $.isPlainObject( accept ) ? [ accept ] : accept,
- swf: opts.swf,
- runtimeOrder: opts.runtimeOrder,
- id: this
- });
+ /**
+ * @fileOverview 文件属性封装
+ */
+ define('file',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ idPrefix = 'WU_FILE_',
+ idSuffix = 0,
+ rExt = /\.([^.]+)$/,
+ statusMap = {};
+
+ function gid() {
+ return idPrefix + idSuffix++;
+ }
+
+ /**
+ * 文件类
+ * @class File
+ * @constructor 构造函数
+ * @grammar new File( source ) => File
+ * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
+ */
+ function WUFile( source ) {
+
+ /**
+ * 文件名,包括扩展名(后缀)
+ * @property name
+ * @type {string}
+ */
+ this.name = source.name || 'Untitled';
+
+ /**
+ * 文件体积(字节)
+ * @property size
+ * @type {uint}
+ * @default 0
+ */
+ this.size = source.size || 0;
+
+ /**
+ * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
+ * @property type
+ * @type {string}
+ * @default 'application/octet-stream'
+ */
+ this.type = source.type || 'application/octet-stream';
+
+ /**
+ * 文件最后修改日期
+ * @property lastModifiedDate
+ * @type {int}
+ * @default 当前时间戳
+ */
+ this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
+
+ /**
+ * 文件ID,每个对象具有唯一ID,与文件名无关
+ * @property id
+ * @type {string}
+ */
+ this.id = gid();
+
+ /**
+ * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
+ * @property ext
+ * @type {string}
+ */
+ this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
+
+
+ /**
+ * 状态文字说明。在不同的status语境下有不同的用途。
+ * @property statusText
+ * @type {string}
+ */
+ this.statusText = '';
+
+ // 存储文件状态,防止通过属性直接修改
+ statusMap[ this.id ] = WUFile.Status.INITED;
+
+ this.source = source;
+ this.loaded = 0;
+
+ this.on( 'error', function( msg ) {
+ this.setStatus( WUFile.Status.ERROR, msg );
+ });
+ }
+
+ $.extend( WUFile.prototype, {
+
+ /**
+ * 设置状态,状态变化时会触发`change`事件。
+ * @method setStatus
+ * @grammar setStatus( status[, statusText] );
+ * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
+ * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
+ */
+ setStatus: function( status, text ) {
+
+ var prevStatus = statusMap[ this.id ];
+
+ typeof text !== 'undefined' && (this.statusText = text);
+
+ if ( status !== prevStatus ) {
+ statusMap[ this.id ] = status;
+ /**
+ * 文件状态变化
+ * @event statuschange
+ */
+ this.trigger( 'statuschange', status, prevStatus );
+ }
+
+ },
+
+ /**
+ * 获取文件状态
+ * @return {File.Status}
+ * @example
+ 文件状态具体包括以下几种类型:
+ {
+ // 初始化
+ INITED: 0,
+ // 已入队列
+ QUEUED: 1,
+ // 正在上传
+ PROGRESS: 2,
+ // 上传出错
+ ERROR: 3,
+ // 上传成功
+ COMPLETE: 4,
+ // 上传取消
+ CANCELLED: 5
+ }
+ */
+ getStatus: function() {
+ return statusMap[ this.id ];
+ },
+
+ /**
+ * 获取文件原始信息。
+ * @return {*}
+ */
+ getSource: function() {
+ return this.source;
+ },
+
+ destroy: function() {
+ this.off();
+ delete statusMap[ this.id ];
+ }
+ });
+
+ Mediator.installTo( WUFile.prototype );
+
+ /**
+ * 文件状态值,具体包括以下几种类型:
+ * * `inited` 初始状态
+ * * `queued` 已经进入队列, 等待上传
+ * * `progress` 上传中
+ * * `complete` 上传完成。
+ * * `error` 上传出错,可重试
+ * * `interrupt` 上传中断,可续传。
+ * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
+ * * `cancelled` 文件被移除。
+ * @property {Object} Status
+ * @namespace File
+ * @class File
+ * @static
+ */
+ WUFile.Status = {
+ INITED: 'inited', // 初始状态
+ QUEUED: 'queued', // 已经进入队列, 等待上传
+ PROGRESS: 'progress', // 上传中
+ ERROR: 'error', // 上传出错,可重试
+ COMPLETE: 'complete', // 上传完成。
+ CANCELLED: 'cancelled', // 上传取消。
+ INTERRUPT: 'interrupt', // 上传中断,可续传。
+ INVALID: 'invalid' // 文件不合格,不能重试上传。
+ };
+
+ return WUFile;
+ });
- picker = new FilePicker( options );
+ /**
+ * @fileOverview 文件队列
+ */
+ define('queue',[
+ 'base',
+ 'mediator',
+ 'file'
+ ], function( Base, Mediator, WUFile ) {
+
+ var $ = Base.$,
+ STATUS = WUFile.Status;
+
+ /**
+ * 文件队列, 用来存储各个状态中的文件。
+ * @class Queue
+ * @extends Mediator
+ */
+ function Queue() {
+
+ /**
+ * 统计文件数。
+ * * `numOfQueue` 队列中的文件数。
+ * * `numOfSuccess` 上传成功的文件数
+ * * `numOfCancel` 被取消的文件数
+ * * `numOfProgress` 正在上传中的文件数
+ * * `numOfUploadFailed` 上传错误的文件数。
+ * * `numOfInvalid` 无效的文件数。
+ * * `numOfDeleted` 被移除的文件数。
+ * * `numOfInterrupt` 被中断的文件数。
+ * @property {Object} stats
+ */
+ this.stats = {
+ numOfQueue: 0,
+ numOfSuccess: 0,
+ numOfCancel: 0,
+ numOfProgress: 0,
+ numOfUploadFailed: 0,
+ numOfInvalid: 0,
+ numOfDeleted: 0,
+ numOfInterrupt: 0
+ };
+
+ // 上传队列,仅包括等待上传的文件
+ this._queue = [];
+
+ // 存储所有文件
+ this._map = {};
+ }
+
+ $.extend( Queue.prototype, {
+
+ /**
+ * 将新文件加入对队列尾部
+ *
+ * @method append
+ * @param {File} file 文件对象
+ */
+ append: function( file ) {
+ this._queue.push( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 将新文件加入对队列头部
+ *
+ * @method prepend
+ * @param {File} file 文件对象
+ */
+ prepend: function( file ) {
+ this._queue.unshift( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 获取文件对象
+ *
+ * @method getFile
+ * @param {String} fileId 文件ID
+ * @return {File}
+ */
+ getFile: function( fileId ) {
+ if ( typeof fileId !== 'string' ) {
+ return fileId;
+ }
+ return this._map[ fileId ];
+ },
+
+ /**
+ * 从队列中取出一个指定状态的文件。
+ * @grammar fetch( status ) => File
+ * @method fetch
+ * @param {String} status [文件状态值](#WebUploader:File:File.Status)
+ * @return {File} [File](#WebUploader:File)
+ */
+ fetch: function( status ) {
+ var len = this._queue.length,
+ i, file;
+
+ status = status || STATUS.QUEUED;
+
+ for ( i = 0; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( status === file.getStatus() ) {
+ return file;
+ }
+ }
+
+ return null;
+ },
+
+ /**
+ * 对队列进行排序,能够控制文件上传顺序。
+ * @grammar sort( fn ) => undefined
+ * @method sort
+ * @param {Function} fn 排序方法
+ */
+ sort: function( fn ) {
+ if ( typeof fn === 'function' ) {
+ this._queue.sort( fn );
+ }
+ },
+
+ /**
+ * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
+ * @grammar getFiles( [status1[, status2 ...]] ) => Array
+ * @method getFiles
+ * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
+ */
+ getFiles: function() {
+ var sts = [].slice.call( arguments, 0 ),
+ ret = [],
+ i = 0,
+ len = this._queue.length,
+ file;
+
+ for ( ; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
+ continue;
+ }
+
+ ret.push( file );
+ }
+
+ return ret;
+ },
+
+ /**
+ * 在队列中删除文件。
+ * @grammar removeFile( file ) => Array
+ * @method removeFile
+ * @param {File} 文件对象。
+ */
+ removeFile: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( existing ) {
+ delete this._map[ file.id ];
+ this._delFile(file);
+ file.destroy();
+ this.stats.numOfDeleted++;
+
+ }
+ },
+
+ _fileAdded: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( !existing ) {
+ this._map[ file.id ] = file;
+
+ file.on( 'statuschange', function( cur, pre ) {
+ me._onFileStatusChange( cur, pre );
+ });
+ }
+ },
+
+ _delFile : function(file){
+ for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
+ if(this._queue[i] == file){
+ this._queue.splice(i,1);
+ break;
+ }
+ }
+ },
+
+ _onFileStatusChange: function( curStatus, preStatus ) {
+ var stats = this.stats;
+
+ switch ( preStatus ) {
+ case STATUS.PROGRESS:
+ stats.numOfProgress--;
+ break;
+
+ case STATUS.QUEUED:
+ stats.numOfQueue --;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed--;
+ break;
+
+ case STATUS.INVALID:
+ stats.numOfInvalid--;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt--;
+ break;
+ }
+
+ switch ( curStatus ) {
+ case STATUS.QUEUED:
+ stats.numOfQueue++;
+ break;
+
+ case STATUS.PROGRESS:
+ stats.numOfProgress++;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed++;
+ break;
+
+ case STATUS.COMPLETE:
+ stats.numOfSuccess++;
+ break;
+
+ case STATUS.CANCELLED:
+ stats.numOfCancel++;
+ break;
+
+
+ case STATUS.INVALID:
+ stats.numOfInvalid++;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt++;
+ break;
+ }
+ }
+
+ });
+
+ Mediator.installTo( Queue.prototype );
+
+ return Queue;
+ });
- picker.once( 'ready', deferred.resolve );
- picker.on( 'select', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- picker.on('dialogopen', function() {
- me.owner.trigger('dialogOpen', picker.button);
- });
- picker.init();
-
- me.pickers.push( picker );
-
- promises.push( deferred.promise() );
- });
-
- return Base.when.apply( Base, promises );
- },
-
- disable: function() {
- $.each( this.pickers, function() {
- this.disable();
- });
- },
-
- enable: function() {
- $.each( this.pickers, function() {
- this.enable();
- });
- },
-
- destroy: function() {
- $.each( this.pickers, function() {
- this.destroy();
- });
- this.pickers = null;
- }
- });
- });
- /**
- * @fileOverview Image
- */
- define('lib/image',[
- 'base',
- 'runtime/client',
- 'lib/blob'
- ], function( Base, RuntimeClient, Blob ) {
- var $ = Base.$;
-
- // 构造器。
- function Image( opts ) {
- this.options = $.extend({}, Image.options, opts );
- RuntimeClient.call( this, 'Image' );
-
- this.on( 'load', function() {
- this._info = this.exec('info');
- this._meta = this.exec('meta');
- });
- }
-
- // 默认选项。
- Image.options = {
-
- // 默认的图片处理质量
- quality: 90,
-
- // 是否裁剪
- crop: false,
-
- // 是否保留头部信息
- preserveHeaders: false,
-
- // 是否允许放大。
- allowMagnify: false
- };
-
- // 继承RuntimeClient.
- Base.inherits( RuntimeClient, {
- constructor: Image,
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._meta = val;
- return this;
- }
-
- // getter
- return this._meta;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- ruid = blob.getRuid();
-
- this.connectRuntime( ruid, function() {
- me.exec( 'init', me.options );
- me.exec( 'loadFromBlob', blob );
- });
- },
-
- resize: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'resize' ].concat( args ) );
- },
-
- crop: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'crop' ].concat( args ) );
- },
-
- getAsDataUrl: function( type ) {
- return this.exec( 'getAsDataUrl', type );
- },
-
- getAsBlob: function( type ) {
- var blob = this.exec( 'getAsBlob', type );
-
- return new Blob( this.getRuid(), blob );
- }
- });
-
- return Image;
+ /**
+ * @fileOverview 队列
+ */
+ define('widgets/queue',[
+ 'base',
+ 'uploader',
+ 'queue',
+ 'file',
+ 'lib/file',
+ 'runtime/client',
+ 'widgets/widget'
+ ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
+
+ var $ = Base.$,
+ rExt = /\.\w+$/,
+ Status = WUFile.Status;
+
+ return Uploader.register({
+ name: 'queue',
+
+ init: function( opts ) {
+ var me = this,
+ deferred, len, i, item, arr, accept, runtime;
+
+ if ( $.isPlainObject( opts.accept ) ) {
+ opts.accept = [ opts.accept ];
+ }
+
+ // accept中的中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].extensions;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = '\\.' + arr.join(',')
+ .replace( /,/g, '$|\\.' )
+ .replace( /\*/g, '.*' ) + '$';
+ }
+
+ me.accept = new RegExp( accept, 'i' );
+ }
+
+ me.queue = new Queue();
+ me.stats = me.queue.stats;
+
+ // 如果当前不是html5运行时,那就算了。
+ // 不执行后续操作
+ if ( this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ // 创建一个 html5 运行时的 placeholder
+ // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
+ deferred = Base.Deferred();
+ this.placeholder = runtime = new RuntimeClient('Placeholder');
+ runtime.connectRuntime({
+ runtimeOrder: 'html5'
+ }, function() {
+ me._ruid = runtime.getRuid();
+ deferred.resolve();
+ });
+ return deferred.promise();
+ },
+
+
+ // 为了支持外部直接添加一个原生File对象。
+ _wrapFile: function( file ) {
+ if ( !(file instanceof WUFile) ) {
+
+ if ( !(file instanceof File) ) {
+ if ( !this._ruid ) {
+ throw new Error('Can\'t add external files.');
+ }
+ file = new File( this._ruid, file );
+ }
+
+ file = new WUFile( file );
+ }
+
+ return file;
+ },
+
+ // 判断文件是否可以被加入队列
+ acceptFile: function( file ) {
+ var invalid = !file || !file.size || this.accept &&
+
+ // 如果名字中有后缀,才做后缀白名单处理。
+ rExt.exec( file.name ) && !this.accept.test( file.name );
+
+ return !invalid;
+ },
+
+
+ /**
+ * @event beforeFileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
+ * @for Uploader
+ */
+
+ /**
+ * @event fileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列以后触发。
+ * @for Uploader
+ */
+
+ _addFile: function( file ) {
+ var me = this;
+
+ file = me._wrapFile( file );
+
+ // 不过类型判断允许不允许,先派送 `beforeFileQueued`
+ if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
+ return;
+ }
+
+ // 类型不匹配,则派送错误事件,并返回。
+ if ( !me.acceptFile( file ) ) {
+ me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
+ return;
+ }
+
+ me.queue.append( file );
+ me.owner.trigger( 'fileQueued', file );
+ return file;
+ },
+
+ getFile: function( fileId ) {
+ return this.queue.getFile( fileId );
+ },
+
+ /**
+ * @event filesQueued
+ * @param {File} files 数组,内容为原始File(lib/File)对象。
+ * @description 当一批文件添加进队列以后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @property {Boolean} [auto=false]
+ * @namespace options
+ * @for Uploader
+ * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
+ *
+ */
+
+ /**
+ * @method addFiles
+ * @grammar addFiles( file ) => undefined
+ * @grammar addFiles( [file1, file2 ...] ) => undefined
+ * @param {Array of File or File} [files] Files 对象 数组
+ * @description 添加文件到队列
+ * @for Uploader
+ */
+ addFile: function( files ) {
+ var me = this;
+
+ if ( !files.length ) {
+ files = [ files ];
+ }
+
+ files = $.map( files, function( file ) {
+ return me._addFile( file );
+ });
+
+ if ( files.length ) {
+
+ me.owner.trigger( 'filesQueued', files );
+
+ if ( me.options.auto ) {
+ setTimeout(function() {
+ me.request('start-upload');
+ }, 20 );
+ }
+ }
+ },
+
+ getStats: function() {
+ return this.stats;
+ },
+
+ /**
+ * @event fileDequeued
+ * @param {File} file File对象
+ * @description 当文件被移除队列后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method removeFile
+ * @grammar removeFile( file ) => undefined
+ * @grammar removeFile( id ) => undefined
+ * @grammar removeFile( file, true ) => undefined
+ * @grammar removeFile( id, true ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.removeFile( file );
+ * })
+ */
+ removeFile: function( file, remove ) {
+ var me = this;
+
+ file = file.id ? file : me.queue.getFile( file );
+
+ this.request( 'cancel-file', file );
+
+ if ( remove ) {
+ this.queue.removeFile( file );
+ }
+ },
+
+ /**
+ * @method getFiles
+ * @grammar getFiles() => Array
+ * @grammar getFiles( status1, status2, status... ) => Array
+ * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
+ * @for Uploader
+ * @example
+ * console.log( uploader.getFiles() ); // => all files
+ * console.log( uploader.getFiles('error') ) // => all error files.
+ */
+ getFiles: function() {
+ return this.queue.getFiles.apply( this.queue, arguments );
+ },
+
+ fetchFile: function() {
+ return this.queue.fetch.apply( this.queue, arguments );
+ },
+
+ /**
+ * @method retry
+ * @grammar retry() => undefined
+ * @grammar retry( file ) => undefined
+ * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
+ * @for Uploader
+ * @example
+ * function retry() {
+ * uploader.retry();
+ * }
+ */
+ retry: function( file, noForceStart ) {
+ var me = this,
+ files, i, len;
+
+ if ( file ) {
+ file = file.id ? file : me.queue.getFile( file );
+ file.setStatus( Status.QUEUED );
+ noForceStart || me.request('start-upload');
+ return;
+ }
+
+ files = me.queue.getFiles( Status.ERROR );
+ i = 0;
+ len = files.length;
+
+ for ( ; i < len; i++ ) {
+ file = files[ i ];
+ file.setStatus( Status.QUEUED );
+ }
+
+ me.request('start-upload');
+ },
+
+ /**
+ * @method sort
+ * @grammar sort( fn ) => undefined
+ * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
+ * @for Uploader
+ */
+ sortFiles: function() {
+ return this.queue.sort.apply( this.queue, arguments );
+ },
+
+ /**
+ * @event reset
+ * @description 当 uploader 被重置的时候触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method reset
+ * @grammar reset() => undefined
+ * @description 重置uploader。目前只重置了队列。
+ * @for Uploader
+ * @example
+ * uploader.reset();
+ */
+ reset: function() {
+ this.owner.trigger('reset');
+ this.queue = new Queue();
+ this.stats = this.queue.stats;
+ },
+
+ destroy: function() {
+ this.reset();
+ this.placeholder && this.placeholder.destroy();
+ }
+ });
+
});
- /**
- * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
- */
- define('widgets/image',[
- 'base',
- 'uploader',
- 'lib/image',
- 'widgets/widget'
- ], function( Base, Uploader, Image ) {
-
- var $ = Base.$,
- throttle;
-
- // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
- throttle = (function( max ) {
- var occupied = 0,
- waiting = [],
- tick = function() {
- var item;
-
- while ( waiting.length && occupied < max ) {
- item = waiting.shift();
- occupied += item[ 0 ];
- item[ 1 ]();
- }
- };
-
- return function( emiter, size, cb ) {
- waiting.push([ size, cb ]);
- emiter.once( 'destroy', function() {
- occupied -= size;
- setTimeout( tick, 1 );
- });
- setTimeout( tick, 1 );
- };
- })( 5 * 1024 * 1024 );
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Object} [thumb]
- * @namespace options
- * @for Uploader
- * @description 配置生成缩略图的选项。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 110,
- * height: 110,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 70,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: true,
- *
- * // 是否允许裁剪。
- * crop: true,
- *
- * // 为空的话则保留原有图片格式。
- * // 否则强制转换成指定的类型。
- * type: 'image/jpeg'
- * }
- * ```
- */
- thumb: {
- width: 110,
- height: 110,
- quality: 70,
- allowMagnify: true,
- crop: true,
- preserveHeaders: false,
-
- // 为空的话则保留原有图片格式。
- // 否则强制转换成指定的类型。
- // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
- // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
- type: 'image/jpeg'
- },
-
- /**
- * @property {Object} [compress]
- * @namespace options
- * @for Uploader
- * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 1600,
- * height: 1600,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 90,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: false,
- *
- * // 是否允许裁剪。
- * crop: false,
- *
- * // 是否保留头部meta信息。
- * preserveHeaders: true,
- *
- * // 如果发现压缩后文件大小比原来还大,则使用原来图片
- * // 此属性可能会影响图片自动纠正功能
- * noCompressIfLarger: false,
- *
- * // 单位字节,如果图片大小小于此值,不会采用压缩。
- * compressSize: 0
- * }
- * ```
- */
- compress: {
- width: 1600,
- height: 1600,
- quality: 90,
- allowMagnify: false,
- crop: false,
- preserveHeaders: true
- }
- });
-
- return Uploader.register({
-
- name: 'image',
-
-
- /**
- * 生成缩略图,此过程为异步,所以需要传入`callback`。
- * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
- *
- * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
- *
- * `callback`中可以接收到两个参数。
- * * 第一个为error,如果生成缩略图有错误,此error将为真。
- * * 第二个为ret, 缩略图的Data URL值。
- *
- * **注意**
- * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
- * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
- *
- * @method makeThumb
- * @grammar makeThumb( file, callback ) => undefined
- * @grammar makeThumb( file, callback, width, height ) => undefined
- * @for Uploader
- * @example
- *
- * uploader.on( 'fileQueued', function( file ) {
- * var $li = ...;
- *
- * uploader.makeThumb( file, function( error, ret ) {
- * if ( error ) {
- * $li.text('预览错误');
- * } else {
- * $li.append('');
- * }
- * });
- *
- * });
- */
- makeThumb: function( file, cb, width, height ) {
- var opts, image;
-
- file = this.request( 'get-file', file );
-
- // 只预览图片格式。
- if ( !file.type.match( /^image/ ) ) {
- cb( true );
- return;
- }
-
- opts = $.extend({}, this.options.thumb );
-
- // 如果传入的是object.
- if ( $.isPlainObject( width ) ) {
- opts = $.extend( opts, width );
- width = null;
- }
-
- width = width || opts.width;
- height = height || opts.height;
-
- image = new Image( opts );
-
- image.once( 'load', function() {
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- // 当 resize 完后
- image.once( 'complete', function() {
- cb( false, image.getAsDataUrl( opts.type ) );
- image.destroy();
- });
-
- image.once( 'error', function( reason ) {
- cb( reason || true );
- image.destroy();
- });
-
- throttle( image, file.source.size, function() {
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
- image.loadFromBlob( file.source );
- });
- },
-
- beforeSendFile: function( file ) {
- var opts = this.options.compress || this.options.resize,
- compressSize = opts && opts.compressSize || 0,
- noCompressIfLarger = opts && opts.noCompressIfLarger || false,
- image, deferred;
-
- file = this.request( 'get-file', file );
-
- // 只压缩 jpeg 图片格式。
- // gif 可能会丢失针
- // bmp png 基本上尺寸都不大,且压缩比比较小。
- if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
- file.size < compressSize ||
- file._compressed ) {
- return;
- }
-
- opts = $.extend({}, opts );
- deferred = Base.Deferred();
-
- image = new Image( opts );
-
- deferred.always(function() {
- image.destroy();
- image = null;
- });
- image.once( 'error', deferred.reject );
- image.once( 'load', function() {
- var width = opts.width,
- height = opts.height;
-
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- image.once( 'complete', function() {
- var blob, size;
-
- // 移动端 UC / qq 浏览器的无图模式下
- // ctx.getImageData 处理大图的时候会报 Exception
- // INDEX_SIZE_ERR: DOM Exception 1
- try {
- blob = image.getAsBlob( opts.type );
-
- size = file.size;
-
- // 如果压缩后,比原来还大则不用压缩后的。
- if ( !noCompressIfLarger || blob.size < size ) {
- // file.source.destroy && file.source.destroy();
- file.source = blob;
- file.size = blob.size;
-
- file.trigger( 'resize', blob.size, size );
- }
-
- // 标记,避免重复压缩。
- file._compressed = true;
- deferred.resolve();
- } catch ( e ) {
- // 出错了直接继续,让其上传原始图片
- deferred.resolve();
- }
- });
-
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
-
- image.loadFromBlob( file.source );
- return deferred.promise();
- }
- });
+ /**
+ * @fileOverview 添加获取Runtime相关信息的方法。
+ */
+ define('widgets/runtime',[
+ 'uploader',
+ 'runtime/runtime',
+ 'widgets/widget'
+ ], function( Uploader, Runtime ) {
+
+ Uploader.support = function() {
+ return Runtime.hasRuntime.apply( Runtime, arguments );
+ };
+
+ /**
+ * @property {Object} [runtimeOrder=html5,flash]
+ * @namespace options
+ * @for Uploader
+ * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
+ *
+ * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
+ */
+
+ return Uploader.register({
+ name: 'runtime',
+
+ init: function() {
+ if ( !this.predictRuntimeType() ) {
+ throw Error('Runtime Error');
+ }
+ },
+
+ /**
+ * 预测Uploader将采用哪个`Runtime`
+ * @grammar predictRuntimeType() => String
+ * @method predictRuntimeType
+ * @for Uploader
+ */
+ predictRuntimeType: function() {
+ var orders = this.options.runtimeOrder || Runtime.orders,
+ type = this.type,
+ i, len;
+
+ if ( !type ) {
+ orders = orders.split( /\s*,\s*/g );
+
+ for ( i = 0, len = orders.length; i < len; i++ ) {
+ if ( Runtime.hasRuntime( orders[ i ] ) ) {
+ this.type = type = orders[ i ];
+ break;
+ }
+ }
+ }
+
+ return type;
+ }
+ });
});
- /**
- * @fileOverview 文件属性封装
- */
- define('file',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- idPrefix = 'WU_FILE_',
- idSuffix = 0,
- rExt = /\.([^.]+)$/,
- statusMap = {};
-
- function gid() {
- return idPrefix + idSuffix++;
- }
-
- /**
- * 文件类
- * @class File
- * @constructor 构造函数
- * @grammar new File( source ) => File
- * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
- */
- function WUFile( source ) {
-
- /**
- * 文件名,包括扩展名(后缀)
- * @property name
- * @type {string}
- */
- this.name = source.name || 'Untitled';
-
- /**
- * 文件体积(字节)
- * @property size
- * @type {uint}
- * @default 0
- */
- this.size = source.size || 0;
-
- /**
- * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
- * @property type
- * @type {string}
- * @default 'application/octet-stream'
- */
- this.type = source.type || 'application/octet-stream';
-
- /**
- * 文件最后修改日期
- * @property lastModifiedDate
- * @type {int}
- * @default 当前时间戳
- */
- this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
-
- /**
- * 文件ID,每个对象具有唯一ID,与文件名无关
- * @property id
- * @type {string}
- */
- this.id = gid();
-
- /**
- * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
- * @property ext
- * @type {string}
- */
- this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
-
-
- /**
- * 状态文字说明。在不同的status语境下有不同的用途。
- * @property statusText
- * @type {string}
- */
- this.statusText = '';
-
- // 存储文件状态,防止通过属性直接修改
- statusMap[ this.id ] = WUFile.Status.INITED;
-
- this.source = source;
- this.loaded = 0;
-
- this.on( 'error', function( msg ) {
- this.setStatus( WUFile.Status.ERROR, msg );
- });
- }
-
- $.extend( WUFile.prototype, {
-
- /**
- * 设置状态,状态变化时会触发`change`事件。
- * @method setStatus
- * @grammar setStatus( status[, statusText] );
- * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
- * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
- */
- setStatus: function( status, text ) {
-
- var prevStatus = statusMap[ this.id ];
-
- typeof text !== 'undefined' && (this.statusText = text);
-
- if ( status !== prevStatus ) {
- statusMap[ this.id ] = status;
- /**
- * 文件状态变化
- * @event statuschange
- */
- this.trigger( 'statuschange', status, prevStatus );
- }
-
- },
-
- /**
- * 获取文件状态
- * @return {File.Status}
- * @example
- 文件状态具体包括以下几种类型:
- {
- // 初始化
- INITED: 0,
- // 已入队列
- QUEUED: 1,
- // 正在上传
- PROGRESS: 2,
- // 上传出错
- ERROR: 3,
- // 上传成功
- COMPLETE: 4,
- // 上传取消
- CANCELLED: 5
- }
- */
- getStatus: function() {
- return statusMap[ this.id ];
- },
-
- /**
- * 获取文件原始信息。
- * @return {*}
- */
- getSource: function() {
- return this.source;
- },
-
- destroy: function() {
- this.off();
- delete statusMap[ this.id ];
- }
- });
-
- Mediator.installTo( WUFile.prototype );
+ /**
+ * @fileOverview Transport
+ */
+ define('lib/transport',[
+ 'base',
+ 'runtime/client',
+ 'mediator'
+ ], function( Base, RuntimeClient, Mediator ) {
+
+ var $ = Base.$;
+
+ function Transport( opts ) {
+ var me = this;
+
+ opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
+ RuntimeClient.call( this, 'Transport' );
+
+ this._blob = null;
+ this._formData = opts.formData || {};
+ this._headers = opts.headers || {};
+
+ this.on( 'progress', this._timeout );
+ this.on( 'load error', function() {
+ me.trigger( 'progress', 1 );
+ clearTimeout( me._timer );
+ });
+ }
+
+ Transport.options = {
+ server: '',
+ method: 'POST',
+
+ // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
+ withCredentials: false,
+ fileVal: 'file',
+ timeout: 2 * 60 * 1000, // 2分钟
+ formData: {},
+ headers: {},
+ sendAsBinary: false
+ };
+
+ $.extend( Transport.prototype, {
+
+ // 添加Blob, 只能添加一次,最后一次有效。
+ appendBlob: function( key, blob, filename ) {
+ var me = this,
+ opts = me.options;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ });
+
+ me._blob = blob;
+ opts.fileVal = key || opts.fileVal;
+ opts.filename = filename || opts.filename;
+ },
+
+ // 添加其他字段
+ append: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._formData, key );
+ } else {
+ this._formData[ key ] = value;
+ }
+ },
+
+ setRequestHeader: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._headers, key );
+ } else {
+ this._headers[ key ] = value;
+ }
+ },
+
+ send: function( method ) {
+ this.exec( 'send', method );
+ this._timeout();
+ },
+
+ abort: function() {
+ clearTimeout( this._timer );
+ return this.exec('abort');
+ },
+
+ destroy: function() {
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ },
+
+ getResponseHeaders: function() {
+ return this.exec('getResponseHeaders');
+ },
+
+ getResponse: function() {
+ return this.exec('getResponse');
+ },
+
+ getResponseAsJson: function() {
+ return this.exec('getResponseAsJson');
+ },
+
+ getStatus: function() {
+ return this.exec('getStatus');
+ },
+
+ _timeout: function() {
+ var me = this,
+ duration = me.options.timeout;
+
+ if ( !duration ) {
+ return;
+ }
+
+ clearTimeout( me._timer );
+ me._timer = setTimeout(function() {
+ me.abort();
+ me.trigger( 'error', 'timeout' );
+ }, duration );
+ }
+
+ });
+
+ // 让Transport具备事件功能。
+ Mediator.installTo( Transport.prototype );
+
+ return Transport;
+ });
- /**
- * 文件状态值,具体包括以下几种类型:
- * * `inited` 初始状态
- * * `queued` 已经进入队列, 等待上传
- * * `progress` 上传中
- * * `complete` 上传完成。
- * * `error` 上传出错,可重试
- * * `interrupt` 上传中断,可续传。
- * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
- * * `cancelled` 文件被移除。
- * @property {Object} Status
- * @namespace File
- * @class File
- * @static
- */
- WUFile.Status = {
- INITED: 'inited', // 初始状态
- QUEUED: 'queued', // 已经进入队列, 等待上传
- PROGRESS: 'progress', // 上传中
- ERROR: 'error', // 上传出错,可重试
- COMPLETE: 'complete', // 上传完成。
- CANCELLED: 'cancelled', // 上传取消。
- INTERRUPT: 'interrupt', // 上传中断,可续传。
- INVALID: 'invalid' // 文件不合格,不能重试上传。
- };
-
- return WUFile;
- });
-
- /**
- * @fileOverview 文件队列
- */
- define('queue',[
- 'base',
- 'mediator',
- 'file'
- ], function( Base, Mediator, WUFile ) {
-
- var $ = Base.$,
- STATUS = WUFile.Status;
-
- /**
- * 文件队列, 用来存储各个状态中的文件。
- * @class Queue
- * @extends Mediator
- */
- function Queue() {
-
- /**
- * 统计文件数。
- * * `numOfQueue` 队列中的文件数。
- * * `numOfSuccess` 上传成功的文件数
- * * `numOfCancel` 被取消的文件数
- * * `numOfProgress` 正在上传中的文件数
- * * `numOfUploadFailed` 上传错误的文件数。
- * * `numOfInvalid` 无效的文件数。
- * * `numOfDeleted` 被移除的文件数。
- * * `numOfInterrupt` 被中断的文件数。
- * @property {Object} stats
- */
- this.stats = {
- numOfQueue: 0,
- numOfSuccess: 0,
- numOfCancel: 0,
- numOfProgress: 0,
- numOfUploadFailed: 0,
- numOfInvalid: 0,
- numOfDeleted: 0,
- numOfInterrupt: 0
- };
-
- // 上传队列,仅包括等待上传的文件
- this._queue = [];
-
- // 存储所有文件
- this._map = {};
- }
-
- $.extend( Queue.prototype, {
-
- /**
- * 将新文件加入对队列尾部
- *
- * @method append
- * @param {File} file 文件对象
- */
- append: function( file ) {
- this._queue.push( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 将新文件加入对队列头部
- *
- * @method prepend
- * @param {File} file 文件对象
- */
- prepend: function( file ) {
- this._queue.unshift( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 获取文件对象
- *
- * @method getFile
- * @param {String} fileId 文件ID
- * @return {File}
- */
- getFile: function( fileId ) {
- if ( typeof fileId !== 'string' ) {
- return fileId;
- }
- return this._map[ fileId ];
- },
-
- /**
- * 从队列中取出一个指定状态的文件。
- * @grammar fetch( status ) => File
- * @method fetch
- * @param {String} status [文件状态值](#WebUploader:File:File.Status)
- * @return {File} [File](#WebUploader:File)
- */
- fetch: function( status ) {
- var len = this._queue.length,
- i, file;
-
- status = status || STATUS.QUEUED;
-
- for ( i = 0; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( status === file.getStatus() ) {
- return file;
- }
- }
-
- return null;
- },
-
- /**
- * 对队列进行排序,能够控制文件上传顺序。
- * @grammar sort( fn ) => undefined
- * @method sort
- * @param {Function} fn 排序方法
- */
- sort: function( fn ) {
- if ( typeof fn === 'function' ) {
- this._queue.sort( fn );
- }
- },
-
- /**
- * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
- * @grammar getFiles( [status1[, status2 ...]] ) => Array
- * @method getFiles
- * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
- */
- getFiles: function() {
- var sts = [].slice.call( arguments, 0 ),
- ret = [],
- i = 0,
- len = this._queue.length,
- file;
-
- for ( ; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
- continue;
- }
-
- ret.push( file );
- }
-
- return ret;
- },
-
- /**
- * 在队列中删除文件。
- * @grammar removeFile( file ) => Array
- * @method removeFile
- * @param {File} 文件对象。
- */
- removeFile: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( existing ) {
- delete this._map[ file.id ];
- this._delFile(file);
- file.destroy();
- this.stats.numOfDeleted++;
-
- }
- },
-
- _fileAdded: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( !existing ) {
- this._map[ file.id ] = file;
-
- file.on( 'statuschange', function( cur, pre ) {
- me._onFileStatusChange( cur, pre );
- });
- }
- },
-
- _delFile : function(file){
- for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
- if(this._queue[i] == file){
- this._queue.splice(i,1);
- break;
- }
- }
- },
-
- _onFileStatusChange: function( curStatus, preStatus ) {
- var stats = this.stats;
-
- switch ( preStatus ) {
- case STATUS.PROGRESS:
- stats.numOfProgress--;
- break;
-
- case STATUS.QUEUED:
- stats.numOfQueue --;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed--;
- break;
-
- case STATUS.INVALID:
- stats.numOfInvalid--;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt--;
- break;
- }
-
- switch ( curStatus ) {
- case STATUS.QUEUED:
- stats.numOfQueue++;
- break;
-
- case STATUS.PROGRESS:
- stats.numOfProgress++;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed++;
- break;
-
- case STATUS.COMPLETE:
- stats.numOfSuccess++;
- break;
-
- case STATUS.CANCELLED:
- stats.numOfCancel++;
- break;
-
-
- case STATUS.INVALID:
- stats.numOfInvalid++;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt++;
- break;
- }
- }
-
- });
-
- Mediator.installTo( Queue.prototype );
-
- return Queue;
- });
-
- /**
- * @fileOverview 队列
- */
- define('widgets/queue',[
- 'base',
- 'uploader',
- 'queue',
- 'file',
- 'lib/file',
- 'runtime/client',
- 'widgets/widget'
- ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
-
- var $ = Base.$,
- rExt = /\.\w+$/,
- Status = WUFile.Status;
-
- return Uploader.register({
- name: 'queue',
-
- init: function( opts ) {
- var me = this,
- deferred, len, i, item, arr, accept, runtime;
-
- if ( $.isPlainObject( opts.accept ) ) {
- opts.accept = [ opts.accept ];
- }
-
- // accept中的中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
-
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].extensions;
- item && arr.push( item );
- }
-
- if ( arr.length ) {
- accept = '\\.' + arr.join(',')
- .replace( /,/g, '$|\\.' )
- .replace( /\*/g, '.*' ) + '$';
- }
-
- me.accept = new RegExp( accept, 'i' );
- }
-
- me.queue = new Queue();
- me.stats = me.queue.stats;
-
- // 如果当前不是html5运行时,那就算了。
- // 不执行后续操作
- if ( this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- // 创建一个 html5 运行时的 placeholder
- // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
- deferred = Base.Deferred();
- this.placeholder = runtime = new RuntimeClient('Placeholder');
- runtime.connectRuntime({
- runtimeOrder: 'html5'
- }, function() {
- me._ruid = runtime.getRuid();
- deferred.resolve();
- });
- return deferred.promise();
- },
-
-
- // 为了支持外部直接添加一个原生File对象。
- _wrapFile: function( file ) {
- if ( !(file instanceof WUFile) ) {
-
- if ( !(file instanceof File) ) {
- if ( !this._ruid ) {
- throw new Error('Can\'t add external files.');
- }
- file = new File( this._ruid, file );
- }
-
- file = new WUFile( file );
- }
-
- return file;
- },
-
- // 判断文件是否可以被加入队列
- acceptFile: function( file ) {
- var invalid = !file || !file.size || this.accept &&
-
- // 如果名字中有后缀,才做后缀白名单处理。
- rExt.exec( file.name ) && !this.accept.test( file.name );
-
- return !invalid;
- },
-
-
- /**
- * @event beforeFileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
- * @for Uploader
- */
-
- /**
- * @event fileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列以后触发。
- * @for Uploader
- */
-
- _addFile: function( file ) {
- var me = this;
-
- file = me._wrapFile( file );
-
- // 不过类型判断允许不允许,先派送 `beforeFileQueued`
- if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
- return;
- }
-
- // 类型不匹配,则派送错误事件,并返回。
- if ( !me.acceptFile( file ) ) {
- me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
- return;
- }
-
- me.queue.append( file );
- me.owner.trigger( 'fileQueued', file );
- return file;
- },
-
- getFile: function( fileId ) {
- return this.queue.getFile( fileId );
- },
-
- /**
- * @event filesQueued
- * @param {File} files 数组,内容为原始File(lib/File)对象。
- * @description 当一批文件添加进队列以后触发。
- * @for Uploader
- */
-
- /**
- * @property {Boolean} [auto=false]
- * @namespace options
- * @for Uploader
- * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
- *
- */
-
- /**
- * @method addFiles
- * @grammar addFiles( file ) => undefined
- * @grammar addFiles( [file1, file2 ...] ) => undefined
- * @param {Array of File or File} [files] Files 对象 数组
- * @description 添加文件到队列
- * @for Uploader
- */
- addFile: function( files ) {
- var me = this;
-
- if ( !files.length ) {
- files = [ files ];
- }
-
- files = $.map( files, function( file ) {
- return me._addFile( file );
- });
-
- if ( files.length ) {
-
- me.owner.trigger( 'filesQueued', files );
-
- if ( me.options.auto ) {
- setTimeout(function() {
- me.request('start-upload');
- }, 20 );
- }
- }
- },
-
- getStats: function() {
- return this.stats;
- },
-
- /**
- * @event fileDequeued
- * @param {File} file File对象
- * @description 当文件被移除队列后触发。
- * @for Uploader
- */
-
- /**
- * @method removeFile
- * @grammar removeFile( file ) => undefined
- * @grammar removeFile( id ) => undefined
- * @grammar removeFile( file, true ) => undefined
- * @grammar removeFile( id, true ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.removeFile( file );
- * })
- */
- removeFile: function( file, remove ) {
- var me = this;
-
- file = file.id ? file : me.queue.getFile( file );
-
- this.request( 'cancel-file', file );
-
- if ( remove ) {
- this.queue.removeFile( file );
- }
- },
-
- /**
- * @method getFiles
- * @grammar getFiles() => Array
- * @grammar getFiles( status1, status2, status... ) => Array
- * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
- * @for Uploader
- * @example
- * console.log( uploader.getFiles() ); // => all files
- * console.log( uploader.getFiles('error') ) // => all error files.
- */
- getFiles: function() {
- return this.queue.getFiles.apply( this.queue, arguments );
- },
-
- fetchFile: function() {
- return this.queue.fetch.apply( this.queue, arguments );
- },
-
- /**
- * @method retry
- * @grammar retry() => undefined
- * @grammar retry( file ) => undefined
- * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
- * @for Uploader
- * @example
- * function retry() {
- * uploader.retry();
- * }
- */
- retry: function( file, noForceStart ) {
- var me = this,
- files, i, len;
-
- if ( file ) {
- file = file.id ? file : me.queue.getFile( file );
- file.setStatus( Status.QUEUED );
- noForceStart || me.request('start-upload');
- return;
- }
-
- files = me.queue.getFiles( Status.ERROR );
- i = 0;
- len = files.length;
-
- for ( ; i < len; i++ ) {
- file = files[ i ];
- file.setStatus( Status.QUEUED );
- }
-
- me.request('start-upload');
- },
-
- /**
- * @method sort
- * @grammar sort( fn ) => undefined
- * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
- * @for Uploader
- */
- sortFiles: function() {
- return this.queue.sort.apply( this.queue, arguments );
- },
-
- /**
- * @event reset
- * @description 当 uploader 被重置的时候触发。
- * @for Uploader
- */
-
- /**
- * @method reset
- * @grammar reset() => undefined
- * @description 重置uploader。目前只重置了队列。
- * @for Uploader
- * @example
- * uploader.reset();
- */
- reset: function() {
- this.owner.trigger('reset');
- this.queue = new Queue();
- this.stats = this.queue.stats;
- },
-
- destroy: function() {
- this.reset();
- this.placeholder && this.placeholder.destroy();
- }
- });
-
- });
- /**
- * @fileOverview 添加获取Runtime相关信息的方法。
- */
- define('widgets/runtime',[
- 'uploader',
- 'runtime/runtime',
- 'widgets/widget'
- ], function( Uploader, Runtime ) {
-
- Uploader.support = function() {
- return Runtime.hasRuntime.apply( Runtime, arguments );
- };
-
- /**
- * @property {Object} [runtimeOrder=html5,flash]
- * @namespace options
- * @for Uploader
- * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
- *
- * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
- */
-
- return Uploader.register({
- name: 'runtime',
-
- init: function() {
- if ( !this.predictRuntimeType() ) {
- throw Error('Runtime Error');
- }
- },
-
- /**
- * 预测Uploader将采用哪个`Runtime`
- * @grammar predictRuntimeType() => String
- * @method predictRuntimeType
- * @for Uploader
- */
- predictRuntimeType: function() {
- var orders = this.options.runtimeOrder || Runtime.orders,
- type = this.type,
- i, len;
-
- if ( !type ) {
- orders = orders.split( /\s*,\s*/g );
-
- for ( i = 0, len = orders.length; i < len; i++ ) {
- if ( Runtime.hasRuntime( orders[ i ] ) ) {
- this.type = type = orders[ i ];
- break;
- }
- }
- }
-
- return type;
- }
- });
- });
- /**
- * @fileOverview Transport
- */
- define('lib/transport',[
- 'base',
- 'runtime/client',
- 'mediator'
- ], function( Base, RuntimeClient, Mediator ) {
-
- var $ = Base.$;
-
- function Transport( opts ) {
- var me = this;
-
- opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
- RuntimeClient.call( this, 'Transport' );
-
- this._blob = null;
- this._formData = opts.formData || {};
- this._headers = opts.headers || {};
-
- this.on( 'progress', this._timeout );
- this.on( 'load error', function() {
- me.trigger( 'progress', 1 );
- clearTimeout( me._timer );
- });
- }
-
- Transport.options = {
- server: '',
- method: 'POST',
-
- // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
- withCredentials: false,
- fileVal: 'file',
- timeout: 2 * 60 * 1000, // 2分钟
- formData: {},
- headers: {},
- sendAsBinary: false
- };
-
- $.extend( Transport.prototype, {
-
- // 添加Blob, 只能添加一次,最后一次有效。
- appendBlob: function( key, blob, filename ) {
- var me = this,
- opts = me.options;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- });
-
- me._blob = blob;
- opts.fileVal = key || opts.fileVal;
- opts.filename = filename || opts.filename;
- },
-
- // 添加其他字段
- append: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._formData, key );
- } else {
- this._formData[ key ] = value;
- }
- },
-
- setRequestHeader: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._headers, key );
- } else {
- this._headers[ key ] = value;
- }
- },
-
- send: function( method ) {
- this.exec( 'send', method );
- this._timeout();
- },
-
- abort: function() {
- clearTimeout( this._timer );
- return this.exec('abort');
- },
-
- destroy: function() {
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- },
-
- getResponseHeaders: function() {
- return this.exec('getResponseHeaders');
- },
-
- getResponse: function() {
- return this.exec('getResponse');
- },
-
- getResponseAsJson: function() {
- return this.exec('getResponseAsJson');
- },
-
- getStatus: function() {
- return this.exec('getStatus');
- },
-
- _timeout: function() {
- var me = this,
- duration = me.options.timeout;
-
- if ( !duration ) {
- return;
- }
-
- clearTimeout( me._timer );
- me._timer = setTimeout(function() {
- me.abort();
- me.trigger( 'error', 'timeout' );
- }, duration );
- }
-
- });
-
- // 让Transport具备事件功能。
- Mediator.installTo( Transport.prototype );
-
- return Transport;
- });
-
- /**
- * @fileOverview 负责文件上传相关。
- */
- define('widgets/upload',[
- 'base',
- 'uploader',
- 'file',
- 'lib/transport',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile, Transport ) {
-
- var $ = Base.$,
- isPromise = Base.isPromise,
- Status = WUFile.Status;
-
- // 添加默认配置项
- $.extend( Uploader.options, {
-
-
- /**
- * @property {Boolean} [prepareNextFile=false]
- * @namespace options
- * @for Uploader
- * @description 是否允许在文件传输时提前把下一个文件准备好。
- * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
- * 如果能提前在当前文件传输期处理,可以节省总体耗时。
- */
- prepareNextFile: false,
-
- /**
- * @property {Boolean} [chunked=false]
- * @namespace options
- * @for Uploader
- * @description 是否要分片处理大文件上传。
- */
- chunked: false,
-
- /**
- * @property {Boolean} [chunkSize=5242880]
- * @namespace options
- * @for Uploader
- * @description 如果要分片,分多大一片? 默认大小为5M.
- */
- chunkSize: 5 * 1024 * 1024,
-
- /**
- * @property {Boolean} [chunkRetry=2]
- * @namespace options
- * @for Uploader
- * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
- */
- chunkRetry: 2,
-
- /**
- * @property {Number} [chunkRetryDelay=1000]
- * @namespace options
- * @for Uploader
- * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
- */
- chunkRetryDelay: 1000,
-
- /**
- * @property {Boolean} [threads=3]
- * @namespace options
- * @for Uploader
- * @description 上传并发数。允许同时最大上传进程数。
- */
- threads: 3,
-
-
- /**
- * @property {Object} [formData={}]
- * @namespace options
- * @for Uploader
- * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
- */
- formData: {}
-
- /**
- * @property {Object} [fileVal='file']
- * @namespace options
- * @for Uploader
- * @description 设置文件上传域的name。
- */
-
- /**
- * @property {Object} [method=POST]
- * @namespace options
- * @for Uploader
- * @description 文件上传方式,`POST` 或者 `GET`。
- */
-
- /**
- * @property {Object} [sendAsBinary=false]
- * @namespace options
- * @for Uploader
- * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
- * 其他参数在$_GET数组中。
- */
- });
-
- // 负责将文件切片。
- function CuteFile( file, chunkSize ) {
- var pending = [],
- blob = file.source,
- total = blob.size,
- chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
- start = 0,
- index = 0,
- len, api;
-
- api = {
- file: file,
-
- has: function() {
- return !!pending.length;
- },
-
- shift: function() {
- return pending.shift();
- },
-
- unshift: function( block ) {
- pending.unshift( block );
- }
- };
-
- while ( index < chunks ) {
- len = Math.min( chunkSize, total - start );
-
- pending.push({
- file: file,
- start: start,
- end: chunkSize ? (start + len) : total,
- total: total,
- chunks: chunks,
- chunk: index++,
- cuted: api
- });
- start += len;
- }
-
- file.blocks = pending.concat();
- file.remaning = pending.length;
-
- return api;
- }
-
- Uploader.register({
- name: 'upload',
-
- init: function() {
- var owner = this.owner,
- me = this;
-
- this.runing = false;
- this.progress = false;
-
- owner
- .on( 'startUpload', function() {
- me.progress = true;
- })
- .on( 'uploadFinished', function() {
- me.progress = false;
- });
-
- // 记录当前正在传的数据,跟threads相关
- this.pool = [];
-
- // 缓存分好片的文件。
- this.stack = [];
-
- // 缓存即将上传的文件。
- this.pending = [];
-
- // 跟踪还有多少分片在上传中但是没有完成上传。
- this.remaning = 0;
- this.__tick = Base.bindFn( this._tick, this );
-
- // 销毁上传相关的属性。
- owner.on( 'uploadComplete', function( file ) {
-
- // 把其他块取消了。
- file.blocks && $.each( file.blocks, function( _, v ) {
- v.transport && (v.transport.abort(), v.transport.destroy());
- delete v.transport;
- });
-
- delete file.blocks;
- delete file.remaning;
- });
- },
-
- reset: function() {
- this.request( 'stop-upload', true );
- this.runing = false;
- this.pool = [];
- this.stack = [];
- this.pending = [];
- this.remaning = 0;
- this._trigged = false;
- this._promise = null;
- },
-
- /**
- * @event startUpload
- * @description 当开始上传流程时触发。
- * @for Uploader
- */
-
- /**
- * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
- *
- * 可以指定开始某一个文件。
- * @grammar upload() => undefined
- * @grammar upload( file | fileId) => undefined
- * @method upload
- * @for Uploader
- */
- startUpload: function(file) {
- var me = this;
-
- // 移出invalid的文件
- $.each( me.request( 'get-files', Status.INVALID ), function() {
- me.request( 'remove-file', this );
- });
-
- // 如果指定了开始某个文件,则只开始指定的文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if (file.getStatus() === Status.INTERRUPT) {
- file.setStatus( Status.QUEUED );
-
- $.each( me.pool, function( _, v ) {
-
- // 之前暂停过。
- if (v.file !== file) {
- return;
- }
-
- v.transport && v.transport.send();
- file.setStatus( Status.PROGRESS );
- });
-
-
- } else if (file.getStatus() !== Status.PROGRESS) {
- file.setStatus( Status.QUEUED );
- }
- } else {
- $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
- this.setStatus( Status.QUEUED );
- });
- }
-
- if ( me.runing ) {
- me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
- return Base.nextTick( me.__tick );
- }
-
- me.runing = true;
- var files = [];
-
- // 如果有暂停的,则续传
- file || $.each( me.pool, function( _, v ) {
- var file = v.file;
-
- if ( file.getStatus() === Status.INTERRUPT ) {
- me._trigged = false;
- files.push(file);
-
- if (v.waiting) {
- return;
- }
-
- // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
- v.transport ? v.transport.send() : me._doSend(v);
- }
- });
-
- $.each(files, function() {
- this.setStatus( Status.PROGRESS );
- });
-
- file || $.each( me.request( 'get-files',
- Status.INTERRUPT ), function() {
- this.setStatus( Status.PROGRESS );
- });
-
- me._trigged = false;
- Base.nextTick( me.__tick );
- me.owner.trigger('startUpload');
- },
-
- /**
- * @event stopUpload
- * @description 当开始上传流程暂停时触发。
- * @for Uploader
- */
-
- /**
- * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
- *
- * 如果第一个参数是文件,则只暂停指定文件。
- * @grammar stop() => undefined
- * @grammar stop( true ) => undefined
- * @grammar stop( file ) => undefined
- * @method stop
- * @for Uploader
- */
- stopUpload: function( file, interrupt ) {
- var me = this;
-
- if (file === true) {
- interrupt = file;
- file = null;
- }
-
- if ( me.runing === false ) {
- return;
- }
-
- // 如果只是暂停某个文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if ( file.getStatus() !== Status.PROGRESS &&
- file.getStatus() !== Status.QUEUED ) {
- return;
- }
-
- file.setStatus( Status.INTERRUPT );
-
-
- $.each( me.pool, function( _, v ) {
-
- // 只 abort 指定的文件,每一个分片。
- if (v.file === file) {
- v.transport && v.transport.abort();
-
- if (interrupt) {
- me._putback(v);
- me._popBlock(v);
- }
- }
- });
-
- me.owner.trigger('stopUpload', file);// 暂停,trigger event
-
- return Base.nextTick( me.__tick );
- }
-
- me.runing = false;
-
- // 正在准备中的文件。
- if (this._promise && this._promise.file) {
- this._promise.file.setStatus( Status.INTERRUPT );
- }
-
- interrupt && $.each( me.pool, function( _, v ) {
- v.transport && v.transport.abort();
- v.file.setStatus( Status.INTERRUPT );
- });
-
- me.owner.trigger('stopUpload');
- },
-
- /**
- * @method cancelFile
- * @grammar cancelFile( file ) => undefined
- * @grammar cancelFile( id ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 标记文件状态为已取消, 同时将中断文件传输。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.cancelFile( file );
- * })
- */
- cancelFile: function( file ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- file.setStatus( Status.CANCELLED );
- this.owner.trigger( 'fileDequeued', file );
- },
-
- /**
- * 判断`Uploader`是否正在上传中。
- * @grammar isInProgress() => Boolean
- * @method isInProgress
- * @for Uploader
- */
- isInProgress: function() {
- return !!this.progress;
- },
-
- _getStats: function() {
- return this.request('get-stats');
- },
-
- /**
- * 跳过一个文件上传,直接标记指定文件为已上传状态。
- * @grammar skipFile( file ) => undefined
- * @method skipFile
- * @for Uploader
- */
- skipFile: function( file, status ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- file.setStatus( status || Status.COMPLETE );
- file.skipped = true;
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- this.owner.trigger( 'uploadSkip', file );
- },
-
- /**
- * @event uploadFinished
- * @description 当所有文件上传结束时触发。
- * @for Uploader
- */
- _tick: function() {
- var me = this,
- opts = me.options,
- fn, val;
-
- // 上一个promise还没有结束,则等待完成后再执行。
- if ( me._promise ) {
- return me._promise.always( me.__tick );
- }
-
- // 还有位置,且还有文件要处理的话。
- if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
- me._trigged = false;
-
- fn = function( val ) {
- me._promise = null;
-
- // 有可能是reject过来的,所以要检测val的类型。
- val && val.file && me._startSend( val );
- Base.nextTick( me.__tick );
- };
-
- me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
-
- // 没有要上传的了,且没有正在传输的了。
- } else if ( !me.remaning && !me._getStats().numOfQueue &&
- !me._getStats().numOfInterrupt ) {
- me.runing = false;
-
- me._trigged || Base.nextTick(function() {
- me.owner.trigger('uploadFinished');
- });
- me._trigged = true;
- }
- },
-
- _putback: function(block) {
- var idx;
-
- block.cuted.unshift(block);
- idx = this.stack.indexOf(block.cuted);
-
- if (!~idx) {
- // 如果不在里面,说明移除过,需要把计数还原回去。
- this.remaning++;
- block.file.remaning++;
- this.stack.unshift(block.cuted);
- }
- },
-
- _getStack: function() {
- var i = 0,
- act;
-
- while ( (act = this.stack[ i++ ]) ) {
- if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
- return act;
- } else if (!act.has() ||
- act.file.getStatus() !== Status.PROGRESS &&
- act.file.getStatus() !== Status.INTERRUPT ) {
-
- // 把已经处理完了的,或者,状态为非 progress(上传中)、
- // interupt(暂停中) 的移除。
- this.stack.splice( --i, 1 );
- }
- }
-
- return null;
- },
-
- _nextBlock: function() {
- var me = this,
- opts = me.options,
- act, next, done, preparing;
-
- // 如果当前文件还有没有需要传输的,则直接返回剩下的。
- if ( (act = this._getStack()) ) {
-
- // 是否提前准备下一个文件
- if ( opts.prepareNextFile && !me.pending.length ) {
- me._prepareNextFile();
- }
-
- return act.shift();
-
- // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
- } else if ( me.runing ) {
-
- // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
- if ( !me.pending.length && me._getStats().numOfQueue ) {
- me._prepareNextFile();
- }
-
- next = me.pending.shift();
- done = function( file ) {
- if ( !file ) {
- return null;
- }
-
- act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
- me.stack.push(act);
- return act.shift();
- };
-
- // 文件可能还在prepare中,也有可能已经完全准备好了。
- if ( isPromise( next) ) {
- preparing = next.file;
- next = next[ next.pipe ? 'pipe' : 'then' ]( done );
- next.file = preparing;
- return next;
- }
-
- return done( next );
- }
- },
-
-
- /**
- * @event uploadStart
- * @param {File} file File对象
- * @description 某个文件开始上传前触发,一个文件只会触发一次。
- * @for Uploader
- */
- _prepareNextFile: function() {
- var me = this,
- file = me.request('fetch-file'),
- pending = me.pending,
- promise;
-
- if ( file ) {
- promise = me.request( 'before-send-file', file, function() {
-
- // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
- if ( file.getStatus() === Status.PROGRESS ||
- file.getStatus() === Status.INTERRUPT ) {
- return file;
- }
-
- return me._finishFile( file );
- });
-
- me.owner.trigger( 'uploadStart', file );
- file.setStatus( Status.PROGRESS );
-
- promise.file = file;
-
- // 如果还在pending中,则替换成文件本身。
- promise.done(function() {
- var idx = $.inArray( promise, pending );
-
- ~idx && pending.splice( idx, 1, file );
- });
-
- // befeore-send-file的钩子就有错误发生。
- promise.fail(function( reason ) {
- file.setStatus( Status.ERROR, reason );
- me.owner.trigger( 'uploadError', file, reason );
- me.owner.trigger( 'uploadComplete', file );
- });
-
- pending.push( promise );
- }
- },
-
- // 让出位置了,可以让其他分片开始上传
- _popBlock: function( block ) {
- var idx = $.inArray( block, this.pool );
-
- this.pool.splice( idx, 1 );
- block.file.remaning--;
- this.remaning--;
- },
-
- // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
- _startSend: function( block ) {
- var me = this,
- file = block.file,
- promise;
-
- // 有可能在 before-send-file 的 promise 期间改变了文件状态。
- // 如:暂停,取消
- // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
- if ( file.getStatus() !== Status.PROGRESS ) {
-
- // 如果是中断,则还需要放回去。
- if (file.getStatus() === Status.INTERRUPT) {
- me._putback(block);
- }
-
- return;
- }
-
- me.pool.push( block );
- me.remaning++;
-
- // 如果没有分片,则直接使用原始的。
- // 不会丢失content-type信息。
- block.blob = block.chunks === 1 ? file.source :
- file.source.slice( block.start, block.end );
-
- // hook, 每个分片发送之前可能要做些异步的事情。
- block.waiting = promise = me.request( 'before-send', block, function() {
- delete block.waiting;
-
- // 有可能文件已经上传出错了,所以不需要再传输了。
- if ( file.getStatus() === Status.PROGRESS ) {
- me._doSend( block );
- } else if (block.file.getStatus() !== Status.INTERRUPT) {
- me._popBlock(block);
- }
-
- Base.nextTick(me.__tick);
- });
-
- // 如果为fail了,则跳过此分片。
- promise.fail(function() {
- delete block.waiting;
-
- if ( file.remaning === 1 ) {
- me._finishFile( file ).always(function() {
- block.percentage = 1;
- me._popBlock( block );
- me.owner.trigger( 'uploadComplete', file );
- Base.nextTick( me.__tick );
- });
- } else {
- block.percentage = 1;
- me.updateFileProgress( file );
- me._popBlock( block );
- Base.nextTick( me.__tick );
- }
- });
- },
-
-
- /**
- * @event uploadBeforeSend
- * @param {Object} object
- * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
- * @param {Object} headers 可以扩展此对象来控制上传头部。
- * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
- * @for Uploader
- */
-
- /**
- * @event uploadAccept
- * @param {Object} object
- * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
- * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
- * @for Uploader
- */
-
- /**
- * @event uploadProgress
- * @param {File} file File对象
- * @param {Number} percentage 上传进度
- * @description 上传过程中触发,携带上传进度。
- * @for Uploader
- */
-
-
- /**
- * @event uploadError
- * @param {File} file File对象
- * @param {String} reason 出错的code
- * @description 当文件上传出错时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadSuccess
- * @param {File} file File对象
- * @param {Object} response 服务端返回的数据
- * @description 当文件上传成功时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadComplete
- * @param {File} [file] File对象
- * @description 不管成功或者失败,文件上传完成时触发。
- * @for Uploader
- */
-
- // 做上传操作。
- _doSend: function( block ) {
- var me = this,
- owner = me.owner,
- opts = $.extend({}, me.options, block.options),
- file = block.file,
- tr = new Transport( opts ),
- data = $.extend({}, opts.formData ),
- headers = $.extend({}, opts.headers ),
- requestAccept, ret;
-
- block.transport = tr;
-
- tr.on( 'destroy', function() {
- delete block.transport;
- me._popBlock( block );
- Base.nextTick( me.__tick );
- });
-
- // 广播上传进度。以文件为单位。
- tr.on( 'progress', function( percentage ) {
- block.percentage = percentage;
- me.updateFileProgress( file );
- });
-
- // 用来询问,是否返回的结果是有错误的。
- requestAccept = function( reject ) {
- var fn;
-
- ret = tr.getResponseAsJson() || {};
- ret._raw = tr.getResponse();
- ret._headers = tr.getResponseHeaders();
- block.response = ret;
- fn = function( value ) {
- reject = value;
- };
-
- // 服务端响应了,不代表成功了,询问是否响应正确。
- if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
- reject = reject || 'server';
- }
-
- return reject;
- };
-
- // 尝试重试,然后广播文件上传出错。
- tr.on( 'error', function( type, flag ) {
- // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
- // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
- var typeArr = type.split( '|' ), status, statusText;
- type = typeArr[0];
- status = parseFloat( typeArr[1] ),
- statusText = typeArr[2];
-
- block.retried = block.retried || 0;
-
- // 自动重试
- if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
- block.retried < opts.chunkRetry ) {
-
- block.retried++;
-
- me.retryTimer = setTimeout(function() {
- tr.send();
- }, opts.chunkRetryDelay || 1000);
-
- } else {
-
- // http status 500 ~ 600
- if ( !flag && type === 'server' ) {
- type = requestAccept( type );
- }
-
- file.setStatus( Status.ERROR, type );
- owner.trigger( 'uploadError', file, type, status, statusText );
- owner.trigger( 'uploadComplete', file );
- }
- });
-
- // 上传成功
- tr.on( 'load', function() {
- var reason;
-
- // 如果非预期,转向上传出错。
- if ( (reason = requestAccept()) ) {
- tr.trigger( 'error', reason, true );
- return;
- }
-
- // 全部上传完成。
- if ( file.remaning === 1 ) {
- me._finishFile( file, ret );
- } else {
- tr.destroy();
- }
- });
-
- // 配置默认的上传字段。
- data = $.extend( data, {
- id: file.id,
- name: file.name,
- type: file.type,
- lastModifiedDate: file.lastModifiedDate,
- size: file.size
- });
-
- block.chunks > 1 && $.extend( data, {
- chunks: block.chunks,
- chunk: block.chunk
- });
-
- // 在发送之间可以添加字段什么的。。。
- // 如果默认的字段不够使用,可以通过监听此事件来扩展
- owner.trigger( 'uploadBeforeSend', block, data, headers );
-
- // 开始发送。
- tr.appendBlob( opts.fileVal, block.blob, file.name );
- tr.append( data );
- tr.setRequestHeader( headers );
- tr.send();
- },
-
- // 完成上传。
- _finishFile: function( file, ret, hds ) {
- var owner = this.owner;
-
- return owner
- .request( 'after-send-file', arguments, function() {
- file.setStatus( Status.COMPLETE );
- owner.trigger( 'uploadSuccess', file, ret, hds );
- })
- .fail(function( reason ) {
-
- // 如果外部已经标记为invalid什么的,不再改状态。
- if ( file.getStatus() === Status.PROGRESS ) {
- file.setStatus( Status.ERROR, reason );
- }
-
- owner.trigger( 'uploadError', file, reason );
- })
- .always(function() {
- owner.trigger( 'uploadComplete', file );
- });
- },
-
- updateFileProgress: function(file) {
- var totalPercent = 0,
- uploaded = 0;
-
- if (!file.blocks) {
- return;
- }
-
- $.each( file.blocks, function( _, v ) {
- uploaded += (v.percentage || 0) * (v.end - v.start);
- });
-
- totalPercent = uploaded / file.size;
- this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
- },
-
- destroy: function() {
- clearTimeout(this.retryTimer);
- }
-
- });
- });
-
- /**
- * @fileOverview 日志组件,主要用来收集错误信息,可以帮助 webuploader 更好的定位问题和发展。
- *
- * 如果您不想要启用此功能,请在打包的时候去掉 log 模块。
- *
- * 或者可以在初始化的时候通过 options.disableWidgets 属性禁用。
- *
- * 如:
- * WebUploader.create({
- * ...
- *
- * disableWidgets: 'log',
- *
- * ...
- * })
- */
- define('widgets/log',[
- 'base',
- 'uploader',
- 'widgets/widget'
- ], function( Base, Uploader ) {
- var $ = Base.$,
- logUrl = ' http://static.tieba.baidu.com/tb/pms/img/st.gif??',
- product = (location.hostname || location.host || 'protected').toLowerCase(),
-
- // 只针对 baidu 内部产品用户做统计功能。
- enable = product && /baidu/i.exec(product),
- base;
-
- if (!enable) {
- return;
- }
-
- base = {
- dv: 3,
- master: 'webuploader',
- online: /test/.exec(product) ? 0 : 1,
- module: '',
- product: product,
- type: 0
- };
-
- function send(data) {
- var obj = $.extend({}, base, data),
- url = logUrl.replace(/^(.*)\?/, '$1' + $.param( obj )),
- image = new Image();
-
- image.src = url;
- }
-
- return Uploader.register({
- name: 'log',
-
- init: function() {
- var owner = this.owner,
- count = 0,
- size = 0;
-
- owner
- .on('error', function(code) {
- send({
- type: 2,
- c_error_code: code
- });
- })
- .on('uploadError', function(file, reason) {
- send({
- type: 2,
- c_error_code: 'UPLOAD_ERROR',
- c_reason: '' + reason
- });
- })
- .on('uploadComplete', function(file) {
- count++;
- size += file.size;
- }).
- on('uploadFinished', function() {
- send({
- c_count: count,
- c_size: size
- });
- count = size = 0;
- });
-
- send({
- c_usage: 1
- });
- }
- });
- });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/compbase',[],function() {
-
- function CompBase( owner, runtime ) {
-
- this.owner = owner;
- this.options = owner.options;
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.getRuid = function() {
- return runtime.uid;
- };
-
- this.trigger = function() {
- return owner.trigger.apply( owner, arguments );
- };
- }
-
- return CompBase;
- });
- /**
- * @fileOverview Html5Runtime
- */
- define('runtime/html5/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var type = 'html5',
- components = {};
-
- function Html5Runtime() {
- var pool = {},
- me = this,
- destroy = this.destroy;
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- if ( components[ comp ] ) {
- instance = pool[ uid ] = pool[ uid ] ||
- new components[ comp ]( client, me );
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
- };
-
- me.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
- }
-
- Base.inherits( Runtime, {
- constructor: Html5Runtime,
-
- // 不需要连接其他程序,直接执行callback
- init: function() {
- var me = this;
- setTimeout(function() {
- me.trigger('ready');
- }, 1 );
- }
-
- });
-
- // 注册Components
- Html5Runtime.register = function( name, component ) {
- var klass = components[ name ] = Base.inherits( CompBase, component );
- return klass;
- };
-
- // 注册html5运行时。
- // 只有在支持的前提下注册。
- if ( window.Blob && window.FileReader && window.DataView ) {
- Runtime.addRuntime( type, Html5Runtime );
- }
-
- return Html5Runtime;
- });
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/html5/blob',[
- 'runtime/html5/runtime',
- 'lib/blob'
- ], function( Html5Runtime, Blob ) {
-
- return Html5Runtime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.owner.source,
- slice = blob.slice || blob.webkitSlice || blob.mozSlice;
-
- blob = slice.call( blob, start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
- });
- /**
- * @fileOverview FilePicker
- */
- define('runtime/html5/filepicker',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
-
- var $ = Base.$;
-
- return Html5Runtime.register( 'FilePicker', {
- init: function() {
- var container = this.getRuntime().getContainer(),
- me = this,
- owner = me.owner,
- opts = me.options,
- label = this.label = $( document.createElement('label') ),
- input = this.input = $( document.createElement('input') ),
- arr, i, len, mouseHandler, changeHandler;
-
- input.attr( 'type', 'file' );
- input.attr( 'capture', 'camera');
- input.attr( 'name', opts.name );
- input.addClass('webuploader-element-invisible');
-
- label.on( 'click', function(e) {
- input.trigger('click');
- e.stopPropagation();
- owner.trigger('dialogopen');
- });
-
- label.css({
- opacity: 0,
- width: '100%',
- height: '100%',
- display: 'block',
- cursor: 'pointer',
- background: '#ffffff'
- });
-
- if ( opts.multiple ) {
- input.attr( 'multiple', 'multiple' );
- }
-
- // @todo Firefox不支持单独指定后缀
- if ( opts.accept && opts.accept.length > 0 ) {
- arr = [];
-
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- arr.push( opts.accept[ i ].mimeTypes );
- }
-
- input.attr( 'accept', arr.join(',') );
- }
-
- container.append( input );
- container.append( label );
-
- mouseHandler = function( e ) {
- owner.trigger( e.type );
- };
-
- changeHandler = function( e ) {
- var clone;
-
- // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
- if (e.target.files.length === 0){
- return false;
- }
-
- // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
- me.files = e.target.files;
-
-
- // reset input
- clone = this.cloneNode( true );
- clone.value = null;
- this.parentNode.replaceChild( clone, this );
-
- input.off();
- input = $( clone ).on( 'change', changeHandler )
- .on( 'mouseenter mouseleave', mouseHandler );
-
- owner.trigger('change');
- }
- input.on( 'change', changeHandler);
- label.on( 'mouseenter mouseleave', mouseHandler );
-
- },
-
-
- getFiles: function() {
- return this.files;
- },
-
- destroy: function() {
- this.input.off();
- this.label.off();
- }
- });
- });
-
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/util',[
- 'base'
- ], function( Base ) {
-
- var urlAPI = window.createObjectURL && window ||
- window.URL && URL.revokeObjectURL && URL ||
- window.webkitURL,
- createObjectURL = Base.noop,
- revokeObjectURL = createObjectURL;
-
- if ( urlAPI ) {
-
- // 更安全的方式调用,比如android里面就能把context改成其他的对象。
- createObjectURL = function() {
- return urlAPI.createObjectURL.apply( urlAPI, arguments );
- };
-
- revokeObjectURL = function() {
- return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
- };
- }
-
- return {
- createObjectURL: createObjectURL,
- revokeObjectURL: revokeObjectURL,
-
- dataURL2Blob: function( dataURI ) {
- var byteStr, intArray, ab, i, mimetype, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- ab = new ArrayBuffer( byteStr.length );
- intArray = new Uint8Array( ab );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
-
- return this.arrayBufferToBlob( ab, mimetype );
- },
-
- dataURL2ArrayBuffer: function( dataURI ) {
- var byteStr, intArray, i, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- intArray = new Uint8Array( byteStr.length );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- return intArray.buffer;
- },
-
- arrayBufferToBlob: function( buffer, type ) {
- var builder = window.BlobBuilder || window.WebKitBlobBuilder,
- bb;
-
- // android不支持直接new Blob, 只能借助blobbuilder.
- if ( builder ) {
- bb = new builder();
- bb.append( buffer );
- return bb.getBlob( type );
- }
-
- return new Blob([ buffer ], type ? { type: type } : {} );
- },
-
- // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
- // 你得到的结果是png.
- canvasToDataUrl: function( canvas, type, quality ) {
- return canvas.toDataURL( type, quality / 100 );
- },
-
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- parseMeta: function( blob, callback ) {
- callback( false, {});
- },
-
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- updateImageHead: function( data ) {
- return data;
- }
- };
- });
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/imagemeta',[
- 'runtime/html5/util'
- ], function( Util ) {
-
- var api;
-
- api = {
- parsers: {
- 0xffe1: []
- },
-
- maxMetaDataSize: 262144,
-
- parse: function( blob, cb ) {
- var me = this,
- fr = new FileReader();
-
- fr.onload = function() {
- cb( false, me._parse( this.result ) );
- fr = fr.onload = fr.onerror = null;
- };
-
- fr.onerror = function( e ) {
- cb( e.message );
- fr = fr.onload = fr.onerror = null;
- };
-
- blob = blob.slice( 0, me.maxMetaDataSize );
- fr.readAsArrayBuffer( blob.getSource() );
- },
-
- _parse: function( buffer, noParse ) {
- if ( buffer.byteLength < 6 ) {
- return;
- }
-
- var dataview = new DataView( buffer ),
- offset = 2,
- maxOffset = dataview.byteLength - 4,
- headLength = offset,
- ret = {},
- markerBytes, markerLength, parsers, i;
-
- if ( dataview.getUint16( 0 ) === 0xffd8 ) {
-
- while ( offset < maxOffset ) {
- markerBytes = dataview.getUint16( offset );
-
- if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
- markerBytes === 0xfffe ) {
-
- markerLength = dataview.getUint16( offset + 2 ) + 2;
-
- if ( offset + markerLength > dataview.byteLength ) {
- break;
- }
-
- parsers = api.parsers[ markerBytes ];
-
- if ( !noParse && parsers ) {
- for ( i = 0; i < parsers.length; i += 1 ) {
- parsers[ i ].call( api, dataview, offset,
- markerLength, ret );
- }
- }
-
- offset += markerLength;
- headLength = offset;
- } else {
- break;
- }
- }
-
- if ( headLength > 6 ) {
- if ( buffer.slice ) {
- ret.imageHead = buffer.slice( 2, headLength );
- } else {
- // Workaround for IE10, which does not yet
- // support ArrayBuffer.slice:
- ret.imageHead = new Uint8Array( buffer )
- .subarray( 2, headLength );
- }
- }
- }
-
- return ret;
- },
-
- updateImageHead: function( buffer, head ) {
- var data = this._parse( buffer, true ),
- buf1, buf2, bodyoffset;
-
-
- bodyoffset = 2;
- if ( data.imageHead ) {
- bodyoffset = 2 + data.imageHead.byteLength;
- }
-
- if ( buffer.slice ) {
- buf2 = buffer.slice( bodyoffset );
- } else {
- buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
- }
-
- buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
-
- buf1[ 0 ] = 0xFF;
- buf1[ 1 ] = 0xD8;
- buf1.set( new Uint8Array( head ), 2 );
- buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
-
- return buf1.buffer;
- }
- };
-
- Util.parseMeta = function() {
- return api.parse.apply( api, arguments );
- };
-
- Util.updateImageHead = function() {
- return api.updateImageHead.apply( api, arguments );
- };
-
- return api;
- });
- /**
- * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
- * 暂时项目中只用了orientation.
- *
- * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
- * @fileOverview EXIF解析
- */
-
- // Sample
- // ====================================
- // Make : Apple
- // Model : iPhone 4S
- // Orientation : 1
- // XResolution : 72 [72/1]
- // YResolution : 72 [72/1]
- // ResolutionUnit : 2
- // Software : QuickTime 7.7.1
- // DateTime : 2013:09:01 22:53:55
- // ExifIFDPointer : 190
- // ExposureTime : 0.058823529411764705 [1/17]
- // FNumber : 2.4 [12/5]
- // ExposureProgram : Normal program
- // ISOSpeedRatings : 800
- // ExifVersion : 0220
- // DateTimeOriginal : 2013:09:01 22:52:51
- // DateTimeDigitized : 2013:09:01 22:52:51
- // ComponentsConfiguration : YCbCr
- // ShutterSpeedValue : 4.058893515764426
- // ApertureValue : 2.5260688216892597 [4845/1918]
- // BrightnessValue : -0.3126686601998395
- // MeteringMode : Pattern
- // Flash : Flash did not fire, compulsory flash mode
- // FocalLength : 4.28 [107/25]
- // SubjectArea : [4 values]
- // FlashpixVersion : 0100
- // ColorSpace : 1
- // PixelXDimension : 2448
- // PixelYDimension : 3264
- // SensingMethod : One-chip color area sensor
- // ExposureMode : 0
- // WhiteBalance : Auto white balance
- // FocalLengthIn35mmFilm : 35
- // SceneCaptureType : Standard
- define('runtime/html5/imagemeta/exif',[
- 'base',
- 'runtime/html5/imagemeta'
- ], function( Base, ImageMeta ) {
-
- var EXIF = {};
-
- EXIF.ExifMap = function() {
- return this;
- };
-
- EXIF.ExifMap.prototype.map = {
- 'Orientation': 0x0112
- };
-
- EXIF.ExifMap.prototype.get = function( id ) {
- return this[ id ] || this[ this.map[ id ] ];
- };
-
- EXIF.exifTagTypes = {
- // byte, 8-bit unsigned int:
- 1: {
- getValue: function( dataView, dataOffset ) {
- return dataView.getUint8( dataOffset );
- },
- size: 1
- },
-
- // ascii, 8-bit byte:
- 2: {
- getValue: function( dataView, dataOffset ) {
- return String.fromCharCode( dataView.getUint8( dataOffset ) );
- },
- size: 1,
- ascii: true
- },
-
- // short, 16 bit int:
- 3: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint16( dataOffset, littleEndian );
- },
- size: 2
- },
-
- // long, 32 bit int:
- 4: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // rational = two long values,
- // first is numerator, second is denominator:
- 5: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian ) /
- dataView.getUint32( dataOffset + 4, littleEndian );
- },
- size: 8
- },
-
- // slong, 32 bit signed int:
- 9: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // srational, two slongs, first is numerator, second is denominator:
- 10: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian ) /
- dataView.getInt32( dataOffset + 4, littleEndian );
- },
- size: 8
- }
- };
-
- // undefined, 8-bit byte, value depending on field:
- EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
-
- EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
- littleEndian ) {
-
- var tagType = EXIF.exifTagTypes[ type ],
- tagSize, dataOffset, values, i, str, c;
-
- if ( !tagType ) {
- Base.log('Invalid Exif data: Invalid tag type.');
- return;
- }
-
- tagSize = tagType.size * length;
-
- // Determine if the value is contained in the dataOffset bytes,
- // or if the value at the dataOffset is a pointer to the actual data:
- dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
- littleEndian ) : (offset + 8);
-
- if ( dataOffset + tagSize > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid data offset.');
- return;
- }
-
- if ( length === 1 ) {
- return tagType.getValue( dataView, dataOffset, littleEndian );
- }
-
- values = [];
-
- for ( i = 0; i < length; i += 1 ) {
- values[ i ] = tagType.getValue( dataView,
- dataOffset + i * tagType.size, littleEndian );
- }
-
- if ( tagType.ascii ) {
- str = '';
-
- // Concatenate the chars:
- for ( i = 0; i < values.length; i += 1 ) {
- c = values[ i ];
-
- // Ignore the terminating NULL byte(s):
- if ( c === '\u0000' ) {
- break;
- }
- str += c;
- }
-
- return str;
- }
- return values;
- };
-
- EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
- data ) {
-
- var tag = dataView.getUint16( offset, littleEndian );
- data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
- dataView.getUint16( offset + 2, littleEndian ), // tag type
- dataView.getUint32( offset + 4, littleEndian ), // tag length
- littleEndian );
- };
-
- EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
- littleEndian, data ) {
-
- var tagsNumber, dirEndOffset, i;
-
- if ( dirOffset + 6 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory offset.');
- return;
- }
-
- tagsNumber = dataView.getUint16( dirOffset, littleEndian );
- dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
-
- if ( dirEndOffset + 4 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory size.');
- return;
- }
-
- for ( i = 0; i < tagsNumber; i += 1 ) {
- this.parseExifTag( dataView, tiffOffset,
- dirOffset + 2 + 12 * i, // tag offset
- littleEndian, data );
- }
-
- // Return the offset to the next directory:
- return dataView.getUint32( dirEndOffset, littleEndian );
- };
-
- // EXIF.getExifThumbnail = function(dataView, offset, length) {
- // var hexData,
- // i,
- // b;
- // if (!length || offset + length > dataView.byteLength) {
- // Base.log('Invalid Exif data: Invalid thumbnail data.');
- // return;
- // }
- // hexData = [];
- // for (i = 0; i < length; i += 1) {
- // b = dataView.getUint8(offset + i);
- // hexData.push((b < 16 ? '0' : '') + b.toString(16));
- // }
- // return 'data:image/jpeg,%' + hexData.join('%');
- // };
-
- EXIF.parseExifData = function( dataView, offset, length, data ) {
-
- var tiffOffset = offset + 10,
- littleEndian, dirOffset;
-
- // Check for the ASCII code for "Exif" (0x45786966):
- if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
- // No Exif data, might be XMP data instead
- return;
- }
- if ( tiffOffset + 8 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid segment size.');
- return;
- }
-
- // Check for the two null bytes:
- if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
- Base.log('Invalid Exif data: Missing byte alignment offset.');
- return;
- }
-
- // Check the byte alignment:
- switch ( dataView.getUint16( tiffOffset ) ) {
- case 0x4949:
- littleEndian = true;
- break;
-
- case 0x4D4D:
- littleEndian = false;
- break;
-
- default:
- Base.log('Invalid Exif data: Invalid byte alignment marker.');
- return;
- }
-
- // Check for the TIFF tag marker (0x002A):
- if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
- Base.log('Invalid Exif data: Missing TIFF marker.');
- return;
- }
-
- // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
- dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
- // Create the exif object to store the tags:
- data.exif = new EXIF.ExifMap();
- // Parse the tags of the main image directory and retrieve the
- // offset to the next directory, usually the thumbnail directory:
- dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
- tiffOffset + dirOffset, littleEndian, data );
-
- // 尝试读取缩略图
- // if ( dirOffset ) {
- // thumbnailData = {exif: {}};
- // dirOffset = EXIF.parseExifTags(
- // dataView,
- // tiffOffset,
- // tiffOffset + dirOffset,
- // littleEndian,
- // thumbnailData
- // );
-
- // // Check for JPEG Thumbnail offset:
- // if (thumbnailData.exif[0x0201]) {
- // data.exif.Thumbnail = EXIF.getExifThumbnail(
- // dataView,
- // tiffOffset + thumbnailData.exif[0x0201],
- // thumbnailData.exif[0x0202] // Thumbnail data length
- // );
- // }
- // }
- };
-
- ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
- return EXIF;
- });
- /**
- * @fileOverview Image
- */
- define('runtime/html5/image',[
- 'base',
- 'runtime/html5/runtime',
- 'runtime/html5/util'
- ], function( Base, Html5Runtime, Util ) {
-
- var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
-
- return Html5Runtime.register( 'Image', {
-
- // flag: 标记是否被修改过。
- modified: false,
-
- init: function() {
- var me = this,
- img = new Image();
-
- img.onload = function() {
-
- me._info = {
- type: me.type,
- width: this.width,
- height: this.height
- };
-
- //debugger;
-
- // 读取meta信息。
- if ( !me._metas && 'image/jpeg' === me.type ) {
- Util.parseMeta( me._blob, function( error, ret ) {
- me._metas = ret;
- me.owner.trigger('load');
- });
- } else {
- me.owner.trigger('load');
- }
- };
-
- img.onerror = function() {
- me.owner.trigger('error');
- };
-
- me._img = img;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- img = me._img;
-
- me._blob = blob;
- me.type = blob.type;
- img.src = Util.createObjectURL( blob.getSource() );
- me.owner.once( 'load', function() {
- Util.revokeObjectURL( img.src );
- });
- },
-
- resize: function( width, height ) {
- var canvas = this._canvas ||
- (this._canvas = document.createElement('canvas'));
-
- this._resize( this._img, canvas, width, height );
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'resize' );
- },
-
- crop: function( x, y, w, h, s ) {
- var cvs = this._canvas ||
- (this._canvas = document.createElement('canvas')),
- opts = this.options,
- img = this._img,
- iw = img.naturalWidth,
- ih = img.naturalHeight,
- orientation = this.getOrientation();
-
- s = s || 1;
-
- // todo 解决 orientation 的问题。
- // values that require 90 degree rotation
- // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // switch ( orientation ) {
- // case 6:
- // tmp = x;
- // x = y;
- // y = iw * s - tmp - w;
- // console.log(ih * s, tmp, w)
- // break;
- // }
-
- // (w ^= h, h ^= w, w ^= h);
- // }
-
- cvs.width = w;
- cvs.height = h;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
- this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
-
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'crop' );
- },
-
- getAsBlob: function( type ) {
- var blob = this._blob,
- opts = this.options,
- canvas;
-
- type = type || this.type;
-
- // blob需要重新生成。
- if ( this.modified || this.type !== type ) {
- canvas = this._canvas;
-
- if ( type === 'image/jpeg' ) {
-
- blob = Util.canvasToDataUrl( canvas, type, opts.quality );
-
- if ( opts.preserveHeaders && this._metas &&
- this._metas.imageHead ) {
-
- blob = Util.dataURL2ArrayBuffer( blob );
- blob = Util.updateImageHead( blob,
- this._metas.imageHead );
- blob = Util.arrayBufferToBlob( blob, type );
- return blob;
- }
- } else {
- blob = Util.canvasToDataUrl( canvas, type );
- }
-
- blob = Util.dataURL2Blob( blob );
- }
-
- return blob;
- },
-
- getAsDataUrl: function( type ) {
- var opts = this.options;
-
- type = type || this.type;
-
- if ( type === 'image/jpeg' ) {
- return Util.canvasToDataUrl( this._canvas, type, opts.quality );
- } else {
- return this._canvas.toDataURL( type );
- }
- },
-
- getOrientation: function() {
- return this._metas && this._metas.exif &&
- this._metas.exif.get('Orientation') || 1;
- },
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._metas = val;
- return this;
- }
-
- // getter
- return this._metas;
- },
-
- destroy: function() {
- var canvas = this._canvas;
- this._img.onload = null;
-
- if ( canvas ) {
- canvas.getContext('2d')
- .clearRect( 0, 0, canvas.width, canvas.height );
- canvas.width = canvas.height = 0;
- this._canvas = null;
- }
-
- // 释放内存。非常重要,否则释放不了image的内存。
- this._img.src = BLANK;
- this._img = this._blob = null;
- },
-
- _resize: function( img, cvs, width, height ) {
- var opts = this.options,
- naturalWidth = img.width,
- naturalHeight = img.height,
- orientation = this.getOrientation(),
- scale, w, h, x, y;
-
- // values that require 90 degree rotation
- if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // 交换width, height的值。
- width ^= height;
- height ^= width;
- width ^= height;
- }
-
- scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
- height / naturalHeight );
-
- // 不允许放大。
- opts.allowMagnify || (scale = Math.min( 1, scale ));
-
- w = naturalWidth * scale;
- h = naturalHeight * scale;
-
- if ( opts.crop ) {
- cvs.width = width;
- cvs.height = height;
- } else {
- cvs.width = w;
- cvs.height = h;
- }
-
- x = (cvs.width - w) / 2;
- y = (cvs.height - h) / 2;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
-
- this._renderImageToCanvas( cvs, img, x, y, w, h );
- },
-
- _rotate2Orientaion: function( canvas, orientation ) {
- var width = canvas.width,
- height = canvas.height,
- ctx = canvas.getContext('2d');
-
- switch ( orientation ) {
- case 5:
- case 6:
- case 7:
- case 8:
- canvas.width = height;
- canvas.height = width;
- break;
- }
-
- switch ( orientation ) {
- case 2: // horizontal flip
- ctx.translate( width, 0 );
- ctx.scale( -1, 1 );
- break;
-
- case 3: // 180 rotate left
- ctx.translate( width, height );
- ctx.rotate( Math.PI );
- break;
-
- case 4: // vertical flip
- ctx.translate( 0, height );
- ctx.scale( 1, -1 );
- break;
-
- case 5: // vertical flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.scale( 1, -1 );
- break;
-
- case 6: // 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( 0, -height );
- break;
-
- case 7: // horizontal flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( width, -height );
- ctx.scale( -1, 1 );
- break;
-
- case 8: // 90 rotate left
- ctx.rotate( -0.5 * Math.PI );
- ctx.translate( -width, 0 );
- break;
- }
- },
-
- // https://github.com/stomita/ios-imagefile-megapixel/
- // blob/master/src/megapix-image.js
- _renderImageToCanvas: (function() {
-
- // 如果不是ios, 不需要这么复杂!
- if ( !Base.os.ios ) {
- return function( canvas ) {
- var args = Base.slice( arguments, 1 ),
- ctx = canvas.getContext('2d');
-
- ctx.drawImage.apply( ctx, args );
- };
- }
-
- /**
- * Detecting vertical squash in loaded image.
- * Fixes a bug which squash image vertically while drawing into
- * canvas for some images.
- */
- function detectVerticalSquash( img, iw, ih ) {
- var canvas = document.createElement('canvas'),
- ctx = canvas.getContext('2d'),
- sy = 0,
- ey = ih,
- py = ih,
- data, alpha, ratio;
-
-
- canvas.width = 1;
- canvas.height = ih;
- ctx.drawImage( img, 0, 0 );
- data = ctx.getImageData( 0, 0, 1, ih ).data;
-
- // search image edge pixel position in case
- // it is squashed vertically.
- while ( py > sy ) {
- alpha = data[ (py - 1) * 4 + 3 ];
-
- if ( alpha === 0 ) {
- ey = py;
- } else {
- sy = py;
- }
-
- py = (ey + sy) >> 1;
- }
-
- ratio = (py / ih);
- return (ratio === 0) ? 1 : ratio;
- }
-
- // fix ie7 bug
- // http://stackoverflow.com/questions/11929099/
- // html5-canvas-drawimage-ratio-bug-ios
- if ( Base.os.ios >= 7 ) {
- return function( canvas, img, x, y, w, h ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- vertSquashRatio = detectVerticalSquash( img, iw, ih );
-
- return canvas.getContext('2d').drawImage( img, 0, 0,
- iw * vertSquashRatio, ih * vertSquashRatio,
- x, y, w, h );
- };
- }
-
- /**
- * Detect subsampling in loaded image.
- * In iOS, larger images than 2M pixels may be
- * subsampled in rendering.
- */
- function detectSubsampling( img ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- canvas, ctx;
-
- // subsampling may happen overmegapixel image
- if ( iw * ih > 1024 * 1024 ) {
- canvas = document.createElement('canvas');
- canvas.width = canvas.height = 1;
- ctx = canvas.getContext('2d');
- ctx.drawImage( img, -iw + 1, 0 );
-
- // subsampled image becomes half smaller in rendering size.
- // check alpha channel value to confirm image is covering
- // edge pixel or not. if alpha value is 0
- // image is not covering, hence subsampled.
- return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
- } else {
- return false;
- }
- }
-
-
- return function( canvas, img, x, y, width, height ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- ctx = canvas.getContext('2d'),
- subsampled = detectSubsampling( img ),
- doSquash = this.type === 'image/jpeg',
- d = 1024,
- sy = 0,
- dy = 0,
- tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
-
- if ( subsampled ) {
- iw /= 2;
- ih /= 2;
- }
-
- ctx.save();
- tmpCanvas = document.createElement('canvas');
- tmpCanvas.width = tmpCanvas.height = d;
-
- tmpCtx = tmpCanvas.getContext('2d');
- vertSquashRatio = doSquash ?
- detectVerticalSquash( img, iw, ih ) : 1;
-
- dw = Math.ceil( d * width / iw );
- dh = Math.ceil( d * height / ih / vertSquashRatio );
-
- while ( sy < ih ) {
- sx = 0;
- dx = 0;
- while ( sx < iw ) {
- tmpCtx.clearRect( 0, 0, d, d );
- tmpCtx.drawImage( img, -sx, -sy );
- ctx.drawImage( tmpCanvas, 0, 0, d, d,
- x + dx, y + dy, dw, dh );
- sx += d;
- dx += dw;
- }
- sy += d;
- dy += dh;
- }
- ctx.restore();
- tmpCanvas = tmpCtx = null;
- };
- })()
- });
- });
-
- /**
- * 这个方式性能不行,但是可以解决android里面的toDataUrl的bug
- * android里面toDataUrl('image/jpege')得到的结果却是png.
- *
- * 所以这里没辙,只能借助这个工具
- * @fileOverview jpeg encoder
- */
- define('runtime/html5/jpegencoder',[], function( require, exports, module ) {
-
- /*
- Copyright (c) 2008, Adobe Systems Incorporated
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
- * Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- * Neither the name of Adobe Systems Incorporated nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /*
- JPEG encoder ported to JavaScript and optimized by Andreas Ritter, www.bytestrom.eu, 11/2009
-
- Basic GUI blocking jpeg encoder
- */
-
- function JPEGEncoder(quality) {
- var self = this;
- var fround = Math.round;
- var ffloor = Math.floor;
- var YTable = new Array(64);
- var UVTable = new Array(64);
- var fdtbl_Y = new Array(64);
- var fdtbl_UV = new Array(64);
- var YDC_HT;
- var UVDC_HT;
- var YAC_HT;
- var UVAC_HT;
-
- var bitcode = new Array(65535);
- var category = new Array(65535);
- var outputfDCTQuant = new Array(64);
- var DU = new Array(64);
- var byteout = [];
- var bytenew = 0;
- var bytepos = 7;
-
- var YDU = new Array(64);
- var UDU = new Array(64);
- var VDU = new Array(64);
- var clt = new Array(256);
- var RGB_YUV_TABLE = new Array(2048);
- var currentQuality;
-
- var ZigZag = [
- 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
- ];
-
- var std_dc_luminance_nrcodes = [0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0];
- var std_dc_luminance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
- var std_ac_luminance_nrcodes = [0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d];
- var std_ac_luminance_values = [
- 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,
- 0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,
- 0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08,
- 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,
- 0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,
- 0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28,
- 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,
- 0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,
- 0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,
- 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,
- 0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,
- 0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89,
- 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,
- 0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,
- 0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,
- 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,
- 0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,
- 0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2,
- 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,
- 0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
- 0xf9,0xfa
- ];
-
- var std_dc_chrominance_nrcodes = [0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0];
- var std_dc_chrominance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
- var std_ac_chrominance_nrcodes = [0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77];
- var std_ac_chrominance_values = [
- 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,
- 0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,
- 0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91,
- 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,
- 0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,
- 0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,
- 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,
- 0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,
- 0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,
- 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,
- 0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,
- 0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,
- 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,
- 0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
- 0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,
- 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
- 0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,
- 0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
- 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,
- 0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
- 0xf9,0xfa
- ];
-
- function initQuantTables(sf){
- var YQT = [
- 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
- ];
-
- for (var i = 0; i < 64; i++) {
- var t = ffloor((YQT[i]*sf+50)/100);
- if (t < 1) {
- t = 1;
- } else if (t > 255) {
- t = 255;
- }
- YTable[ZigZag[i]] = t;
- }
- var UVQT = [
- 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
- ];
- for (var j = 0; j < 64; j++) {
- var u = ffloor((UVQT[j]*sf+50)/100);
- if (u < 1) {
- u = 1;
- } else if (u > 255) {
- u = 255;
- }
- UVTable[ZigZag[j]] = u;
- }
- var aasf = [
- 1.0, 1.387039845, 1.306562965, 1.175875602,
- 1.0, 0.785694958, 0.541196100, 0.275899379
- ];
- var k = 0;
- for (var row = 0; row < 8; row++)
- {
- for (var col = 0; col < 8; col++)
- {
- fdtbl_Y[k] = (1.0 / (YTable [ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
- fdtbl_UV[k] = (1.0 / (UVTable[ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
- k++;
- }
- }
- }
-
- function computeHuffmanTbl(nrcodes, std_table){
- var codevalue = 0;
- var pos_in_table = 0;
- var HT = new Array();
- for (var k = 1; k <= 16; k++) {
- for (var j = 1; j <= nrcodes[k]; j++) {
- HT[std_table[pos_in_table]] = [];
- HT[std_table[pos_in_table]][0] = codevalue;
- HT[std_table[pos_in_table]][1] = k;
- pos_in_table++;
- codevalue++;
- }
- codevalue*=2;
- }
- return HT;
- }
-
- function initHuffmanTbl()
- {
- YDC_HT = computeHuffmanTbl(std_dc_luminance_nrcodes,std_dc_luminance_values);
- UVDC_HT = computeHuffmanTbl(std_dc_chrominance_nrcodes,std_dc_chrominance_values);
- YAC_HT = computeHuffmanTbl(std_ac_luminance_nrcodes,std_ac_luminance_values);
- UVAC_HT = computeHuffmanTbl(std_ac_chrominance_nrcodes,std_ac_chrominance_values);
- }
-
- function initCategoryNumber()
- {
- var nrlower = 1;
- var nrupper = 2;
- for (var cat = 1; cat <= 15; cat++) {
- //Positive numbers
- for (var nr = nrlower; nr>0] = 38470 * i;
- RGB_YUV_TABLE[(i+ 512)>>0] = 7471 * i + 0x8000;
- RGB_YUV_TABLE[(i+ 768)>>0] = -11059 * i;
- RGB_YUV_TABLE[(i+1024)>>0] = -21709 * i;
- RGB_YUV_TABLE[(i+1280)>>0] = 32768 * i + 0x807FFF;
- RGB_YUV_TABLE[(i+1536)>>0] = -27439 * i;
- RGB_YUV_TABLE[(i+1792)>>0] = - 5329 * i;
- }
- }
-
- // IO functions
- function writeBits(bs)
- {
- var value = bs[0];
- var posval = bs[1]-1;
- while ( posval >= 0 ) {
- if (value & (1 << posval) ) {
- bytenew |= (1 << bytepos);
- }
- posval--;
- bytepos--;
- if (bytepos < 0) {
- if (bytenew == 0xFF) {
- writeByte(0xFF);
- writeByte(0);
- }
- else {
- writeByte(bytenew);
- }
- bytepos=7;
- bytenew=0;
- }
- }
- }
-
- function writeByte(value)
- {
- byteout.push(clt[value]); // write char directly instead of converting later
- }
-
- function writeWord(value)
- {
- writeByte((value>>8)&0xFF);
- writeByte((value )&0xFF);
- }
-
- // DCT & quantization core
- function fDCTQuant(data, fdtbl)
- {
- var d0, d1, d2, d3, d4, d5, d6, d7;
- /* Pass 1: process rows. */
- var dataOff=0;
- var i;
- var I8 = 8;
- var I64 = 64;
- for (i=0; i 0.0) ? ((fDCTQuant + 0.5)|0) : ((fDCTQuant - 0.5)|0);
- //outputfDCTQuant[i] = fround(fDCTQuant);
-
- }
- return outputfDCTQuant;
- }
-
- function writeAPP0()
- {
- writeWord(0xFFE0); // marker
- writeWord(16); // length
- writeByte(0x4A); // J
- writeByte(0x46); // F
- writeByte(0x49); // I
- writeByte(0x46); // F
- writeByte(0); // = "JFIF",'\0'
- writeByte(1); // versionhi
- writeByte(1); // versionlo
- writeByte(0); // xyunits
- writeWord(1); // xdensity
- writeWord(1); // ydensity
- writeByte(0); // thumbnwidth
- writeByte(0); // thumbnheight
- }
-
- function writeSOF0(width, height)
- {
- writeWord(0xFFC0); // marker
- writeWord(17); // length, truecolor YUV JPG
- writeByte(8); // precision
- writeWord(height);
- writeWord(width);
- writeByte(3); // nrofcomponents
- writeByte(1); // IdY
- writeByte(0x11); // HVY
- writeByte(0); // QTY
- writeByte(2); // IdU
- writeByte(0x11); // HVU
- writeByte(1); // QTU
- writeByte(3); // IdV
- writeByte(0x11); // HVV
- writeByte(1); // QTV
- }
-
- function writeDQT()
- {
- writeWord(0xFFDB); // marker
- writeWord(132); // length
- writeByte(0);
- for (var i=0; i<64; i++) {
- writeByte(YTable[i]);
- }
- writeByte(1);
- for (var j=0; j<64; j++) {
- writeByte(UVTable[j]);
- }
- }
-
- function writeDHT()
- {
- writeWord(0xFFC4); // marker
- writeWord(0x01A2); // length
-
- writeByte(0); // HTYDCinfo
- for (var i=0; i<16; i++) {
- writeByte(std_dc_luminance_nrcodes[i+1]);
- }
- for (var j=0; j<=11; j++) {
- writeByte(std_dc_luminance_values[j]);
- }
-
- writeByte(0x10); // HTYACinfo
- for (var k=0; k<16; k++) {
- writeByte(std_ac_luminance_nrcodes[k+1]);
- }
- for (var l=0; l<=161; l++) {
- writeByte(std_ac_luminance_values[l]);
- }
-
- writeByte(1); // HTUDCinfo
- for (var m=0; m<16; m++) {
- writeByte(std_dc_chrominance_nrcodes[m+1]);
- }
- for (var n=0; n<=11; n++) {
- writeByte(std_dc_chrominance_values[n]);
- }
-
- writeByte(0x11); // HTUACinfo
- for (var o=0; o<16; o++) {
- writeByte(std_ac_chrominance_nrcodes[o+1]);
- }
- for (var p=0; p<=161; p++) {
- writeByte(std_ac_chrominance_values[p]);
- }
- }
-
- function writeSOS()
- {
- writeWord(0xFFDA); // marker
- writeWord(12); // length
- writeByte(3); // nrofcomponents
- writeByte(1); // IdY
- writeByte(0); // HTY
- writeByte(2); // IdU
- writeByte(0x11); // HTU
- writeByte(3); // IdV
- writeByte(0x11); // HTV
- writeByte(0); // Ss
- writeByte(0x3f); // Se
- writeByte(0); // Bf
- }
-
- function processDU(CDU, fdtbl, DC, HTDC, HTAC){
- var EOB = HTAC[0x00];
- var M16zeroes = HTAC[0xF0];
- var pos;
- var I16 = 16;
- var I63 = 63;
- var I64 = 64;
- var DU_DCT = fDCTQuant(CDU, fdtbl);
- //ZigZag reorder
- for (var j=0;j0)&&(DU[end0pos]==0); end0pos--) {};
- //end0pos = first element in reverse order !=0
- if ( end0pos == 0) {
- writeBits(EOB);
- return DC;
- }
- var i = 1;
- var lng;
- while ( i <= end0pos ) {
- var startpos = i;
- for (; (DU[i]==0) && (i<=end0pos); ++i) {}
- var nrzeroes = i-startpos;
- if ( nrzeroes >= I16 ) {
- lng = nrzeroes>>4;
- for (var nrmarker=1; nrmarker <= lng; ++nrmarker)
- writeBits(M16zeroes);
- nrzeroes = nrzeroes&0xF;
- }
- pos = 32767+DU[i];
- writeBits(HTAC[(nrzeroes<<4)+category[pos]]);
- writeBits(bitcode[pos]);
- i++;
- }
- if ( end0pos != I63 ) {
- writeBits(EOB);
- }
- return DC;
- }
-
- function initCharLookupTable(){
- var sfcc = String.fromCharCode;
- for(var i=0; i < 256; i++){ ///// ACHTUNG // 255
- clt[i] = sfcc(i);
- }
- }
-
- this.encode = function(image,quality) // image data object
- {
- // var time_start = new Date().getTime();
-
- if(quality) setQuality(quality);
-
- // Initialize bit writer
- byteout = new Array();
- bytenew=0;
- bytepos=7;
-
- // Add JPEG headers
- writeWord(0xFFD8); // SOI
- writeAPP0();
- writeDQT();
- writeSOF0(image.width,image.height);
- writeDHT();
- writeSOS();
-
-
- // Encode 8x8 macroblocks
- var DCY=0;
- var DCU=0;
- var DCV=0;
-
- bytenew=0;
- bytepos=7;
-
-
- this.encode.displayName = "_encode_";
-
- var imageData = image.data;
- var width = image.width;
- var height = image.height;
-
- var quadWidth = width*4;
- var tripleWidth = width*3;
-
- var x, y = 0;
- var r, g, b;
- var start,p, col,row,pos;
- while(y < height){
- x = 0;
- while(x < quadWidth){
- start = quadWidth * y + x;
- p = start;
- col = -1;
- row = 0;
-
- for(pos=0; pos < 64; pos++){
- row = pos >> 3;// /8
- col = ( pos & 7 ) * 4; // %8
- p = start + ( row * quadWidth ) + col;
-
- if(y+row >= height){ // padding bottom
- p-= (quadWidth*(y+1+row-height));
- }
-
- if(x+col >= quadWidth){ // padding right
- p-= ((x+col) - quadWidth +4)
- }
-
- r = imageData[ p++ ];
- g = imageData[ p++ ];
- b = imageData[ p++ ];
-
-
- /* // calculate YUV values dynamically
- YDU[pos]=((( 0.29900)*r+( 0.58700)*g+( 0.11400)*b))-128; //-0x80
- UDU[pos]=(((-0.16874)*r+(-0.33126)*g+( 0.50000)*b));
- VDU[pos]=((( 0.50000)*r+(-0.41869)*g+(-0.08131)*b));
- */
-
- // use lookup table (slightly faster)
- YDU[pos] = ((RGB_YUV_TABLE[r] + RGB_YUV_TABLE[(g + 256)>>0] + RGB_YUV_TABLE[(b + 512)>>0]) >> 16)-128;
- UDU[pos] = ((RGB_YUV_TABLE[(r + 768)>>0] + RGB_YUV_TABLE[(g + 1024)>>0] + RGB_YUV_TABLE[(b + 1280)>>0]) >> 16)-128;
- VDU[pos] = ((RGB_YUV_TABLE[(r + 1280)>>0] + RGB_YUV_TABLE[(g + 1536)>>0] + RGB_YUV_TABLE[(b + 1792)>>0]) >> 16)-128;
-
- }
-
- DCY = processDU(YDU, fdtbl_Y, DCY, YDC_HT, YAC_HT);
- DCU = processDU(UDU, fdtbl_UV, DCU, UVDC_HT, UVAC_HT);
- DCV = processDU(VDU, fdtbl_UV, DCV, UVDC_HT, UVAC_HT);
- x+=32;
- }
- y+=8;
- }
-
-
- ////////////////////////////////////////////////////////////////
-
- // Do the bit alignment of the EOI marker
- if ( bytepos >= 0 ) {
- var fillbits = [];
- fillbits[1] = bytepos+1;
- fillbits[0] = (1<<(bytepos+1))-1;
- writeBits(fillbits);
- }
-
- writeWord(0xFFD9); //EOI
-
- var jpegDataUri = 'data:image/jpeg;base64,' + btoa(byteout.join(''));
-
- byteout = [];
-
- // benchmarking
- // var duration = new Date().getTime() - time_start;
- // console.log('Encoding time: '+ currentQuality + 'ms');
- //
-
- return jpegDataUri
- }
-
- function setQuality(quality){
- if (quality <= 0) {
- quality = 1;
- }
- if (quality > 100) {
- quality = 100;
- }
-
- if(currentQuality == quality) return // don't recalc if unchanged
-
- var sf = 0;
- if (quality < 50) {
- sf = Math.floor(5000 / quality);
- } else {
- sf = Math.floor(200 - quality*2);
- }
-
- initQuantTables(sf);
- currentQuality = quality;
- // console.log('Quality set to: '+quality +'%');
- }
-
- function init(){
- // var time_start = new Date().getTime();
- if(!quality) quality = 50;
- // Create tables
- initCharLookupTable()
- initHuffmanTbl();
- initCategoryNumber();
- initRGBYUVTable();
-
- setQuality(quality);
- // var duration = new Date().getTime() - time_start;
- // console.log('Initialization '+ duration + 'ms');
- }
-
- init();
-
- };
-
- JPEGEncoder.encode = function( data, quality ) {
- var encoder = new JPEGEncoder( quality );
+ /**
+ * @fileOverview 负责文件上传相关。
+ */
+ define('widgets/upload',[
+ 'base',
+ 'uploader',
+ 'file',
+ 'lib/transport',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile, Transport ) {
+
+ var $ = Base.$,
+ isPromise = Base.isPromise,
+ Status = WUFile.Status;
+
+ // 添加默认配置项
+ $.extend( Uploader.options, {
+
+
+ /**
+ * @property {Boolean} [prepareNextFile=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否允许在文件传输时提前把下一个文件准备好。
+ * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
+ * 如果能提前在当前文件传输期处理,可以节省总体耗时。
+ */
+ prepareNextFile: false,
+
+ /**
+ * @property {Boolean} [chunked=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否要分片处理大文件上传。
+ */
+ chunked: false,
+
+ /**
+ * @property {Boolean} [chunkSize=5242880]
+ * @namespace options
+ * @for Uploader
+ * @description 如果要分片,分多大一片? 默认大小为5M.
+ */
+ chunkSize: 5 * 1024 * 1024,
+
+ /**
+ * @property {Boolean} [chunkRetry=2]
+ * @namespace options
+ * @for Uploader
+ * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
+ */
+ chunkRetry: 2,
+
+ /**
+ * @property {Number} [chunkRetryDelay=1000]
+ * @namespace options
+ * @for Uploader
+ * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
+ */
+ chunkRetryDelay: 1000,
+
+ /**
+ * @property {Boolean} [threads=3]
+ * @namespace options
+ * @for Uploader
+ * @description 上传并发数。允许同时最大上传进程数。
+ */
+ threads: 3,
+
+
+ /**
+ * @property {Object} [formData={}]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
+ */
+ formData: {}
+
+ /**
+ * @property {Object} [fileVal='file']
+ * @namespace options
+ * @for Uploader
+ * @description 设置文件上传域的name。
+ */
+
+ /**
+ * @property {Object} [method=POST]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传方式,`POST` 或者 `GET`。
+ */
+
+ /**
+ * @property {Object} [sendAsBinary=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
+ * 其他参数在$_GET数组中。
+ */
+ });
+
+ // 负责将文件切片。
+ function CuteFile( file, chunkSize ) {
+ var pending = [],
+ blob = file.source,
+ total = blob.size,
+ chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
+ start = 0,
+ index = 0,
+ len, api;
+
+ api = {
+ file: file,
+
+ has: function() {
+ return !!pending.length;
+ },
+
+ shift: function() {
+ return pending.shift();
+ },
+
+ unshift: function( block ) {
+ pending.unshift( block );
+ }
+ };
+
+ while ( index < chunks ) {
+ len = Math.min( chunkSize, total - start );
+
+ pending.push({
+ file: file,
+ start: start,
+ end: chunkSize ? (start + len) : total,
+ total: total,
+ chunks: chunks,
+ chunk: index++,
+ cuted: api
+ });
+ start += len;
+ }
+
+ file.blocks = pending.concat();
+ file.remaning = pending.length;
+
+ return api;
+ }
+
+ Uploader.register({
+ name: 'upload',
+
+ init: function() {
+ var owner = this.owner,
+ me = this;
+
+ this.runing = false;
+ this.progress = false;
+
+ owner
+ .on( 'startUpload', function() {
+ me.progress = true;
+ })
+ .on( 'uploadFinished', function() {
+ me.progress = false;
+ });
+
+ // 记录当前正在传的数据,跟threads相关
+ this.pool = [];
+
+ // 缓存分好片的文件。
+ this.stack = [];
+
+ // 缓存即将上传的文件。
+ this.pending = [];
+
+ // 跟踪还有多少分片在上传中但是没有完成上传。
+ this.remaning = 0;
+ this.__tick = Base.bindFn( this._tick, this );
+
+ // 销毁上传相关的属性。
+ owner.on( 'uploadComplete', function( file ) {
+
+ // 把其他块取消了。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ v.transport && (v.transport.abort(), v.transport.destroy());
+ delete v.transport;
+ });
+
+ delete file.blocks;
+ delete file.remaning;
+ });
+ },
+
+ reset: function() {
+ this.request( 'stop-upload', true );
+ this.runing = false;
+ this.pool = [];
+ this.stack = [];
+ this.pending = [];
+ this.remaning = 0;
+ this._trigged = false;
+ this._promise = null;
+ },
+
+ /**
+ * @event startUpload
+ * @description 当开始上传流程时触发。
+ * @for Uploader
+ */
+
+ /**
+ * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
+ *
+ * 可以指定开始某一个文件。
+ * @grammar upload() => undefined
+ * @grammar upload( file | fileId) => undefined
+ * @method upload
+ * @for Uploader
+ */
+ startUpload: function(file) {
+ var me = this;
+
+ // 移出invalid的文件
+ $.each( me.request( 'get-files', Status.INVALID ), function() {
+ me.request( 'remove-file', this );
+ });
+
+ // 如果指定了开始某个文件,则只开始指定的文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
+
+ if (file.getStatus() === Status.INTERRUPT) {
+ file.setStatus( Status.QUEUED );
+
+ $.each( me.pool, function( _, v ) {
+
+ // 之前暂停过。
+ if (v.file !== file) {
+ return;
+ }
+
+ v.transport && v.transport.send();
+ file.setStatus( Status.PROGRESS );
+ });
+
+
+ } else if (file.getStatus() !== Status.PROGRESS) {
+ file.setStatus( Status.QUEUED );
+ }
+ } else {
+ $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
+ this.setStatus( Status.QUEUED );
+ });
+ }
+
+ if ( me.runing ) {
+ me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
+ return Base.nextTick( me.__tick );
+ }
+
+ me.runing = true;
+ var files = [];
+
+ // 如果有暂停的,则续传
+ file || $.each( me.pool, function( _, v ) {
+ var file = v.file;
+
+ if ( file.getStatus() === Status.INTERRUPT ) {
+ me._trigged = false;
+ files.push(file);
+
+ if (v.waiting) {
+ return;
+ }
+
+ // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
+ v.transport ? v.transport.send() : me._doSend(v);
+ }
+ });
+
+ $.each(files, function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ file || $.each( me.request( 'get-files',
+ Status.INTERRUPT ), function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ me._trigged = false;
+ Base.nextTick( me.__tick );
+ me.owner.trigger('startUpload');
+ },
+
+ /**
+ * @event stopUpload
+ * @description 当开始上传流程暂停时触发。
+ * @for Uploader
+ */
+
+ /**
+ * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
+ *
+ * 如果第一个参数是文件,则只暂停指定文件。
+ * @grammar stop() => undefined
+ * @grammar stop( true ) => undefined
+ * @grammar stop( file ) => undefined
+ * @method stop
+ * @for Uploader
+ */
+ stopUpload: function( file, interrupt ) {
+ var me = this;
+
+ if (file === true) {
+ interrupt = file;
+ file = null;
+ }
+
+ if ( me.runing === false ) {
+ return;
+ }
+
+ // 如果只是暂停某个文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
+
+ if ( file.getStatus() !== Status.PROGRESS &&
+ file.getStatus() !== Status.QUEUED ) {
+ return;
+ }
+
+ file.setStatus( Status.INTERRUPT );
+
+
+ $.each( me.pool, function( _, v ) {
+
+ // 只 abort 指定的文件,每一个分片。
+ if (v.file === file) {
+ v.transport && v.transport.abort();
+
+ if (interrupt) {
+ me._putback(v);
+ me._popBlock(v);
+ }
+ }
+ });
+
+ me.owner.trigger('stopUpload', file);// 暂停,trigger event
+
+ return Base.nextTick( me.__tick );
+ }
+
+ me.runing = false;
+
+ // 正在准备中的文件。
+ if (this._promise && this._promise.file) {
+ this._promise.file.setStatus( Status.INTERRUPT );
+ }
+
+ interrupt && $.each( me.pool, function( _, v ) {
+ v.transport && v.transport.abort();
+ v.file.setStatus( Status.INTERRUPT );
+ });
+
+ me.owner.trigger('stopUpload');
+ },
+
+ /**
+ * @method cancelFile
+ * @grammar cancelFile( file ) => undefined
+ * @grammar cancelFile( id ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 标记文件状态为已取消, 同时将中断文件传输。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.cancelFile( file );
+ * })
+ */
+ cancelFile: function( file ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
+ });
+
+ file.setStatus( Status.CANCELLED );
+ this.owner.trigger( 'fileDequeued', file );
+ },
+
+ /**
+ * 判断`Uploader`是否正在上传中。
+ * @grammar isInProgress() => Boolean
+ * @method isInProgress
+ * @for Uploader
+ */
+ isInProgress: function() {
+ return !!this.progress;
+ },
+
+ _getStats: function() {
+ return this.request('get-stats');
+ },
+
+ /**
+ * 跳过一个文件上传,直接标记指定文件为已上传状态。
+ * @grammar skipFile( file ) => undefined
+ * @method skipFile
+ * @for Uploader
+ */
+ skipFile: function( file, status ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ file.setStatus( status || Status.COMPLETE );
+ file.skipped = true;
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
+ });
+
+ this.owner.trigger( 'uploadSkip', file );
+ },
+
+ /**
+ * @event uploadFinished
+ * @description 当所有文件上传结束时触发。
+ * @for Uploader
+ */
+ _tick: function() {
+ var me = this,
+ opts = me.options,
+ fn, val;
+
+ // 上一个promise还没有结束,则等待完成后再执行。
+ if ( me._promise ) {
+ return me._promise.always( me.__tick );
+ }
+
+ // 还有位置,且还有文件要处理的话。
+ if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
+ me._trigged = false;
+
+ fn = function( val ) {
+ me._promise = null;
+
+ // 有可能是reject过来的,所以要检测val的类型。
+ val && val.file && me._startSend( val );
+ Base.nextTick( me.__tick );
+ };
+
+ me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
+
+ // 没有要上传的了,且没有正在传输的了。
+ } else if ( !me.remaning && !me._getStats().numOfQueue &&
+ !me._getStats().numOfInterrupt ) {
+ me.runing = false;
+
+ me._trigged || Base.nextTick(function() {
+ me.owner.trigger('uploadFinished');
+ });
+ me._trigged = true;
+ }
+ },
+
+ _putback: function(block) {
+ var idx;
+
+ block.cuted.unshift(block);
+ idx = this.stack.indexOf(block.cuted);
+
+ if (!~idx) {
+ // 如果不在里面,说明移除过,需要把计数还原回去。
+ this.remaning++;
+ block.file.remaning++;
+ this.stack.unshift(block.cuted);
+ }
+ },
+
+ _getStack: function() {
+ var i = 0,
+ act;
+
+ while ( (act = this.stack[ i++ ]) ) {
+ if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
+ return act;
+ } else if (!act.has() ||
+ act.file.getStatus() !== Status.PROGRESS &&
+ act.file.getStatus() !== Status.INTERRUPT ) {
+
+ // 把已经处理完了的,或者,状态为非 progress(上传中)、
+ // interupt(暂停中) 的移除。
+ this.stack.splice( --i, 1 );
+ }
+ }
+
+ return null;
+ },
+
+ _nextBlock: function() {
+ var me = this,
+ opts = me.options,
+ act, next, done, preparing;
+
+ // 如果当前文件还有没有需要传输的,则直接返回剩下的。
+ if ( (act = this._getStack()) ) {
+
+ // 是否提前准备下一个文件
+ if ( opts.prepareNextFile && !me.pending.length ) {
+ me._prepareNextFile();
+ }
+
+ return act.shift();
+
+ // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
+ } else if ( me.runing ) {
+
+ // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
+ if ( !me.pending.length && me._getStats().numOfQueue ) {
+ me._prepareNextFile();
+ }
+
+ next = me.pending.shift();
+ done = function( file ) {
+ if ( !file ) {
+ return null;
+ }
+
+ act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
+ me.stack.push(act);
+ return act.shift();
+ };
+
+ // 文件可能还在prepare中,也有可能已经完全准备好了。
+ if ( isPromise( next) ) {
+ preparing = next.file;
+ next = next[ next.pipe ? 'pipe' : 'then' ]( done );
+ next.file = preparing;
+ return next;
+ }
+
+ return done( next );
+ }
+ },
+
+
+ /**
+ * @event uploadStart
+ * @param {File} file File对象
+ * @description 某个文件开始上传前触发,一个文件只会触发一次。
+ * @for Uploader
+ */
+ _prepareNextFile: function() {
+ var me = this,
+ file = me.request('fetch-file'),
+ pending = me.pending,
+ promise;
+
+ if ( file ) {
+ promise = me.request( 'before-send-file', file, function() {
+
+ // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
+ if ( file.getStatus() === Status.PROGRESS ||
+ file.getStatus() === Status.INTERRUPT ) {
+ return file;
+ }
+
+ return me._finishFile( file );
+ });
+
+ me.owner.trigger( 'uploadStart', file );
+ file.setStatus( Status.PROGRESS );
+
+ promise.file = file;
+
+ // 如果还在pending中,则替换成文件本身。
+ promise.done(function() {
+ var idx = $.inArray( promise, pending );
+
+ ~idx && pending.splice( idx, 1, file );
+ });
+
+ // befeore-send-file的钩子就有错误发生。
+ promise.fail(function( reason ) {
+ file.setStatus( Status.ERROR, reason );
+ me.owner.trigger( 'uploadError', file, reason );
+ me.owner.trigger( 'uploadComplete', file );
+ });
+
+ pending.push( promise );
+ }
+ },
+
+ // 让出位置了,可以让其他分片开始上传
+ _popBlock: function( block ) {
+ var idx = $.inArray( block, this.pool );
+
+ this.pool.splice( idx, 1 );
+ block.file.remaning--;
+ this.remaning--;
+ },
+
+ // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
+ _startSend: function( block ) {
+ var me = this,
+ file = block.file,
+ promise;
+
+ // 有可能在 before-send-file 的 promise 期间改变了文件状态。
+ // 如:暂停,取消
+ // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
+ if ( file.getStatus() !== Status.PROGRESS ) {
+
+ // 如果是中断,则还需要放回去。
+ if (file.getStatus() === Status.INTERRUPT) {
+ me._putback(block);
+ }
+
+ return;
+ }
+
+ me.pool.push( block );
+ me.remaning++;
+
+ // 如果没有分片,则直接使用原始的。
+ // 不会丢失content-type信息。
+ block.blob = block.chunks === 1 ? file.source :
+ file.source.slice( block.start, block.end );
+
+ // hook, 每个分片发送之前可能要做些异步的事情。
+ block.waiting = promise = me.request( 'before-send', block, function() {
+ delete block.waiting;
+
+ // 有可能文件已经上传出错了,所以不需要再传输了。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ me._doSend( block );
+ } else if (block.file.getStatus() !== Status.INTERRUPT) {
+ me._popBlock(block);
+ }
+
+ Base.nextTick(me.__tick);
+ });
+
+ // 如果为fail了,则跳过此分片。
+ promise.fail(function() {
+ delete block.waiting;
+
+ if ( file.remaning === 1 ) {
+ me._finishFile( file ).always(function() {
+ block.percentage = 1;
+ me._popBlock( block );
+ me.owner.trigger( 'uploadComplete', file );
+ Base.nextTick( me.__tick );
+ });
+ } else {
+ block.percentage = 1;
+ me.updateFileProgress( file );
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ }
+ });
+ },
+
+
+ /**
+ * @event uploadBeforeSend
+ * @param {Object} object
+ * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
+ * @param {Object} headers 可以扩展此对象来控制上传头部。
+ * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadAccept
+ * @param {Object} object
+ * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
+ * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadProgress
+ * @param {File} file File对象
+ * @param {Number} percentage 上传进度
+ * @description 上传过程中触发,携带上传进度。
+ * @for Uploader
+ */
+
+
+ /**
+ * @event uploadError
+ * @param {File} file File对象
+ * @param {String} reason 出错的code
+ * @description 当文件上传出错时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadSuccess
+ * @param {File} file File对象
+ * @param {Object} response 服务端返回的数据
+ * @description 当文件上传成功时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadComplete
+ * @param {File} [file] File对象
+ * @description 不管成功或者失败,文件上传完成时触发。
+ * @for Uploader
+ */
+
+ // 做上传操作。
+ _doSend: function( block ) {
+ var me = this,
+ owner = me.owner,
+ opts = $.extend({}, me.options, block.options),
+ file = block.file,
+ tr = new Transport( opts ),
+ data = $.extend({}, opts.formData ),
+ headers = $.extend({}, opts.headers ),
+ requestAccept, ret;
+
+ block.transport = tr;
+
+ tr.on( 'destroy', function() {
+ delete block.transport;
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ });
+
+ // 广播上传进度。以文件为单位。
+ tr.on( 'progress', function( percentage ) {
+ block.percentage = percentage;
+ me.updateFileProgress( file );
+ });
+
+ // 用来询问,是否返回的结果是有错误的。
+ requestAccept = function( reject ) {
+ var fn;
+
+ ret = tr.getResponseAsJson() || {};
+ ret._raw = tr.getResponse();
+ ret._headers = tr.getResponseHeaders();
+ block.response = ret;
+ fn = function( value ) {
+ reject = value;
+ };
+
+ // 服务端响应了,不代表成功了,询问是否响应正确。
+ if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
+ reject = reject || 'server';
+ }
+
+ return reject;
+ };
+
+ // 尝试重试,然后广播文件上传出错。
+ tr.on( 'error', function( type, flag ) {
+ // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
+ // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
+ var typeArr = type.split( '|' ), status, statusText;
+ type = typeArr[0];
+ status = parseFloat( typeArr[1] ),
+ statusText = typeArr[2];
+
+ block.retried = block.retried || 0;
+
+ // 自动重试
+ if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
+ block.retried < opts.chunkRetry ) {
+
+ block.retried++;
+
+ me.retryTimer = setTimeout(function() {
+ tr.send();
+ }, opts.chunkRetryDelay || 1000);
+
+ } else {
+
+ // http status 500 ~ 600
+ if ( !flag && type === 'server' ) {
+ type = requestAccept( type );
+ }
+
+ file.setStatus( Status.ERROR, type );
+ owner.trigger( 'uploadError', file, type, status, statusText );
+ owner.trigger( 'uploadComplete', file );
+ }
+ });
+
+ // 上传成功
+ tr.on( 'load', function() {
+ var reason;
+
+ // 如果非预期,转向上传出错。
+ if ( (reason = requestAccept()) ) {
+ tr.trigger( 'error', reason, true );
+ return;
+ }
+
+ // 全部上传完成。
+ if ( file.remaning === 1 ) {
+ me._finishFile( file, ret );
+ } else {
+ tr.destroy();
+ }
+ });
+
+ // 配置默认的上传字段。
+ data = $.extend( data, {
+ id: file.id,
+ name: file.name,
+ type: file.type,
+ lastModifiedDate: file.lastModifiedDate,
+ size: file.size
+ });
+
+ block.chunks > 1 && $.extend( data, {
+ chunks: block.chunks,
+ chunk: block.chunk
+ });
+
+ // 在发送之间可以添加字段什么的。。。
+ // 如果默认的字段不够使用,可以通过监听此事件来扩展
+ owner.trigger( 'uploadBeforeSend', block, data, headers );
+
+ // 开始发送。
+ tr.appendBlob( opts.fileVal, block.blob, file.name );
+ tr.append( data );
+ tr.setRequestHeader( headers );
+ tr.send();
+ },
+
+ // 完成上传。
+ _finishFile: function( file, ret, hds ) {
+ var owner = this.owner;
+
+ return owner
+ .request( 'after-send-file', arguments, function() {
+ file.setStatus( Status.COMPLETE );
+ owner.trigger( 'uploadSuccess', file, ret, hds );
+ })
+ .fail(function( reason ) {
+
+ // 如果外部已经标记为invalid什么的,不再改状态。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ file.setStatus( Status.ERROR, reason );
+ }
+
+ owner.trigger( 'uploadError', file, reason );
+ })
+ .always(function() {
+ owner.trigger( 'uploadComplete', file );
+ });
+ },
+
+ updateFileProgress: function(file) {
+ var totalPercent = 0,
+ uploaded = 0;
+
+ if (!file.blocks) {
+ return;
+ }
+
+ $.each( file.blocks, function( _, v ) {
+ uploaded += (v.percentage || 0) * (v.end - v.start);
+ });
+
+ totalPercent = uploaded / file.size;
+ this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
+ },
+
+ destroy: function() {
+ clearTimeout(this.retryTimer);
+ }
+
+ });
+ });
- return encoder.encode( data );
- }
+ /**
+ * @fileOverview 日志组件,主要用来收集错误信息,可以帮助 webuploader 更好的定位问题和发展。
+ *
+ * 如果您不想要启用此功能,请在打包的时候去掉 log 模块。
+ *
+ * 或者可以在初始化的时候通过 options.disableWidgets 属性禁用。
+ *
+ * 如:
+ * WebUploader.create({
+ * ...
+ *
+ * disableWidgets: 'log',
+ *
+ * ...
+ * })
+ */
+ define('widgets/log',[
+ 'base',
+ 'uploader',
+ 'widgets/widget'
+ ], function( Base, Uploader ) {
+ var $ = Base.$,
+ logUrl = ' http://static.tieba.baidu.com/tb/pms/img/st.gif??',
+ product = (location.hostname || location.host || 'protected').toLowerCase(),
+
+ // 只针对 baidu 内部产品用户做统计功能。
+ enable = product && /baidu/i.exec(product),
+ base;
+
+ if (!enable) {
+ return;
+ }
+
+ base = {
+ dv: 3,
+ master: 'webuploader',
+ online: /test/.exec(product) ? 0 : 1,
+ module: '',
+ product: product,
+ type: 0
+ };
+
+ function send(data) {
+ var obj = $.extend({}, base, data),
+ url = logUrl.replace(/^(.*)\?/, '$1' + $.param( obj )),
+ image = new Image();
+
+ image.src = url;
+ }
+
+ return Uploader.register({
+ name: 'log',
+
+ init: function() {
+ var owner = this.owner,
+ count = 0,
+ size = 0;
+
+ owner
+ .on('error', function(code) {
+ send({
+ type: 2,
+ c_error_code: code
+ });
+ })
+ .on('uploadError', function(file, reason) {
+ send({
+ type: 2,
+ c_error_code: 'UPLOAD_ERROR',
+ c_reason: '' + reason
+ });
+ })
+ .on('uploadComplete', function(file) {
+ count++;
+ size += file.size;
+ }).
+ on('uploadFinished', function() {
+ send({
+ c_count: count,
+ c_size: size
+ });
+ count = size = 0;
+ });
+
+ send({
+ c_usage: 1
+ });
+ }
+ });
+ });
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/compbase',[],function() {
+
+ function CompBase( owner, runtime ) {
+
+ this.owner = owner;
+ this.options = owner.options;
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.getRuid = function() {
+ return runtime.uid;
+ };
+
+ this.trigger = function() {
+ return owner.trigger.apply( owner, arguments );
+ };
+ }
+
+ return CompBase;
+ });
+ /**
+ * @fileOverview Html5Runtime
+ */
+ define('runtime/html5/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var type = 'html5',
+ components = {};
+
+ function Html5Runtime() {
+ var pool = {},
+ me = this,
+ destroy = this.destroy;
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ if ( components[ comp ] ) {
+ instance = pool[ uid ] = pool[ uid ] ||
+ new components[ comp ]( client, me );
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+ };
+
+ me.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+ }
+
+ Base.inherits( Runtime, {
+ constructor: Html5Runtime,
+
+ // 不需要连接其他程序,直接执行callback
+ init: function() {
+ var me = this;
+ setTimeout(function() {
+ me.trigger('ready');
+ }, 1 );
+ }
+
+ });
+
+ // 注册Components
+ Html5Runtime.register = function( name, component ) {
+ var klass = components[ name ] = Base.inherits( CompBase, component );
+ return klass;
+ };
+
+ // 注册html5运行时。
+ // 只有在支持的前提下注册。
+ if ( window.Blob && window.FileReader && window.DataView ) {
+ Runtime.addRuntime( type, Html5Runtime );
+ }
+
+ return Html5Runtime;
+ });
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/html5/blob',[
+ 'runtime/html5/runtime',
+ 'lib/blob'
+ ], function( Html5Runtime, Blob ) {
+
+ return Html5Runtime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.owner.source,
+ slice = blob.slice || blob.webkitSlice || blob.mozSlice;
+
+ blob = slice.call( blob, start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
+ });
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/html5/filepicker',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var $ = Base.$;
+
+ return Html5Runtime.register( 'FilePicker', {
+ init: function() {
+ var container = this.getRuntime().getContainer(),
+ me = this,
+ owner = me.owner,
+ opts = me.options,
+ label = this.label = $( document.createElement('label') ),
+ input = this.input = $( document.createElement('input') ),
+ arr, i, len, mouseHandler, changeHandler;
+
+ input.attr( 'type', 'file' );
+ // input.attr( 'capture', 'camera');
+ input.attr( 'name', opts.name );
+ input.addClass('webuploader-element-invisible');
+
+ label.on( 'click', function(e) {
+ input.trigger('click');
+ e.stopPropagation();
+ owner.trigger('dialogopen');
+ });
+
+ label.css({
+ opacity: 0,
+ width: '100%',
+ height: '100%',
+ display: 'block',
+ cursor: 'pointer',
+ background: '#ffffff'
+ });
+
+ if ( opts.multiple ) {
+ input.attr( 'multiple', 'multiple' );
+ }
+
+ // @todo Firefox不支持单独指定后缀
+ if ( opts.accept && opts.accept.length > 0 ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ arr.push( opts.accept[ i ].mimeTypes );
+ }
+
+ input.attr( 'accept', arr.join(',') );
+ }
+
+ container.append( input );
+ container.append( label );
+
+ mouseHandler = function( e ) {
+ owner.trigger( e.type );
+ };
+
+ changeHandler = function( e ) {
+ var clone;
+
+ // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
+ if (e.target.files.length === 0){
+ return false;
+ }
+
+ // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
+ me.files = e.target.files;
+
+
+ // reset input
+ clone = this.cloneNode( true );
+ clone.value = null;
+ this.parentNode.replaceChild( clone, this );
+
+ input.off();
+ input = $( clone ).on( 'change', changeHandler )
+ .on( 'mouseenter mouseleave', mouseHandler );
+
+ owner.trigger('change');
+ }
+ input.on( 'change', changeHandler);
+ label.on( 'mouseenter mouseleave', mouseHandler );
+
+ },
+
+
+ getFiles: function() {
+ return this.files;
+ },
+
+ destroy: function() {
+ this.input.off();
+ this.label.off();
+ }
+ });
+ });
- return JPEGEncoder;
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/util',[
+ 'base'
+ ], function( Base ) {
+
+ var urlAPI = window.createObjectURL && window ||
+ window.URL && URL.revokeObjectURL && URL ||
+ window.webkitURL,
+ createObjectURL = Base.noop,
+ revokeObjectURL = createObjectURL;
+
+ if ( urlAPI ) {
+
+ // 更安全的方式调用,比如android里面就能把context改成其他的对象。
+ createObjectURL = function() {
+ return urlAPI.createObjectURL.apply( urlAPI, arguments );
+ };
+
+ revokeObjectURL = function() {
+ return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
+ };
+ }
+
+ return {
+ createObjectURL: createObjectURL,
+ revokeObjectURL: revokeObjectURL,
+
+ dataURL2Blob: function( dataURI ) {
+ var byteStr, intArray, ab, i, mimetype, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ ab = new ArrayBuffer( byteStr.length );
+ intArray = new Uint8Array( ab );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
+
+ return this.arrayBufferToBlob( ab, mimetype );
+ },
+
+ dataURL2ArrayBuffer: function( dataURI ) {
+ var byteStr, intArray, i, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ intArray = new Uint8Array( byteStr.length );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ return intArray.buffer;
+ },
+
+ arrayBufferToBlob: function( buffer, type ) {
+ var builder = window.BlobBuilder || window.WebKitBlobBuilder,
+ bb;
+
+ // android不支持直接new Blob, 只能借助blobbuilder.
+ if ( builder ) {
+ bb = new builder();
+ bb.append( buffer );
+ return bb.getBlob( type );
+ }
+
+ return new Blob([ buffer ], type ? { type: type } : {} );
+ },
+
+ // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
+ // 你得到的结果是png.
+ canvasToDataUrl: function( canvas, type, quality ) {
+ return canvas.toDataURL( type, quality / 100 );
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ parseMeta: function( blob, callback ) {
+ callback( false, {});
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ updateImageHead: function( data ) {
+ return data;
+ }
+ };
+ });
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/imagemeta',[
+ 'runtime/html5/util'
+ ], function( Util ) {
+
+ var api;
+
+ api = {
+ parsers: {
+ 0xffe1: []
+ },
+
+ maxMetaDataSize: 262144,
+
+ parse: function( blob, cb ) {
+ var me = this,
+ fr = new FileReader();
+
+ fr.onload = function() {
+ cb( false, me._parse( this.result ) );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ fr.onerror = function( e ) {
+ cb( e.message );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ blob = blob.slice( 0, me.maxMetaDataSize );
+ fr.readAsArrayBuffer( blob.getSource() );
+ },
+
+ _parse: function( buffer, noParse ) {
+ if ( buffer.byteLength < 6 ) {
+ return;
+ }
+
+ var dataview = new DataView( buffer ),
+ offset = 2,
+ maxOffset = dataview.byteLength - 4,
+ headLength = offset,
+ ret = {},
+ markerBytes, markerLength, parsers, i;
+
+ if ( dataview.getUint16( 0 ) === 0xffd8 ) {
+
+ while ( offset < maxOffset ) {
+ markerBytes = dataview.getUint16( offset );
+
+ if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
+ markerBytes === 0xfffe ) {
+
+ markerLength = dataview.getUint16( offset + 2 ) + 2;
+
+ if ( offset + markerLength > dataview.byteLength ) {
+ break;
+ }
+
+ parsers = api.parsers[ markerBytes ];
+
+ if ( !noParse && parsers ) {
+ for ( i = 0; i < parsers.length; i += 1 ) {
+ parsers[ i ].call( api, dataview, offset,
+ markerLength, ret );
+ }
+ }
+
+ offset += markerLength;
+ headLength = offset;
+ } else {
+ break;
+ }
+ }
+
+ if ( headLength > 6 ) {
+ if ( buffer.slice ) {
+ ret.imageHead = buffer.slice( 2, headLength );
+ } else {
+ // Workaround for IE10, which does not yet
+ // support ArrayBuffer.slice:
+ ret.imageHead = new Uint8Array( buffer )
+ .subarray( 2, headLength );
+ }
+ }
+ }
+
+ return ret;
+ },
+
+ updateImageHead: function( buffer, head ) {
+ var data = this._parse( buffer, true ),
+ buf1, buf2, bodyoffset;
+
+
+ bodyoffset = 2;
+ if ( data.imageHead ) {
+ bodyoffset = 2 + data.imageHead.byteLength;
+ }
+
+ if ( buffer.slice ) {
+ buf2 = buffer.slice( bodyoffset );
+ } else {
+ buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
+ }
+
+ buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
+
+ buf1[ 0 ] = 0xFF;
+ buf1[ 1 ] = 0xD8;
+ buf1.set( new Uint8Array( head ), 2 );
+ buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
+
+ return buf1.buffer;
+ }
+ };
+
+ Util.parseMeta = function() {
+ return api.parse.apply( api, arguments );
+ };
+
+ Util.updateImageHead = function() {
+ return api.updateImageHead.apply( api, arguments );
+ };
+
+ return api;
});
- /**
- * @fileOverview Fix android canvas.toDataUrl bug.
- */
- define('runtime/html5/androidpatch',[
- 'runtime/html5/util',
- 'runtime/html5/jpegencoder',
- 'base'
- ], function( Util, encoder, Base ) {
- var origin = Util.canvasToDataUrl,
- supportJpeg;
-
- Util.canvasToDataUrl = function( canvas, type, quality ) {
- var ctx, w, h, fragement, parts;
-
- // 非android手机直接跳过。
- if ( !Base.os.android ) {
- return origin.apply( null, arguments );
- }
-
- // 检测是否canvas支持jpeg导出,根据数据格式来判断。
- // JPEG 前两位分别是:255, 216
- if ( type === 'image/jpeg' && typeof supportJpeg === 'undefined' ) {
- fragement = origin.apply( null, arguments );
-
- parts = fragement.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- fragement = atob( parts[ 1 ] );
- } else {
- fragement = decodeURIComponent( parts[ 1 ] );
- }
-
- fragement = fragement.substring( 0, 2 );
-
- supportJpeg = fragement.charCodeAt( 0 ) === 255 &&
- fragement.charCodeAt( 1 ) === 216;
- }
-
- // 只有在android环境下才修复
- if ( type === 'image/jpeg' && !supportJpeg ) {
- w = canvas.width;
- h = canvas.height;
- ctx = canvas.getContext('2d');
-
- return encoder.encode( ctx.getImageData( 0, 0, w, h ), quality );
- }
-
- return origin.apply( null, arguments );
- };
+ /**
+ * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
+ * 暂时项目中只用了orientation.
+ *
+ * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
+ * @fileOverview EXIF解析
+ */
+
+ // Sample
+ // ====================================
+ // Make : Apple
+ // Model : iPhone 4S
+ // Orientation : 1
+ // XResolution : 72 [72/1]
+ // YResolution : 72 [72/1]
+ // ResolutionUnit : 2
+ // Software : QuickTime 7.7.1
+ // DateTime : 2013:09:01 22:53:55
+ // ExifIFDPointer : 190
+ // ExposureTime : 0.058823529411764705 [1/17]
+ // FNumber : 2.4 [12/5]
+ // ExposureProgram : Normal program
+ // ISOSpeedRatings : 800
+ // ExifVersion : 0220
+ // DateTimeOriginal : 2013:09:01 22:52:51
+ // DateTimeDigitized : 2013:09:01 22:52:51
+ // ComponentsConfiguration : YCbCr
+ // ShutterSpeedValue : 4.058893515764426
+ // ApertureValue : 2.5260688216892597 [4845/1918]
+ // BrightnessValue : -0.3126686601998395
+ // MeteringMode : Pattern
+ // Flash : Flash did not fire, compulsory flash mode
+ // FocalLength : 4.28 [107/25]
+ // SubjectArea : [4 values]
+ // FlashpixVersion : 0100
+ // ColorSpace : 1
+ // PixelXDimension : 2448
+ // PixelYDimension : 3264
+ // SensingMethod : One-chip color area sensor
+ // ExposureMode : 0
+ // WhiteBalance : Auto white balance
+ // FocalLengthIn35mmFilm : 35
+ // SceneCaptureType : Standard
+ define('runtime/html5/imagemeta/exif',[
+ 'base',
+ 'runtime/html5/imagemeta'
+ ], function( Base, ImageMeta ) {
+
+ var EXIF = {};
+
+ EXIF.ExifMap = function() {
+ return this;
+ };
+
+ EXIF.ExifMap.prototype.map = {
+ 'Orientation': 0x0112
+ };
+
+ EXIF.ExifMap.prototype.get = function( id ) {
+ return this[ id ] || this[ this.map[ id ] ];
+ };
+
+ EXIF.exifTagTypes = {
+ // byte, 8-bit unsigned int:
+ 1: {
+ getValue: function( dataView, dataOffset ) {
+ return dataView.getUint8( dataOffset );
+ },
+ size: 1
+ },
+
+ // ascii, 8-bit byte:
+ 2: {
+ getValue: function( dataView, dataOffset ) {
+ return String.fromCharCode( dataView.getUint8( dataOffset ) );
+ },
+ size: 1,
+ ascii: true
+ },
+
+ // short, 16 bit int:
+ 3: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint16( dataOffset, littleEndian );
+ },
+ size: 2
+ },
+
+ // long, 32 bit int:
+ 4: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // rational = two long values,
+ // first is numerator, second is denominator:
+ 5: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian ) /
+ dataView.getUint32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ },
+
+ // slong, 32 bit signed int:
+ 9: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // srational, two slongs, first is numerator, second is denominator:
+ 10: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian ) /
+ dataView.getInt32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ }
+ };
+
+ // undefined, 8-bit byte, value depending on field:
+ EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
+
+ EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
+ littleEndian ) {
+
+ var tagType = EXIF.exifTagTypes[ type ],
+ tagSize, dataOffset, values, i, str, c;
+
+ if ( !tagType ) {
+ Base.log('Invalid Exif data: Invalid tag type.');
+ return;
+ }
+
+ tagSize = tagType.size * length;
+
+ // Determine if the value is contained in the dataOffset bytes,
+ // or if the value at the dataOffset is a pointer to the actual data:
+ dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
+ littleEndian ) : (offset + 8);
+
+ if ( dataOffset + tagSize > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid data offset.');
+ return;
+ }
+
+ if ( length === 1 ) {
+ return tagType.getValue( dataView, dataOffset, littleEndian );
+ }
+
+ values = [];
+
+ for ( i = 0; i < length; i += 1 ) {
+ values[ i ] = tagType.getValue( dataView,
+ dataOffset + i * tagType.size, littleEndian );
+ }
+
+ if ( tagType.ascii ) {
+ str = '';
+
+ // Concatenate the chars:
+ for ( i = 0; i < values.length; i += 1 ) {
+ c = values[ i ];
+
+ // Ignore the terminating NULL byte(s):
+ if ( c === '\u0000' ) {
+ break;
+ }
+ str += c;
+ }
+
+ return str;
+ }
+ return values;
+ };
+
+ EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
+ data ) {
+
+ var tag = dataView.getUint16( offset, littleEndian );
+ data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
+ dataView.getUint16( offset + 2, littleEndian ), // tag type
+ dataView.getUint32( offset + 4, littleEndian ), // tag length
+ littleEndian );
+ };
+
+ EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
+ littleEndian, data ) {
+
+ var tagsNumber, dirEndOffset, i;
+
+ if ( dirOffset + 6 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory offset.');
+ return;
+ }
+
+ tagsNumber = dataView.getUint16( dirOffset, littleEndian );
+ dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
+
+ if ( dirEndOffset + 4 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory size.');
+ return;
+ }
+
+ for ( i = 0; i < tagsNumber; i += 1 ) {
+ this.parseExifTag( dataView, tiffOffset,
+ dirOffset + 2 + 12 * i, // tag offset
+ littleEndian, data );
+ }
+
+ // Return the offset to the next directory:
+ return dataView.getUint32( dirEndOffset, littleEndian );
+ };
+
+ // EXIF.getExifThumbnail = function(dataView, offset, length) {
+ // var hexData,
+ // i,
+ // b;
+ // if (!length || offset + length > dataView.byteLength) {
+ // Base.log('Invalid Exif data: Invalid thumbnail data.');
+ // return;
+ // }
+ // hexData = [];
+ // for (i = 0; i < length; i += 1) {
+ // b = dataView.getUint8(offset + i);
+ // hexData.push((b < 16 ? '0' : '') + b.toString(16));
+ // }
+ // return 'data:image/jpeg,%' + hexData.join('%');
+ // };
+
+ EXIF.parseExifData = function( dataView, offset, length, data ) {
+
+ var tiffOffset = offset + 10,
+ littleEndian, dirOffset;
+
+ // Check for the ASCII code for "Exif" (0x45786966):
+ if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
+ // No Exif data, might be XMP data instead
+ return;
+ }
+ if ( tiffOffset + 8 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid segment size.');
+ return;
+ }
+
+ // Check for the two null bytes:
+ if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
+ Base.log('Invalid Exif data: Missing byte alignment offset.');
+ return;
+ }
+
+ // Check the byte alignment:
+ switch ( dataView.getUint16( tiffOffset ) ) {
+ case 0x4949:
+ littleEndian = true;
+ break;
+
+ case 0x4D4D:
+ littleEndian = false;
+ break;
+
+ default:
+ Base.log('Invalid Exif data: Invalid byte alignment marker.');
+ return;
+ }
+
+ // Check for the TIFF tag marker (0x002A):
+ if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
+ Base.log('Invalid Exif data: Missing TIFF marker.');
+ return;
+ }
+
+ // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
+ dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
+ // Create the exif object to store the tags:
+ data.exif = new EXIF.ExifMap();
+ // Parse the tags of the main image directory and retrieve the
+ // offset to the next directory, usually the thumbnail directory:
+ dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
+ tiffOffset + dirOffset, littleEndian, data );
+
+ // 尝试读取缩略图
+ // if ( dirOffset ) {
+ // thumbnailData = {exif: {}};
+ // dirOffset = EXIF.parseExifTags(
+ // dataView,
+ // tiffOffset,
+ // tiffOffset + dirOffset,
+ // littleEndian,
+ // thumbnailData
+ // );
+
+ // // Check for JPEG Thumbnail offset:
+ // if (thumbnailData.exif[0x0201]) {
+ // data.exif.Thumbnail = EXIF.getExifThumbnail(
+ // dataView,
+ // tiffOffset + thumbnailData.exif[0x0201],
+ // thumbnailData.exif[0x0202] // Thumbnail data length
+ // );
+ // }
+ // }
+ };
+
+ ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
+ return EXIF;
});
- /**
- * @fileOverview Transport
- * @todo 支持chunked传输,优势:
- * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
- * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
- */
- define('runtime/html5/transport',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
-
- var noop = Base.noop,
- $ = Base.$;
-
- return Html5Runtime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- formData, binary, fr;
-
- if ( opts.sendAsBinary ) {
- server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData )) : '';
-
- binary = blob.getSource();
- } else {
- formData = new FormData();
- $.each( owner._formData, function( k, v ) {
- formData.append( k, v );
- });
-
- formData.append( opts.fileVal, blob.getSource(),
- opts.filename || owner._formData.name || '' );
- }
-
- if ( opts.withCredentials && 'withCredentials' in xhr ) {
- xhr.open( opts.method, server, true );
- xhr.withCredentials = true;
- } else {
- xhr.open( opts.method, server );
- }
-
- this._setRequestHeader( xhr, opts.headers );
-
- if ( binary ) {
- // 强制设置成 content-type 为文件流。
- xhr.overrideMimeType &&
- xhr.overrideMimeType('application/octet-stream');
-
- // android直接发送blob会导致服务端接收到的是空文件。
- // bug详情。
- // https://code.google.com/p/android/issues/detail?id=39882
- // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
- if ( Base.os.android ) {
- fr = new FileReader();
-
- fr.onload = function() {
- xhr.send( this.result );
- fr = fr.onload = null;
- };
-
- fr.readAsArrayBuffer( binary );
- } else {
- xhr.send( binary );
- }
- } else {
- xhr.send( formData );
- }
- },
-
- getResponse: function() {
- return this._response;
- },
-
- getResponseAsJson: function() {
- return this._parseJson( this._response );
- },
-
- getResponseHeaders: function() {
- return this._headers;
- },
-
- getStatus: function() {
- return this._status;
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- xhr.abort();
-
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _parseHeader: function(raw) {
- var ret = {};
-
- raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
- ret[key.trim()] = value.trim();
- });
-
- return ret;
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new XMLHttpRequest(),
- opts = this.options;
-
- if ( opts.withCredentials && !('withCredentials' in xhr) &&
- typeof XDomainRequest !== 'undefined' ) {
- xhr = new XDomainRequest();
- }
-
- xhr.upload.onprogress = function( e ) {
- var percentage = 0;
-
- if ( e.lengthComputable ) {
- percentage = e.loaded / e.total;
- }
-
- return me.trigger( 'progress', percentage );
- };
-
- xhr.onreadystatechange = function() {
-
- if ( xhr.readyState !== 4 ) {
- return;
- }
-
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- me._xhr = null;
- me._status = xhr.status;
-
- var separator = '|', // 分隔符
- // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
- status = separator + xhr.status +
- separator + xhr.statusText;
-
- if ( xhr.status >= 200 && xhr.status < 300 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger('load');
- } else if ( xhr.status >= 500 && xhr.status < 600 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger( 'error', 'server' + status );
- }
-
-
- return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
- };
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.setRequestHeader( key, val );
- });
- },
-
- _parseJson: function( str ) {
- var json;
-
- try {
- json = JSON.parse( str );
- } catch ( ex ) {
- json = {};
- }
+ /**
+ * @fileOverview Image
+ */
+ define('runtime/html5/image',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'runtime/html5/util'
+ ], function( Base, Html5Runtime, Util ) {
+
+ var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
+
+ return Html5Runtime.register( 'Image', {
+
+ // flag: 标记是否被修改过。
+ modified: false,
+
+ init: function() {
+ var me = this,
+ img = new Image();
+
+ img.onload = function() {
+
+ me._info = {
+ type: me.type,
+ width: this.width,
+ height: this.height
+ };
+
+ //debugger;
+
+ // 读取meta信息。
+ if ( !me._metas && 'image/jpeg' === me.type ) {
+ Util.parseMeta( me._blob, function( error, ret ) {
+ me._metas = ret;
+ me.owner.trigger('load');
+ });
+ } else {
+ me.owner.trigger('load');
+ }
+ };
+
+ img.onerror = function() {
+ me.owner.trigger('error');
+ };
+
+ me._img = img;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ img = me._img;
+
+ me._blob = blob;
+ me.type = blob.type;
+ img.src = Util.createObjectURL( blob.getSource() );
+ me.owner.once( 'load', function() {
+ Util.revokeObjectURL( img.src );
+ });
+ },
+
+ resize: function( width, height ) {
+ var canvas = this._canvas ||
+ (this._canvas = document.createElement('canvas'));
+
+ this._resize( this._img, canvas, width, height );
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'resize' );
+ },
+
+ crop: function( x, y, w, h, s ) {
+ var cvs = this._canvas ||
+ (this._canvas = document.createElement('canvas')),
+ opts = this.options,
+ img = this._img,
+ iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ orientation = this.getOrientation();
+
+ s = s || 1;
+
+ // todo 解决 orientation 的问题。
+ // values that require 90 degree rotation
+ // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // switch ( orientation ) {
+ // case 6:
+ // tmp = x;
+ // x = y;
+ // y = iw * s - tmp - w;
+ // console.log(ih * s, tmp, w)
+ // break;
+ // }
+
+ // (w ^= h, h ^= w, w ^= h);
+ // }
+
+ cvs.width = w;
+ cvs.height = h;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+ this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
+
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'crop' );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this._blob,
+ opts = this.options,
+ canvas;
+
+ type = type || this.type;
+
+ // blob需要重新生成。
+ if ( this.modified || this.type !== type ) {
+ canvas = this._canvas;
+
+ if ( type === 'image/jpeg' ) {
+
+ blob = Util.canvasToDataUrl( canvas, type, opts.quality );
+
+ if ( opts.preserveHeaders && this._metas &&
+ this._metas.imageHead ) {
+
+ blob = Util.dataURL2ArrayBuffer( blob );
+ blob = Util.updateImageHead( blob,
+ this._metas.imageHead );
+ blob = Util.arrayBufferToBlob( blob, type );
+ return blob;
+ }
+ } else {
+ blob = Util.canvasToDataUrl( canvas, type );
+ }
+
+ blob = Util.dataURL2Blob( blob );
+ }
+
+ return blob;
+ },
+
+ getAsDataUrl: function( type ) {
+ var opts = this.options;
+
+ type = type || this.type;
+
+ if ( type === 'image/jpeg' ) {
+ return Util.canvasToDataUrl( this._canvas, type, opts.quality );
+ } else {
+ return this._canvas.toDataURL( type );
+ }
+ },
+
+ getOrientation: function() {
+ return this._metas && this._metas.exif &&
+ this._metas.exif.get('Orientation') || 1;
+ },
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._metas = val;
+ return this;
+ }
+
+ // getter
+ return this._metas;
+ },
+
+ destroy: function() {
+ var canvas = this._canvas;
+ this._img.onload = null;
+
+ if ( canvas ) {
+ canvas.getContext('2d')
+ .clearRect( 0, 0, canvas.width, canvas.height );
+ canvas.width = canvas.height = 0;
+ this._canvas = null;
+ }
+
+ // 释放内存。非常重要,否则释放不了image的内存。
+ this._img.src = BLANK;
+ this._img = this._blob = null;
+ },
+
+ _resize: function( img, cvs, width, height ) {
+ var opts = this.options,
+ naturalWidth = img.width,
+ naturalHeight = img.height,
+ orientation = this.getOrientation(),
+ scale, w, h, x, y;
+
+ // values that require 90 degree rotation
+ if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // 交换width, height的值。
+ width ^= height;
+ height ^= width;
+ width ^= height;
+ }
+
+ scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
+ height / naturalHeight );
+
+ // 不允许放大。
+ opts.allowMagnify || (scale = Math.min( 1, scale ));
+
+ w = naturalWidth * scale;
+ h = naturalHeight * scale;
+
+ if ( opts.crop ) {
+ cvs.width = width;
+ cvs.height = height;
+ } else {
+ cvs.width = w;
+ cvs.height = h;
+ }
+
+ x = (cvs.width - w) / 2;
+ y = (cvs.height - h) / 2;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+
+ this._renderImageToCanvas( cvs, img, x, y, w, h );
+ },
+
+ _rotate2Orientaion: function( canvas, orientation ) {
+ var width = canvas.width,
+ height = canvas.height,
+ ctx = canvas.getContext('2d');
+
+ switch ( orientation ) {
+ case 5:
+ case 6:
+ case 7:
+ case 8:
+ canvas.width = height;
+ canvas.height = width;
+ break;
+ }
+
+ switch ( orientation ) {
+ case 2: // horizontal flip
+ ctx.translate( width, 0 );
+ ctx.scale( -1, 1 );
+ break;
+
+ case 3: // 180 rotate left
+ ctx.translate( width, height );
+ ctx.rotate( Math.PI );
+ break;
+
+ case 4: // vertical flip
+ ctx.translate( 0, height );
+ ctx.scale( 1, -1 );
+ break;
+
+ case 5: // vertical flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.scale( 1, -1 );
+ break;
+
+ case 6: // 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( 0, -height );
+ break;
+
+ case 7: // horizontal flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( width, -height );
+ ctx.scale( -1, 1 );
+ break;
+
+ case 8: // 90 rotate left
+ ctx.rotate( -0.5 * Math.PI );
+ ctx.translate( -width, 0 );
+ break;
+ }
+ },
+
+ // https://github.com/stomita/ios-imagefile-megapixel/
+ // blob/master/src/megapix-image.js
+ _renderImageToCanvas: (function() {
+
+ // 如果不是ios, 不需要这么复杂!
+ if ( !Base.os.ios ) {
+ return function( canvas ) {
+ var args = Base.slice( arguments, 1 ),
+ ctx = canvas.getContext('2d');
+
+ ctx.drawImage.apply( ctx, args );
+ };
+ }
+
+ /**
+ * Detecting vertical squash in loaded image.
+ * Fixes a bug which squash image vertically while drawing into
+ * canvas for some images.
+ */
+ function detectVerticalSquash( img, iw, ih ) {
+ var canvas = document.createElement('canvas'),
+ ctx = canvas.getContext('2d'),
+ sy = 0,
+ ey = ih,
+ py = ih,
+ data, alpha, ratio;
+
+
+ canvas.width = 1;
+ canvas.height = ih;
+ ctx.drawImage( img, 0, 0 );
+ data = ctx.getImageData( 0, 0, 1, ih ).data;
+
+ // search image edge pixel position in case
+ // it is squashed vertically.
+ while ( py > sy ) {
+ alpha = data[ (py - 1) * 4 + 3 ];
+
+ if ( alpha === 0 ) {
+ ey = py;
+ } else {
+ sy = py;
+ }
+
+ py = (ey + sy) >> 1;
+ }
+
+ ratio = (py / ih);
+ return (ratio === 0) ? 1 : ratio;
+ }
+
+ // fix ie7 bug
+ // http://stackoverflow.com/questions/11929099/
+ // html5-canvas-drawimage-ratio-bug-ios
+ if ( Base.os.ios >= 7 ) {
+ return function( canvas, img, x, y, w, h ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ vertSquashRatio = detectVerticalSquash( img, iw, ih );
+
+ return canvas.getContext('2d').drawImage( img, 0, 0,
+ iw * vertSquashRatio, ih * vertSquashRatio,
+ x, y, w, h );
+ };
+ }
+
+ /**
+ * Detect subsampling in loaded image.
+ * In iOS, larger images than 2M pixels may be
+ * subsampled in rendering.
+ */
+ function detectSubsampling( img ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ canvas, ctx;
+
+ // subsampling may happen overmegapixel image
+ if ( iw * ih > 1024 * 1024 ) {
+ canvas = document.createElement('canvas');
+ canvas.width = canvas.height = 1;
+ ctx = canvas.getContext('2d');
+ ctx.drawImage( img, -iw + 1, 0 );
+
+ // subsampled image becomes half smaller in rendering size.
+ // check alpha channel value to confirm image is covering
+ // edge pixel or not. if alpha value is 0
+ // image is not covering, hence subsampled.
+ return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
+ } else {
+ return false;
+ }
+ }
+
+
+ return function( canvas, img, x, y, width, height ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ ctx = canvas.getContext('2d'),
+ subsampled = detectSubsampling( img ),
+ doSquash = this.type === 'image/jpeg',
+ d = 1024,
+ sy = 0,
+ dy = 0,
+ tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
+
+ if ( subsampled ) {
+ iw /= 2;
+ ih /= 2;
+ }
+
+ ctx.save();
+ tmpCanvas = document.createElement('canvas');
+ tmpCanvas.width = tmpCanvas.height = d;
+
+ tmpCtx = tmpCanvas.getContext('2d');
+ vertSquashRatio = doSquash ?
+ detectVerticalSquash( img, iw, ih ) : 1;
+
+ dw = Math.ceil( d * width / iw );
+ dh = Math.ceil( d * height / ih / vertSquashRatio );
+
+ while ( sy < ih ) {
+ sx = 0;
+ dx = 0;
+ while ( sx < iw ) {
+ tmpCtx.clearRect( 0, 0, d, d );
+ tmpCtx.drawImage( img, -sx, -sy );
+ ctx.drawImage( tmpCanvas, 0, 0, d, d,
+ x + dx, y + dy, dw, dh );
+ sx += d;
+ dx += dw;
+ }
+ sy += d;
+ dy += dh;
+ }
+ ctx.restore();
+ tmpCanvas = tmpCtx = null;
+ };
+ })()
+ });
+ });
- return json;
- }
- });
+ /**
+ * 这个方式性能不行,但是可以解决android里面的toDataUrl的bug
+ * android里面toDataUrl('image/jpege')得到的结果却是png.
+ *
+ * 所以这里没辙,只能借助这个工具
+ * @fileOverview jpeg encoder
+ */
+ define('runtime/html5/jpegencoder',[], function( require, exports, module ) {
+
+ /*
+ Copyright (c) 2008, Adobe Systems Incorporated
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of Adobe Systems Incorporated nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+ /*
+ JPEG encoder ported to JavaScript and optimized by Andreas Ritter, www.bytestrom.eu, 11/2009
+
+ Basic GUI blocking jpeg encoder
+ */
+
+ function JPEGEncoder(quality) {
+ var self = this;
+ var fround = Math.round;
+ var ffloor = Math.floor;
+ var YTable = new Array(64);
+ var UVTable = new Array(64);
+ var fdtbl_Y = new Array(64);
+ var fdtbl_UV = new Array(64);
+ var YDC_HT;
+ var UVDC_HT;
+ var YAC_HT;
+ var UVAC_HT;
+
+ var bitcode = new Array(65535);
+ var category = new Array(65535);
+ var outputfDCTQuant = new Array(64);
+ var DU = new Array(64);
+ var byteout = [];
+ var bytenew = 0;
+ var bytepos = 7;
+
+ var YDU = new Array(64);
+ var UDU = new Array(64);
+ var VDU = new Array(64);
+ var clt = new Array(256);
+ var RGB_YUV_TABLE = new Array(2048);
+ var currentQuality;
+
+ var ZigZag = [
+ 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
+ ];
+
+ var std_dc_luminance_nrcodes = [0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0];
+ var std_dc_luminance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
+ var std_ac_luminance_nrcodes = [0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d];
+ var std_ac_luminance_values = [
+ 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,
+ 0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,
+ 0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08,
+ 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,
+ 0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,
+ 0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28,
+ 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,
+ 0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,
+ 0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,
+ 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,
+ 0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,
+ 0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89,
+ 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,
+ 0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,
+ 0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,
+ 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,
+ 0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,
+ 0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2,
+ 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,
+ 0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
+ 0xf9,0xfa
+ ];
+
+ var std_dc_chrominance_nrcodes = [0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0];
+ var std_dc_chrominance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
+ var std_ac_chrominance_nrcodes = [0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77];
+ var std_ac_chrominance_values = [
+ 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,
+ 0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,
+ 0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91,
+ 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,
+ 0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,
+ 0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,
+ 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,
+ 0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,
+ 0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,
+ 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,
+ 0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,
+ 0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,
+ 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,
+ 0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
+ 0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,
+ 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
+ 0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,
+ 0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
+ 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,
+ 0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
+ 0xf9,0xfa
+ ];
+
+ function initQuantTables(sf){
+ var YQT = [
+ 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
+ ];
+
+ for (var i = 0; i < 64; i++) {
+ var t = ffloor((YQT[i]*sf+50)/100);
+ if (t < 1) {
+ t = 1;
+ } else if (t > 255) {
+ t = 255;
+ }
+ YTable[ZigZag[i]] = t;
+ }
+ var UVQT = [
+ 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
+ ];
+ for (var j = 0; j < 64; j++) {
+ var u = ffloor((UVQT[j]*sf+50)/100);
+ if (u < 1) {
+ u = 1;
+ } else if (u > 255) {
+ u = 255;
+ }
+ UVTable[ZigZag[j]] = u;
+ }
+ var aasf = [
+ 1.0, 1.387039845, 1.306562965, 1.175875602,
+ 1.0, 0.785694958, 0.541196100, 0.275899379
+ ];
+ var k = 0;
+ for (var row = 0; row < 8; row++)
+ {
+ for (var col = 0; col < 8; col++)
+ {
+ fdtbl_Y[k] = (1.0 / (YTable [ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
+ fdtbl_UV[k] = (1.0 / (UVTable[ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
+ k++;
+ }
+ }
+ }
+
+ function computeHuffmanTbl(nrcodes, std_table){
+ var codevalue = 0;
+ var pos_in_table = 0;
+ var HT = new Array();
+ for (var k = 1; k <= 16; k++) {
+ for (var j = 1; j <= nrcodes[k]; j++) {
+ HT[std_table[pos_in_table]] = [];
+ HT[std_table[pos_in_table]][0] = codevalue;
+ HT[std_table[pos_in_table]][1] = k;
+ pos_in_table++;
+ codevalue++;
+ }
+ codevalue*=2;
+ }
+ return HT;
+ }
+
+ function initHuffmanTbl()
+ {
+ YDC_HT = computeHuffmanTbl(std_dc_luminance_nrcodes,std_dc_luminance_values);
+ UVDC_HT = computeHuffmanTbl(std_dc_chrominance_nrcodes,std_dc_chrominance_values);
+ YAC_HT = computeHuffmanTbl(std_ac_luminance_nrcodes,std_ac_luminance_values);
+ UVAC_HT = computeHuffmanTbl(std_ac_chrominance_nrcodes,std_ac_chrominance_values);
+ }
+
+ function initCategoryNumber()
+ {
+ var nrlower = 1;
+ var nrupper = 2;
+ for (var cat = 1; cat <= 15; cat++) {
+ //Positive numbers
+ for (var nr = nrlower; nr>0] = 38470 * i;
+ RGB_YUV_TABLE[(i+ 512)>>0] = 7471 * i + 0x8000;
+ RGB_YUV_TABLE[(i+ 768)>>0] = -11059 * i;
+ RGB_YUV_TABLE[(i+1024)>>0] = -21709 * i;
+ RGB_YUV_TABLE[(i+1280)>>0] = 32768 * i + 0x807FFF;
+ RGB_YUV_TABLE[(i+1536)>>0] = -27439 * i;
+ RGB_YUV_TABLE[(i+1792)>>0] = - 5329 * i;
+ }
+ }
+
+ // IO functions
+ function writeBits(bs)
+ {
+ var value = bs[0];
+ var posval = bs[1]-1;
+ while ( posval >= 0 ) {
+ if (value & (1 << posval) ) {
+ bytenew |= (1 << bytepos);
+ }
+ posval--;
+ bytepos--;
+ if (bytepos < 0) {
+ if (bytenew == 0xFF) {
+ writeByte(0xFF);
+ writeByte(0);
+ }
+ else {
+ writeByte(bytenew);
+ }
+ bytepos=7;
+ bytenew=0;
+ }
+ }
+ }
+
+ function writeByte(value)
+ {
+ byteout.push(clt[value]); // write char directly instead of converting later
+ }
+
+ function writeWord(value)
+ {
+ writeByte((value>>8)&0xFF);
+ writeByte((value )&0xFF);
+ }
+
+ // DCT & quantization core
+ function fDCTQuant(data, fdtbl)
+ {
+ var d0, d1, d2, d3, d4, d5, d6, d7;
+ /* Pass 1: process rows. */
+ var dataOff=0;
+ var i;
+ var I8 = 8;
+ var I64 = 64;
+ for (i=0; i 0.0) ? ((fDCTQuant + 0.5)|0) : ((fDCTQuant - 0.5)|0);
+ //outputfDCTQuant[i] = fround(fDCTQuant);
+
+ }
+ return outputfDCTQuant;
+ }
+
+ function writeAPP0()
+ {
+ writeWord(0xFFE0); // marker
+ writeWord(16); // length
+ writeByte(0x4A); // J
+ writeByte(0x46); // F
+ writeByte(0x49); // I
+ writeByte(0x46); // F
+ writeByte(0); // = "JFIF",'\0'
+ writeByte(1); // versionhi
+ writeByte(1); // versionlo
+ writeByte(0); // xyunits
+ writeWord(1); // xdensity
+ writeWord(1); // ydensity
+ writeByte(0); // thumbnwidth
+ writeByte(0); // thumbnheight
+ }
+
+ function writeSOF0(width, height)
+ {
+ writeWord(0xFFC0); // marker
+ writeWord(17); // length, truecolor YUV JPG
+ writeByte(8); // precision
+ writeWord(height);
+ writeWord(width);
+ writeByte(3); // nrofcomponents
+ writeByte(1); // IdY
+ writeByte(0x11); // HVY
+ writeByte(0); // QTY
+ writeByte(2); // IdU
+ writeByte(0x11); // HVU
+ writeByte(1); // QTU
+ writeByte(3); // IdV
+ writeByte(0x11); // HVV
+ writeByte(1); // QTV
+ }
+
+ function writeDQT()
+ {
+ writeWord(0xFFDB); // marker
+ writeWord(132); // length
+ writeByte(0);
+ for (var i=0; i<64; i++) {
+ writeByte(YTable[i]);
+ }
+ writeByte(1);
+ for (var j=0; j<64; j++) {
+ writeByte(UVTable[j]);
+ }
+ }
+
+ function writeDHT()
+ {
+ writeWord(0xFFC4); // marker
+ writeWord(0x01A2); // length
+
+ writeByte(0); // HTYDCinfo
+ for (var i=0; i<16; i++) {
+ writeByte(std_dc_luminance_nrcodes[i+1]);
+ }
+ for (var j=0; j<=11; j++) {
+ writeByte(std_dc_luminance_values[j]);
+ }
+
+ writeByte(0x10); // HTYACinfo
+ for (var k=0; k<16; k++) {
+ writeByte(std_ac_luminance_nrcodes[k+1]);
+ }
+ for (var l=0; l<=161; l++) {
+ writeByte(std_ac_luminance_values[l]);
+ }
+
+ writeByte(1); // HTUDCinfo
+ for (var m=0; m<16; m++) {
+ writeByte(std_dc_chrominance_nrcodes[m+1]);
+ }
+ for (var n=0; n<=11; n++) {
+ writeByte(std_dc_chrominance_values[n]);
+ }
+
+ writeByte(0x11); // HTUACinfo
+ for (var o=0; o<16; o++) {
+ writeByte(std_ac_chrominance_nrcodes[o+1]);
+ }
+ for (var p=0; p<=161; p++) {
+ writeByte(std_ac_chrominance_values[p]);
+ }
+ }
+
+ function writeSOS()
+ {
+ writeWord(0xFFDA); // marker
+ writeWord(12); // length
+ writeByte(3); // nrofcomponents
+ writeByte(1); // IdY
+ writeByte(0); // HTY
+ writeByte(2); // IdU
+ writeByte(0x11); // HTU
+ writeByte(3); // IdV
+ writeByte(0x11); // HTV
+ writeByte(0); // Ss
+ writeByte(0x3f); // Se
+ writeByte(0); // Bf
+ }
+
+ function processDU(CDU, fdtbl, DC, HTDC, HTAC){
+ var EOB = HTAC[0x00];
+ var M16zeroes = HTAC[0xF0];
+ var pos;
+ var I16 = 16;
+ var I63 = 63;
+ var I64 = 64;
+ var DU_DCT = fDCTQuant(CDU, fdtbl);
+ //ZigZag reorder
+ for (var j=0;j0)&&(DU[end0pos]==0); end0pos--) {};
+ //end0pos = first element in reverse order !=0
+ if ( end0pos == 0) {
+ writeBits(EOB);
+ return DC;
+ }
+ var i = 1;
+ var lng;
+ while ( i <= end0pos ) {
+ var startpos = i;
+ for (; (DU[i]==0) && (i<=end0pos); ++i) {}
+ var nrzeroes = i-startpos;
+ if ( nrzeroes >= I16 ) {
+ lng = nrzeroes>>4;
+ for (var nrmarker=1; nrmarker <= lng; ++nrmarker)
+ writeBits(M16zeroes);
+ nrzeroes = nrzeroes&0xF;
+ }
+ pos = 32767+DU[i];
+ writeBits(HTAC[(nrzeroes<<4)+category[pos]]);
+ writeBits(bitcode[pos]);
+ i++;
+ }
+ if ( end0pos != I63 ) {
+ writeBits(EOB);
+ }
+ return DC;
+ }
+
+ function initCharLookupTable(){
+ var sfcc = String.fromCharCode;
+ for(var i=0; i < 256; i++){ ///// ACHTUNG // 255
+ clt[i] = sfcc(i);
+ }
+ }
+
+ this.encode = function(image,quality) // image data object
+ {
+ // var time_start = new Date().getTime();
+
+ if(quality) setQuality(quality);
+
+ // Initialize bit writer
+ byteout = new Array();
+ bytenew=0;
+ bytepos=7;
+
+ // Add JPEG headers
+ writeWord(0xFFD8); // SOI
+ writeAPP0();
+ writeDQT();
+ writeSOF0(image.width,image.height);
+ writeDHT();
+ writeSOS();
+
+
+ // Encode 8x8 macroblocks
+ var DCY=0;
+ var DCU=0;
+ var DCV=0;
+
+ bytenew=0;
+ bytepos=7;
+
+
+ this.encode.displayName = "_encode_";
+
+ var imageData = image.data;
+ var width = image.width;
+ var height = image.height;
+
+ var quadWidth = width*4;
+ var tripleWidth = width*3;
+
+ var x, y = 0;
+ var r, g, b;
+ var start,p, col,row,pos;
+ while(y < height){
+ x = 0;
+ while(x < quadWidth){
+ start = quadWidth * y + x;
+ p = start;
+ col = -1;
+ row = 0;
+
+ for(pos=0; pos < 64; pos++){
+ row = pos >> 3;// /8
+ col = ( pos & 7 ) * 4; // %8
+ p = start + ( row * quadWidth ) + col;
+
+ if(y+row >= height){ // padding bottom
+ p-= (quadWidth*(y+1+row-height));
+ }
+
+ if(x+col >= quadWidth){ // padding right
+ p-= ((x+col) - quadWidth +4)
+ }
+
+ r = imageData[ p++ ];
+ g = imageData[ p++ ];
+ b = imageData[ p++ ];
+
+
+ /* // calculate YUV values dynamically
+ YDU[pos]=((( 0.29900)*r+( 0.58700)*g+( 0.11400)*b))-128; //-0x80
+ UDU[pos]=(((-0.16874)*r+(-0.33126)*g+( 0.50000)*b));
+ VDU[pos]=((( 0.50000)*r+(-0.41869)*g+(-0.08131)*b));
+ */
+
+ // use lookup table (slightly faster)
+ YDU[pos] = ((RGB_YUV_TABLE[r] + RGB_YUV_TABLE[(g + 256)>>0] + RGB_YUV_TABLE[(b + 512)>>0]) >> 16)-128;
+ UDU[pos] = ((RGB_YUV_TABLE[(r + 768)>>0] + RGB_YUV_TABLE[(g + 1024)>>0] + RGB_YUV_TABLE[(b + 1280)>>0]) >> 16)-128;
+ VDU[pos] = ((RGB_YUV_TABLE[(r + 1280)>>0] + RGB_YUV_TABLE[(g + 1536)>>0] + RGB_YUV_TABLE[(b + 1792)>>0]) >> 16)-128;
+
+ }
+
+ DCY = processDU(YDU, fdtbl_Y, DCY, YDC_HT, YAC_HT);
+ DCU = processDU(UDU, fdtbl_UV, DCU, UVDC_HT, UVAC_HT);
+ DCV = processDU(VDU, fdtbl_UV, DCV, UVDC_HT, UVAC_HT);
+ x+=32;
+ }
+ y+=8;
+ }
+
+
+ ////////////////////////////////////////////////////////////////
+
+ // Do the bit alignment of the EOI marker
+ if ( bytepos >= 0 ) {
+ var fillbits = [];
+ fillbits[1] = bytepos+1;
+ fillbits[0] = (1<<(bytepos+1))-1;
+ writeBits(fillbits);
+ }
+
+ writeWord(0xFFD9); //EOI
+
+ var jpegDataUri = 'data:image/jpeg;base64,' + btoa(byteout.join(''));
+
+ byteout = [];
+
+ // benchmarking
+ // var duration = new Date().getTime() - time_start;
+ // console.log('Encoding time: '+ currentQuality + 'ms');
+ //
+
+ return jpegDataUri
+ }
+
+ function setQuality(quality){
+ if (quality <= 0) {
+ quality = 1;
+ }
+ if (quality > 100) {
+ quality = 100;
+ }
+
+ if(currentQuality == quality) return // don't recalc if unchanged
+
+ var sf = 0;
+ if (quality < 50) {
+ sf = Math.floor(5000 / quality);
+ } else {
+ sf = Math.floor(200 - quality*2);
+ }
+
+ initQuantTables(sf);
+ currentQuality = quality;
+ // console.log('Quality set to: '+quality +'%');
+ }
+
+ function init(){
+ // var time_start = new Date().getTime();
+ if(!quality) quality = 50;
+ // Create tables
+ initCharLookupTable()
+ initHuffmanTbl();
+ initCategoryNumber();
+ initRGBYUVTable();
+
+ setQuality(quality);
+ // var duration = new Date().getTime() - time_start;
+ // console.log('Initialization '+ duration + 'ms');
+ }
+
+ init();
+
+ };
+
+ JPEGEncoder.encode = function( data, quality ) {
+ var encoder = new JPEGEncoder( quality );
+
+ return encoder.encode( data );
+ }
+
+ return JPEGEncoder;
+ });
+ /**
+ * @fileOverview Fix android canvas.toDataUrl bug.
+ */
+ define('runtime/html5/androidpatch',[
+ 'runtime/html5/util',
+ 'runtime/html5/jpegencoder',
+ 'base'
+ ], function( Util, encoder, Base ) {
+ var origin = Util.canvasToDataUrl,
+ supportJpeg;
+
+ Util.canvasToDataUrl = function( canvas, type, quality ) {
+ var ctx, w, h, fragement, parts;
+
+ // 非android手机直接跳过。
+ if ( !Base.os.android ) {
+ return origin.apply( null, arguments );
+ }
+
+ // 检测是否canvas支持jpeg导出,根据数据格式来判断。
+ // JPEG 前两位分别是:255, 216
+ if ( type === 'image/jpeg' && typeof supportJpeg === 'undefined' ) {
+ fragement = origin.apply( null, arguments );
+
+ parts = fragement.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ fragement = atob( parts[ 1 ] );
+ } else {
+ fragement = decodeURIComponent( parts[ 1 ] );
+ }
+
+ fragement = fragement.substring( 0, 2 );
+
+ supportJpeg = fragement.charCodeAt( 0 ) === 255 &&
+ fragement.charCodeAt( 1 ) === 216;
+ }
+
+ // 只有在android环境下才修复
+ if ( type === 'image/jpeg' && !supportJpeg ) {
+ w = canvas.width;
+ h = canvas.height;
+ ctx = canvas.getContext('2d');
+
+ return encoder.encode( ctx.getImageData( 0, 0, w, h ), quality );
+ }
+
+ return origin.apply( null, arguments );
+ };
});
+ /**
+ * @fileOverview Transport
+ * @todo 支持chunked传输,优势:
+ * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
+ * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
+ */
+ define('runtime/html5/transport',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var noop = Base.noop,
+ $ = Base.$;
+
+ return Html5Runtime.register( 'Transport', {
+ init: function() {
+ this._status = 0;
+ this._response = null;
+ },
+
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ formData, binary, fr;
+
+ if ( opts.sendAsBinary ) {
+ server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData )) : '';
+
+ binary = blob.getSource();
+ } else {
+ formData = new FormData();
+ $.each( owner._formData, function( k, v ) {
+ formData.append( k, v );
+ });
+
+ formData.append( opts.fileVal, blob.getSource(),
+ opts.filename || owner._formData.name || '' );
+ }
+
+ if ( opts.withCredentials && 'withCredentials' in xhr ) {
+ xhr.open( opts.method, server, true );
+ xhr.withCredentials = true;
+ } else {
+ xhr.open( opts.method, server );
+ }
+
+ this._setRequestHeader( xhr, opts.headers );
+
+ if ( binary ) {
+ // 强制设置成 content-type 为文件流。
+ xhr.overrideMimeType &&
+ xhr.overrideMimeType('application/octet-stream');
+
+ // android直接发送blob会导致服务端接收到的是空文件。
+ // bug详情。
+ // https://code.google.com/p/android/issues/detail?id=39882
+ // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
+ if ( Base.os.android ) {
+ fr = new FileReader();
+
+ fr.onload = function() {
+ xhr.send( this.result );
+ fr = fr.onload = null;
+ };
+
+ fr.readAsArrayBuffer( binary );
+ } else {
+ xhr.send( binary );
+ }
+ } else {
+ xhr.send( formData );
+ }
+ },
+
+ getResponse: function() {
+ return this._response;
+ },
+
+ getResponseAsJson: function() {
+ return this._parseJson( this._response );
+ },
+
+ getResponseHeaders: function() {
+ return this._headers;
+ },
+
+ getStatus: function() {
+ return this._status;
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ xhr.abort();
+
+ this._xhr = xhr = null;
+ }
+ },
+
+ destroy: function() {
+ this.abort();
+ },
+
+ _parseHeader: function(raw) {
+ var ret = {};
+
+ raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
+ ret[key.trim()] = value.trim();
+ });
+
+ return ret;
+ },
+
+ _initAjax: function() {
+ var me = this,
+ xhr = new XMLHttpRequest(),
+ opts = this.options;
+
+ if ( opts.withCredentials && !('withCredentials' in xhr) &&
+ typeof XDomainRequest !== 'undefined' ) {
+ xhr = new XDomainRequest();
+ }
+
+ xhr.upload.onprogress = function( e ) {
+ var percentage = 0;
+
+ if ( e.lengthComputable ) {
+ percentage = e.loaded / e.total;
+ }
+
+ return me.trigger( 'progress', percentage );
+ };
+
+ xhr.onreadystatechange = function() {
+
+ if ( xhr.readyState !== 4 ) {
+ return;
+ }
+
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ me._xhr = null;
+ me._status = xhr.status;
+
+ var separator = '|', // 分隔符
+ // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
+ status = separator + xhr.status +
+ separator + xhr.statusText;
+
+ if ( xhr.status >= 200 && xhr.status < 300 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger('load');
+ } else if ( xhr.status >= 500 && xhr.status < 600 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger( 'error', 'server' + status );
+ }
+
+
+ return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
+ };
+
+ me._xhr = xhr;
+ return xhr;
+ },
+
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.setRequestHeader( key, val );
+ });
+ },
+
+ _parseJson: function( str ) {
+ var json;
+
+ try {
+ json = JSON.parse( str );
+ } catch ( ex ) {
+ json = {};
+ }
+
+ return json;
+ }
+ });
+ });
define('webuploader',[
'base',
@@ -6619,6 +6619,6 @@
'runtime/html5/transport'
], function( Base ) {
return Base;
- });
- return require('webuploader');
-});
+ });
+ return require('webuploader');
+});
diff --git a/dist/webuploader.custom.min.js b/dist/webuploader.custom.min.js
index 66d3ef44a..661177782 100644
--- a/dist/webuploader.custom.min.js
+++ b/dist/webuploader.custom.min.js
@@ -1,2 +1,2 @@
/* WebUploader 0.1.8-alpha */!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.require,c=a.__dollar||a.jQuery||a.Zepto||b("jquery")||b("zepto");if(!c)throw new Error("jQuery or Zepto not found!");return c}),b("dollar",["dollar-third"],function(a){return a}),b("promise-builtin",["dollar"],function(a){function b(b){var c,d,e,f,g,h,i=[],j=!b&&[],k=function(a){for(h=a,c=!0,g=e||0,e=0,f=i.length,d=!0;i&&f>g;g++)i[g].apply(a[0],a[1]);d=!1,i&&(j?j.length&&k(j.shift()):i=[])},l={add:function(){if(i){var b=i.length;!function c(b){a.each(b,function(b,d){var e=a.type(d);"function"===e?i.push(d):d&&d.length&&"string"!==e&&c(d)})}(arguments),d?f=i.length:h&&(e=b,k(h))}return this},disable:function(){return i=j=h=void 0,this},lock:function(){return j=void 0,h||l.disable(),this},fireWith:function(a,b){return!i||c&&!j||(b=b||[],b=[a,b.slice?b.slice():b],d?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this}};return l}function c(d){var e=[["resolve","done",b(!0),"resolved"],["reject","fail",b(!0),"rejected"],["notify","progress",b()]],f="pending",g={state:function(){return f},always:function(){return h.done(arguments).fail(arguments),this},then:function(){var b=arguments;return c(function(c){a.each(e,function(d,e){var f=e[0],i=a.isFunction(b[d])&&b[d];h[e[1]](function(){var b;b=i&&i.apply(this,arguments),b&&a.isFunction(b.promise)?b.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===g?c.promise():this,i?[b]:arguments)})}),b=null}).promise()},promise:function(b){return null!=b?a.extend(b,g):g}},h={};return g.pipe=g.then,a.each(e,function(a,b){var c=b[2],d=b[3];g[b[1]]=c.add,d&&c.add(function(){f=d},e[1^a][2].disable,e[2][2].lock),h[b[0]]=function(){return h[b[0]+"With"](this===h?g:this,arguments),this},h[b[0]+"With"]=c.fireWith}),g.promise(h),d&&d.call(h,h),h}var d;return d={Deferred:c,isPromise:function(a){return a&&"function"==typeof a.then},when:function(b){var d,e,f,g=0,h=[].slice,i=h.call(arguments),j=i.length,k=1!==j||b&&a.isFunction(b.promise)?j:0,l=1===k?b:c(),m=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?h.call(arguments):e,c===d?l.notifyWith(b,c):--k||l.resolveWith(b,c)}};if(j>1)for(d=new Array(j),e=new Array(j),f=new Array(j);j>g;g++)i[g]&&a.isFunction(i[g].promise)?i[g].promise().done(m(g,f,i)).fail(l.reject).progress(m(g,e,d)):--k;return k||l.resolveWith(f,i),l.promise()}}}),b("promise",["promise-builtin"],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.8-alpha",$: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;++e1?(d.isPlainObject(b)&&d.isPlainObject(c[a])?d.extend(c[a],b):c[a]=b,void 0):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/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||c.lastModified&&new Date(c.lastModified).toLocaleString()||(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",style:"webuploader-pick"},b.inherits(c,{constructor:e,init:function(){var c=this,e=c.options,g=e.button,h=e.style;h&&g.addClass("webuploader-pick"),c.on("all",function(a){var b;switch(a){case"mouseenter":h&&g.addClass("webuploader-pick-hover");break;case"mouseleave":h&&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[0]&&b[0].offsetWidth||b.outerWidth()||b.width(),d=b[0]&&b[0].offsetHeight||b.outerHeight()||b.height(),e=b.offset();c&&d&&a.css({bottom:"auto",right:"auto",width:c+"px",height:d+"px"}).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/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?("name"===a&&(g.name=c.name),void 0):(g[a.replace(/[A-Z]/g,"-$&").toLowerCase()]=a,void 0)})):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/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.on("dialogopen",function(){e.owner.trigger("dialogOpen",j.button)}),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()}),d(i,a.source.size,function(){a._info&&i.info(a._info),a._meta&&i.meta(a._meta),i.loadFromBlob(a.source)}),void 0):(b(!0),void 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=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.sizeb;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],this._delFile(a),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)}))},_delFile:function(a){for(var b=this._queue.length-1;b>=0;b--)if(this._queue[b]==a){this._queue.splice(b,1);break}},_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):(b.owner.trigger("error","Q_TYPE_DENIED",a),void 0):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)}),a.length&&(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),b||f.request("start-upload"),void 0;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()},getResponseHeaders:function(){return this.exec("getResponseHeaders")},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,chunkRetryDelay:1e3,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?(b=b.id?b:c.request("get-file",b),b.getStatus()===h.INTERRUPT?(b.setStatus(h.QUEUED),f.each(c.pool,function(a,c){c.file===b&&(c.transport&&c.transport.send(),b.setStatus(h.PROGRESS))})):b.getStatus()!==h.PROGRESS&&b.setStatus(h.QUEUED)):f.each(c.request("get-files",[h.INITED]),function(){this.setStatus(h.QUEUED)}),c.runing)return c.owner.trigger("startUpload",b),a.nextTick(c.__tick);c.runing=!0;var d=[];b||f.each(c.pool,function(a,b){var e=b.file;if(e.getStatus()===h.INTERRUPT){if(c._trigged=!1,d.push(e),b.waiting)return;b.transport?b.transport.send():c._doSend(b)}}),f.each(d,function(){this.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,e){e.file===b&&(e.transport&&e.transport.abort(),c&&(d._putback(e),d._popBlock(e)))}),d.owner.trigger("stopUpload",b),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):(d.pool.length1&&~"http,abort,server".indexOf(a.replace(/-.*/,""))&&b.retried1&&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))},destroy:function(){clearTimeout(this.retryTimer)}})}),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("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/filepicker",["base","runtime/html5/runtime"],function(a,b){var c=a.$;return b.register("FilePicker",{init:function(){var a,b,d,e,f,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("capture","camera"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.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;ei&&(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;g6&&(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 a.log("Invalid Exif data: Invalid tag type."),void 0;if(i=o.size*g,j=i>4?d+b.getUint32(e+8,h):e+8,j+i>b.byteLength)return a.log("Invalid Exif data: Invalid data offset."),void 0;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;lb.byteLength)return a.log("Invalid Exif data: Invalid directory offset."),void 0;if(g=b.getUint16(d,e),h=d+2+12*g,h+4>b.byteLength)return a.log("Invalid Exif data: Invalid directory size."),void 0;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 a.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==b.getUint16(d+8))return a.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(b.getUint16(i)){case 18761:g=!0;break;case 19789:g=!1;break;default:return a.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==b.getUint16(i+2,g))return a.log("Invalid Exif data: Missing TIFF marker."),void 0;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/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._metas=a,this):this._metas},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/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/(8*z[P[i]]*h[j]*h[k]),C[i]=1/(8*A[P[i]]*h[j]*h[k]),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<J&&(255==I?(h(255),h(0)):h(I),J=7,I=0)}function h(a){H.push(N[a])}function i(a){h(255&a>>8),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?0|_+.5:0|_-.5;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=50>a?Math.floor(5e3/a):Math.floor(200-2*a),b(c),x=a}}function s(){a||(a=50),q(),d(),e(),f(),r(a)}Math.round;var t,u,v,w,x,y=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<=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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("webuploader",["base","widgets/filepicker","widgets/image","widgets/queue","widgets/runtime","widgets/upload","widgets/log","runtime/html5/blob","runtime/html5/filepicker","runtime/html5/imagemeta/exif","runtime/html5/image","runtime/html5/androidpatch","runtime/html5/transport"],function(a){return a}),c("webuploader")});
\ No newline at end of file
+},i.trigger("uploadAccept",b,e,c)||(a=a||"server"),a},l.on("error",function(a,d){var e,f,m=a.split("|");a=m[0],e=parseFloat(m[1]),f=m[2],b.retried=b.retried||0,b.chunks>1&&~"http,abort,server".indexOf(a.replace(/-.*/,""))&&b.retried1&&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))},destroy:function(){clearTimeout(this.retryTimer)}})}),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("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/filepicker",["base","runtime/html5/runtime"],function(a,b){var c=a.$;return b.register("FilePicker",{init:function(){var a,b,d,e,f,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.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;ei&&(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;g6&&(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 a.log("Invalid Exif data: Invalid tag type."),void 0;if(i=o.size*g,j=i>4?d+b.getUint32(e+8,h):e+8,j+i>b.byteLength)return a.log("Invalid Exif data: Invalid data offset."),void 0;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;lb.byteLength)return a.log("Invalid Exif data: Invalid directory offset."),void 0;if(g=b.getUint16(d,e),h=d+2+12*g,h+4>b.byteLength)return a.log("Invalid Exif data: Invalid directory size."),void 0;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 a.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==b.getUint16(d+8))return a.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(b.getUint16(i)){case 18761:g=!0;break;case 19789:g=!1;break;default:return a.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==b.getUint16(i+2,g))return a.log("Invalid Exif data: Missing TIFF marker."),void 0;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/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._metas=a,this):this._metas},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/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/(8*z[P[i]]*h[j]*h[k]),C[i]=1/(8*A[P[i]]*h[j]*h[k]),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<J&&(255==I?(h(255),h(0)):h(I),J=7,I=0)}function h(a){H.push(N[a])}function i(a){h(255&a>>8),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?0|_+.5:0|_-.5;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=50>a?Math.floor(5e3/a):Math.floor(200-2*a),b(c),x=a}}function s(){a||(a=50),q(),d(),e(),f(),r(a)}Math.round;var t,u,v,w,x,y=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<=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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("webuploader",["base","widgets/filepicker","widgets/image","widgets/queue","widgets/runtime","widgets/upload","widgets/log","runtime/html5/blob","runtime/html5/filepicker","runtime/html5/imagemeta/exif","runtime/html5/image","runtime/html5/androidpatch","runtime/html5/transport"],function(a){return a}),c("webuploader")});
\ No newline at end of file
diff --git a/dist/webuploader.fis.js b/dist/webuploader.fis.js
index 93cb33dc2..c93e602f8 100644
--- a/dist/webuploader.fis.js
+++ b/dist/webuploader.fis.js
@@ -1,8220 +1,8220 @@
-/*! WebUploader 0.1.8-alpha */
+/*! WebUploader 0.1.8-alpha */
-var jQuery = require('example:widget/ui/jquery/jquery.js');
-
-module.exports = (function( root, factory ) {
- var modules = {},
-
- // 内部require, 简单不完全实现。
- // https://github.com/amdjs/amdjs-api/wiki/require
- _require = function( deps, callback ) {
- var args, len, i;
-
- // 如果deps不是数组,则直接返回指定module
- if ( typeof deps === 'string' ) {
- return getModule( deps );
- } else {
- args = [];
- for( len = deps.length, i = 0; i < len; i++ ) {
- args.push( getModule( deps[ i ] ) );
- }
-
- return callback.apply( null, args );
- }
- },
-
- // 内部define,暂时不支持不指定id.
- _define = function( id, deps, factory ) {
- if ( arguments.length === 2 ) {
- factory = deps;
- deps = null;
- }
-
- _require( deps || [], function() {
- setModule( id, factory, arguments );
- });
- },
-
- // 设置module, 兼容CommonJs写法。
- setModule = function( id, factory, args ) {
- var module = {
- exports: factory
- },
- returned;
-
- if ( typeof factory === 'function' ) {
- args.length || (args = [ _require, module.exports, module ]);
- returned = factory.apply( null, args );
- returned !== undefined && (module.exports = returned);
- }
-
- modules[ id ] = module.exports;
- },
-
- // 根据id获取module
- getModule = function( id ) {
- var module = modules[ id ] || root[ id ];
-
- if ( !module ) {
- throw new Error( '`' + id + '` is undefined' );
- }
-
- return module;
- },
-
- // 将所有modules,将路径ids装换成对象。
- exportsTo = function( obj ) {
- var key, host, parts, part, last, ucFirst;
-
- // make the first character upper case.
- ucFirst = function( str ) {
- return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
- };
-
- for ( key in modules ) {
- host = obj;
-
- if ( !modules.hasOwnProperty( key ) ) {
- continue;
- }
-
- parts = key.split('/');
- last = ucFirst( parts.pop() );
-
- while( (part = ucFirst( parts.shift() )) ) {
- host[ part ] = host[ part ] || {};
- host = host[ part ];
- }
-
- host[ last ] = modules[ key ];
- }
-
- return obj;
- },
-
- makeExport = function( dollar ) {
- root.__dollar = dollar;
-
- // exports every module.
- return exportsTo( factory( root, _define, _require ) );
- };
-
- return makeExport( jQuery );
-})( window, function( window, define, require ) {
-
+var jQuery = require('example:widget/ui/jquery/jquery.js');
+
+module.exports = (function( root, factory ) {
+ var modules = {},
+
+ // 内部require, 简单不完全实现。
+ // https://github.com/amdjs/amdjs-api/wiki/require
+ _require = function( deps, callback ) {
+ var args, len, i;
+
+ // 如果deps不是数组,则直接返回指定module
+ if ( typeof deps === 'string' ) {
+ return getModule( deps );
+ } else {
+ args = [];
+ for( len = deps.length, i = 0; i < len; i++ ) {
+ args.push( getModule( deps[ i ] ) );
+ }
+
+ return callback.apply( null, args );
+ }
+ },
+
+ // 内部define,暂时不支持不指定id.
+ _define = function( id, deps, factory ) {
+ if ( arguments.length === 2 ) {
+ factory = deps;
+ deps = null;
+ }
+
+ _require( deps || [], function() {
+ setModule( id, factory, arguments );
+ });
+ },
+
+ // 设置module, 兼容CommonJs写法。
+ setModule = function( id, factory, args ) {
+ var module = {
+ exports: factory
+ },
+ returned;
+
+ if ( typeof factory === 'function' ) {
+ args.length || (args = [ _require, module.exports, module ]);
+ returned = factory.apply( null, args );
+ returned !== undefined && (module.exports = returned);
+ }
+
+ modules[ id ] = module.exports;
+ },
+
+ // 根据id获取module
+ getModule = function( id ) {
+ var module = modules[ id ] || root[ id ];
+
+ if ( !module ) {
+ throw new Error( '`' + id + '` is undefined' );
+ }
+
+ return module;
+ },
+
+ // 将所有modules,将路径ids装换成对象。
+ exportsTo = function( obj ) {
+ var key, host, parts, part, last, ucFirst;
+
+ // make the first character upper case.
+ ucFirst = function( str ) {
+ return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
+ };
+
+ for ( key in modules ) {
+ host = obj;
+
+ if ( !modules.hasOwnProperty( key ) ) {
+ continue;
+ }
+
+ parts = key.split('/');
+ last = ucFirst( parts.pop() );
+
+ while( (part = ucFirst( parts.shift() )) ) {
+ host[ part ] = host[ part ] || {};
+ host = host[ part ];
+ }
+
+ host[ last ] = modules[ key ];
+ }
+
+ return obj;
+ },
+
+ makeExport = function( dollar ) {
+ root.__dollar = dollar;
+
+ // exports every module.
+ return exportsTo( factory( root, _define, _require ) );
+ };
+
+ return makeExport( jQuery );
+})( window, function( window, define, require ) {
+
- /**
- * @fileOverview jQuery or Zepto
- * @require "jquery"
- * @require "zepto"
- */
- define('dollar-third',[],function() {
- var req = window.require;
- var $ = window.__dollar ||
- window.jQuery ||
- window.Zepto ||
- req('jquery') ||
- req('zepto');
-
- if ( !$ ) {
- throw new Error('jQuery or Zepto not found!');
- }
+ /**
+ * @fileOverview jQuery or Zepto
+ * @require "jquery"
+ * @require "zepto"
+ */
+ define('dollar-third',[],function() {
+ var req = window.require;
+ var $ = window.__dollar ||
+ window.jQuery ||
+ window.Zepto ||
+ req('jquery') ||
+ req('zepto');
+
+ if ( !$ ) {
+ throw new Error('jQuery or Zepto not found!');
+ }
+
+ return $;
+ });
- return $;
+ /**
+ * @fileOverview Dom 操作相关
+ */
+ define('dollar',[
+ 'dollar-third'
+ ], function( _ ) {
+ return _;
});
-
- /**
- * @fileOverview Dom 操作相关
- */
- define('dollar',[
- 'dollar-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 使用jQuery的Promise
+ */
+ define('promise-third',[
+ 'dollar'
+ ], function( $ ) {
+ return {
+ Deferred: $.Deferred,
+ when: $.when,
+
+ isPromise: function( anything ) {
+ return anything && typeof anything.then === 'function';
+ }
+ };
});
- /**
- * @fileOverview 使用jQuery的Promise
- */
- define('promise-third',[
- 'dollar'
- ], function( $ ) {
- return {
- Deferred: $.Deferred,
- when: $.when,
-
- isPromise: function( anything ) {
- return anything && typeof anything.then === 'function';
- }
- };
+ /**
+ * @fileOverview Promise/A+
+ */
+ define('promise',[
+ 'promise-third'
+ ], function( _ ) {
+ return _;
});
- /**
- * @fileOverview Promise/A+
- */
- define('promise',[
- 'promise-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 基础类方法。
+ */
+
+ /**
+ * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
+ *
+ * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
+ * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
+ *
+ * * module `base`:WebUploader.Base
+ * * module `file`: WebUploader.File
+ * * module `lib/dnd`: WebUploader.Lib.Dnd
+ * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
+ *
+ *
+ * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
+ * @module WebUploader
+ * @title WebUploader API文档
+ */
+ define('base',[
+ 'dollar',
+ 'promise'
+ ], function( $, promise ) {
+
+ var noop = function() {},
+ call = Function.call;
+
+ // http://jsperf.com/uncurrythis
+ // 反科里化
+ function uncurryThis( fn ) {
+ return function() {
+ return call.apply( fn, arguments );
+ };
+ }
+
+ function bindFn( fn, context ) {
+ return function() {
+ return fn.apply( context, arguments );
+ };
+ }
+
+ function createObject( proto ) {
+ var f;
+
+ if ( Object.create ) {
+ return Object.create( proto );
+ } else {
+ f = function() {};
+ f.prototype = proto;
+ return new f();
+ }
+ }
+
+
+ /**
+ * 基础类,提供一些简单常用的方法。
+ * @class Base
+ */
+ return {
+
+ /**
+ * @property {String} version 当前版本号。
+ */
+ version: '0.1.8-alpha',
+
+ /**
+ * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
+ */
+ $: $,
+
+ Deferred: promise.Deferred,
+
+ isPromise: promise.isPromise,
+
+ when: promise.when,
+
+ /**
+ * @description 简单的浏览器检查结果。
+ *
+ * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
+ * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
+ * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
+ * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
+ * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
+ * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
+ *
+ * @property {Object} [browser]
+ */
+ browser: (function( ua ) {
+ var ret = {},
+ webkit = ua.match( /WebKit\/([\d.]+)/ ),
+ chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
+ ua.match( /CriOS\/([\d.]+)/ ),
+
+ ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
+ ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
+ firefox = ua.match( /Firefox\/([\d.]+)/ ),
+ safari = ua.match( /Safari\/([\d.]+)/ ),
+ opera = ua.match( /OPR\/([\d.]+)/ );
+
+ webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
+ chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
+ ie && (ret.ie = parseFloat( ie[ 1 ] ));
+ firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
+ safari && (ret.safari = parseFloat( safari[ 1 ] ));
+ opera && (ret.opera = parseFloat( opera[ 1 ] ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * @description 操作系统检查结果。
+ *
+ * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
+ * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
+ * @property {Object} [os]
+ */
+ os: (function( ua ) {
+ var ret = {},
+
+ // osx = !!ua.match( /\(Macintosh\; Intel / ),
+ android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
+ ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
+
+ // osx && (ret.osx = true);
+ android && (ret.android = parseFloat( android[ 1 ] ));
+ ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * 实现类与类之间的继承。
+ * @method inherits
+ * @grammar Base.inherits( super ) => child
+ * @grammar Base.inherits( super, protos ) => child
+ * @grammar Base.inherits( super, protos, statics ) => child
+ * @param {Class} super 父类
+ * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
+ * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
+ * @param {Object} [statics] 静态属性或方法。
+ * @return {Class} 返回子类。
+ * @example
+ * function Person() {
+ * console.log( 'Super' );
+ * }
+ * Person.prototype.hello = function() {
+ * console.log( 'hello' );
+ * };
+ *
+ * var Manager = Base.inherits( Person, {
+ * world: function() {
+ * console.log( 'World' );
+ * }
+ * });
+ *
+ * // 因为没有指定构造器,父类的构造器将会执行。
+ * var instance = new Manager(); // => Super
+ *
+ * // 继承子父类的方法
+ * instance.hello(); // => hello
+ * instance.world(); // => World
+ *
+ * // 子类的__super__属性指向父类
+ * console.log( Manager.__super__ === Person ); // => true
+ */
+ inherits: function( Super, protos, staticProtos ) {
+ var child;
+
+ if ( typeof protos === 'function' ) {
+ child = protos;
+ protos = null;
+ } else if ( protos && protos.hasOwnProperty('constructor') ) {
+ child = protos.constructor;
+ } else {
+ child = function() {
+ return Super.apply( this, arguments );
+ };
+ }
+
+ // 复制静态方法
+ $.extend( true, child, Super, staticProtos || {} );
+
+ /* jshint camelcase: false */
+
+ // 让子类的__super__属性指向父类。
+ child.__super__ = Super.prototype;
+
+ // 构建原型,添加原型方法或属性。
+ // 暂时用Object.create实现。
+ child.prototype = createObject( Super.prototype );
+ protos && $.extend( true, child.prototype, protos );
+
+ return child;
+ },
+
+ /**
+ * 一个不做任何事情的方法。可以用来赋值给默认的callback.
+ * @method noop
+ */
+ noop: noop,
+
+ /**
+ * 返回一个新的方法,此方法将已指定的`context`来执行。
+ * @grammar Base.bindFn( fn, context ) => Function
+ * @method bindFn
+ * @example
+ * var doSomething = function() {
+ * console.log( this.name );
+ * },
+ * obj = {
+ * name: 'Object Name'
+ * },
+ * aliasFn = Base.bind( doSomething, obj );
+ *
+ * aliasFn(); // => Object Name
+ *
+ */
+ bindFn: bindFn,
+
+ /**
+ * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
+ * @grammar Base.log( args... ) => undefined
+ * @method log
+ */
+ log: (function() {
+ if ( window.console ) {
+ return bindFn( console.log, console );
+ }
+ return noop;
+ })(),
+
+ nextTick: (function() {
+
+ return function( cb ) {
+ setTimeout( cb, 1 );
+ };
+
+ // @bug 当浏览器不在当前窗口时就停了。
+ // var next = window.requestAnimationFrame ||
+ // window.webkitRequestAnimationFrame ||
+ // window.mozRequestAnimationFrame ||
+ // function( cb ) {
+ // window.setTimeout( cb, 1000 / 60 );
+ // };
+
+ // // fix: Uncaught TypeError: Illegal invocation
+ // return bindFn( next, window );
+ })(),
+
+ /**
+ * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
+ * 将用来将非数组对象转化成数组对象。
+ * @grammar Base.slice( target, start[, end] ) => Array
+ * @method slice
+ * @example
+ * function doSomthing() {
+ * var args = Base.slice( arguments, 1 );
+ * console.log( args );
+ * }
+ *
+ * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
+ */
+ slice: uncurryThis( [].slice ),
+
+ /**
+ * 生成唯一的ID
+ * @method guid
+ * @grammar Base.guid() => String
+ * @grammar Base.guid( prefx ) => String
+ */
+ guid: (function() {
+ var counter = 0;
+
+ return function( prefix ) {
+ var guid = (+new Date()).toString( 32 ),
+ i = 0;
+
+ for ( ; i < 5; i++ ) {
+ guid += Math.floor( Math.random() * 65535 ).toString( 32 );
+ }
+
+ return (prefix || 'wu_') + guid + (counter++).toString( 32 );
+ };
+ })(),
+
+ /**
+ * 格式化文件大小, 输出成带单位的字符串
+ * @method formatSize
+ * @grammar Base.formatSize( size ) => String
+ * @grammar Base.formatSize( size, pointLength ) => String
+ * @grammar Base.formatSize( size, pointLength, units ) => String
+ * @param {Number} size 文件大小
+ * @param {Number} [pointLength=2] 精确到的小数点数。
+ * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
+ * @example
+ * console.log( Base.formatSize( 100 ) ); // => 100B
+ * console.log( Base.formatSize( 1024 ) ); // => 1.00K
+ * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
+ * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
+ * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
+ * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
+ */
+ formatSize: function( size, pointLength, units ) {
+ var unit;
+
+ units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
+
+ while ( (unit = units.shift()) && size > 1024 ) {
+ size = size / 1024;
+ }
+
+ return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
+ unit;
+ }
+ };
});
- /**
- * @fileOverview 基础类方法。
- */
-
- /**
- * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
- *
- * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
- * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
- *
- * * module `base`:WebUploader.Base
- * * module `file`: WebUploader.File
- * * module `lib/dnd`: WebUploader.Lib.Dnd
- * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
- *
- *
- * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
- * @module WebUploader
- * @title WebUploader API文档
- */
- define('base',[
- 'dollar',
- 'promise'
- ], function( $, promise ) {
-
- var noop = function() {},
- call = Function.call;
-
- // http://jsperf.com/uncurrythis
- // 反科里化
- function uncurryThis( fn ) {
- return function() {
- return call.apply( fn, arguments );
- };
- }
-
- function bindFn( fn, context ) {
- return function() {
- return fn.apply( context, arguments );
- };
- }
-
- function createObject( proto ) {
- var f;
-
- if ( Object.create ) {
- return Object.create( proto );
- } else {
- f = function() {};
- f.prototype = proto;
- return new f();
- }
- }
-
-
- /**
- * 基础类,提供一些简单常用的方法。
- * @class Base
- */
- return {
-
- /**
- * @property {String} version 当前版本号。
- */
- version: '0.1.8-alpha',
-
- /**
- * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
- */
- $: $,
-
- Deferred: promise.Deferred,
-
- isPromise: promise.isPromise,
-
- when: promise.when,
-
- /**
- * @description 简单的浏览器检查结果。
- *
- * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
- * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
- * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
- * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
- * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
- * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
- *
- * @property {Object} [browser]
- */
- browser: (function( ua ) {
- var ret = {},
- webkit = ua.match( /WebKit\/([\d.]+)/ ),
- chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
- ua.match( /CriOS\/([\d.]+)/ ),
-
- ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
- ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
- firefox = ua.match( /Firefox\/([\d.]+)/ ),
- safari = ua.match( /Safari\/([\d.]+)/ ),
- opera = ua.match( /OPR\/([\d.]+)/ );
-
- webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
- chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
- ie && (ret.ie = parseFloat( ie[ 1 ] ));
- firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
- safari && (ret.safari = parseFloat( safari[ 1 ] ));
- opera && (ret.opera = parseFloat( opera[ 1 ] ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * @description 操作系统检查结果。
- *
- * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
- * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
- * @property {Object} [os]
- */
- os: (function( ua ) {
- var ret = {},
-
- // osx = !!ua.match( /\(Macintosh\; Intel / ),
- android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
- ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
-
- // osx && (ret.osx = true);
- android && (ret.android = parseFloat( android[ 1 ] ));
- ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * 实现类与类之间的继承。
- * @method inherits
- * @grammar Base.inherits( super ) => child
- * @grammar Base.inherits( super, protos ) => child
- * @grammar Base.inherits( super, protos, statics ) => child
- * @param {Class} super 父类
- * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
- * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
- * @param {Object} [statics] 静态属性或方法。
- * @return {Class} 返回子类。
- * @example
- * function Person() {
- * console.log( 'Super' );
- * }
- * Person.prototype.hello = function() {
- * console.log( 'hello' );
- * };
- *
- * var Manager = Base.inherits( Person, {
- * world: function() {
- * console.log( 'World' );
- * }
- * });
- *
- * // 因为没有指定构造器,父类的构造器将会执行。
- * var instance = new Manager(); // => Super
- *
- * // 继承子父类的方法
- * instance.hello(); // => hello
- * instance.world(); // => World
- *
- * // 子类的__super__属性指向父类
- * console.log( Manager.__super__ === Person ); // => true
- */
- inherits: function( Super, protos, staticProtos ) {
- var child;
-
- if ( typeof protos === 'function' ) {
- child = protos;
- protos = null;
- } else if ( protos && protos.hasOwnProperty('constructor') ) {
- child = protos.constructor;
- } else {
- child = function() {
- return Super.apply( this, arguments );
- };
- }
-
- // 复制静态方法
- $.extend( true, child, Super, staticProtos || {} );
-
- /* jshint camelcase: false */
-
- // 让子类的__super__属性指向父类。
- child.__super__ = Super.prototype;
-
- // 构建原型,添加原型方法或属性。
- // 暂时用Object.create实现。
- child.prototype = createObject( Super.prototype );
- protos && $.extend( true, child.prototype, protos );
-
- return child;
- },
-
- /**
- * 一个不做任何事情的方法。可以用来赋值给默认的callback.
- * @method noop
- */
- noop: noop,
-
- /**
- * 返回一个新的方法,此方法将已指定的`context`来执行。
- * @grammar Base.bindFn( fn, context ) => Function
- * @method bindFn
- * @example
- * var doSomething = function() {
- * console.log( this.name );
- * },
- * obj = {
- * name: 'Object Name'
- * },
- * aliasFn = Base.bind( doSomething, obj );
- *
- * aliasFn(); // => Object Name
- *
- */
- bindFn: bindFn,
-
- /**
- * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
- * @grammar Base.log( args... ) => undefined
- * @method log
- */
- log: (function() {
- if ( window.console ) {
- return bindFn( console.log, console );
- }
- return noop;
- })(),
-
- nextTick: (function() {
-
- return function( cb ) {
- setTimeout( cb, 1 );
- };
-
- // @bug 当浏览器不在当前窗口时就停了。
- // var next = window.requestAnimationFrame ||
- // window.webkitRequestAnimationFrame ||
- // window.mozRequestAnimationFrame ||
- // function( cb ) {
- // window.setTimeout( cb, 1000 / 60 );
- // };
-
- // // fix: Uncaught TypeError: Illegal invocation
- // return bindFn( next, window );
- })(),
-
- /**
- * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
- * 将用来将非数组对象转化成数组对象。
- * @grammar Base.slice( target, start[, end] ) => Array
- * @method slice
- * @example
- * function doSomthing() {
- * var args = Base.slice( arguments, 1 );
- * console.log( args );
- * }
- *
- * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
- */
- slice: uncurryThis( [].slice ),
-
- /**
- * 生成唯一的ID
- * @method guid
- * @grammar Base.guid() => String
- * @grammar Base.guid( prefx ) => String
- */
- guid: (function() {
- var counter = 0;
-
- return function( prefix ) {
- var guid = (+new Date()).toString( 32 ),
- i = 0;
-
- for ( ; i < 5; i++ ) {
- guid += Math.floor( Math.random() * 65535 ).toString( 32 );
- }
-
- return (prefix || 'wu_') + guid + (counter++).toString( 32 );
- };
- })(),
-
- /**
- * 格式化文件大小, 输出成带单位的字符串
- * @method formatSize
- * @grammar Base.formatSize( size ) => String
- * @grammar Base.formatSize( size, pointLength ) => String
- * @grammar Base.formatSize( size, pointLength, units ) => String
- * @param {Number} size 文件大小
- * @param {Number} [pointLength=2] 精确到的小数点数。
- * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
- * @example
- * console.log( Base.formatSize( 100 ) ); // => 100B
- * console.log( Base.formatSize( 1024 ) ); // => 1.00K
- * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
- * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
- * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
- * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
- */
- formatSize: function( size, pointLength, units ) {
- var unit;
-
- units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
-
- while ( (unit = units.shift()) && size > 1024 ) {
- size = size / 1024;
- }
-
- return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
- unit;
- }
- };
+ /**
+ * 事件处理类,可以独立使用,也可以扩展给对象使用。
+ * @fileOverview Mediator
+ */
+ define('mediator',[
+ 'base'
+ ], function( Base ) {
+ var $ = Base.$,
+ slice = [].slice,
+ separator = /\s+/,
+ protos;
+
+ // 根据条件过滤出事件handlers.
+ function findHandlers( arr, name, callback, context ) {
+ return $.grep( arr, function( handler ) {
+ return handler &&
+ (!name || handler.e === name) &&
+ (!callback || handler.cb === callback ||
+ handler.cb._cb === callback) &&
+ (!context || handler.ctx === context);
+ });
+ }
+
+ function eachEvent( events, callback, iterator ) {
+ // 不支持对象,只支持多个event用空格隔开
+ $.each( (events || '').split( separator ), function( _, key ) {
+ iterator( key, callback );
+ });
+ }
+
+ function triggerHanders( events, args ) {
+ var stoped = false,
+ i = -1,
+ len = events.length,
+ handler;
+
+ while ( ++i < len ) {
+ handler = events[ i ];
+
+ if ( handler.cb.apply( handler.ctx2, args ) === false ) {
+ stoped = true;
+ break;
+ }
+ }
+
+ return !stoped;
+ }
+
+ protos = {
+
+ /**
+ * 绑定事件。
+ *
+ * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
+ * ```javascript
+ * var obj = {};
+ *
+ * // 使得obj有事件行为
+ * Mediator.installTo( obj );
+ *
+ * obj.on( 'testa', function( arg1, arg2 ) {
+ * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
+ * });
+ *
+ * obj.trigger( 'testa', 'arg1', 'arg2' );
+ * ```
+ *
+ * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
+ * 切会影响到`trigger`方法的返回值,为`false`。
+ *
+ * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
+ * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
+ * ```javascript
+ * obj.on( 'all', function( type, arg1, arg2 ) {
+ * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
+ * });
+ * ```
+ *
+ * @method on
+ * @grammar on( name, callback[, context] ) => self
+ * @param {String} name 事件名,支持多个事件用空格隔开
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ * @class Mediator
+ */
+ on: function( name, callback, context ) {
+ var me = this,
+ set;
+
+ if ( !callback ) {
+ return this;
+ }
+
+ set = this._events || (this._events = []);
+
+ eachEvent( name, callback, function( name, callback ) {
+ var handler = { e: name };
+
+ handler.cb = callback;
+ handler.ctx = context;
+ handler.ctx2 = context || me;
+ handler.id = set.length;
+
+ set.push( handler );
+ });
+
+ return this;
+ },
+
+ /**
+ * 绑定事件,且当handler执行完后,自动解除绑定。
+ * @method once
+ * @grammar once( name, callback[, context] ) => self
+ * @param {String} name 事件名
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ once: function( name, callback, context ) {
+ var me = this;
+
+ if ( !callback ) {
+ return me;
+ }
+
+ eachEvent( name, callback, function( name, callback ) {
+ var once = function() {
+ me.off( name, once );
+ return callback.apply( context || me, arguments );
+ };
+
+ once._cb = callback;
+ me.on( name, once, context );
+ });
+
+ return me;
+ },
+
+ /**
+ * 解除事件绑定
+ * @method off
+ * @grammar off( [name[, callback[, context] ] ] ) => self
+ * @param {String} [name] 事件名
+ * @param {Function} [callback] 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ off: function( name, cb, ctx ) {
+ var events = this._events;
+
+ if ( !events ) {
+ return this;
+ }
+
+ if ( !name && !cb && !ctx ) {
+ this._events = [];
+ return this;
+ }
+
+ eachEvent( name, cb, function( name, cb ) {
+ $.each( findHandlers( events, name, cb, ctx ), function() {
+ delete events[ this.id ];
+ });
+ });
+
+ return this;
+ },
+
+ /**
+ * 触发事件
+ * @method trigger
+ * @grammar trigger( name[, args...] ) => self
+ * @param {String} type 事件名
+ * @param {*} [...] 任意参数
+ * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
+ */
+ trigger: function( type ) {
+ var args, events, allEvents;
+
+ if ( !this._events || !type ) {
+ return this;
+ }
+
+ args = slice.call( arguments, 1 );
+ events = findHandlers( this._events, type );
+ allEvents = findHandlers( this._events, 'all' );
+
+ return triggerHanders( events, args ) &&
+ triggerHanders( allEvents, arguments );
+ }
+ };
+
+ /**
+ * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
+ * 主要目的是负责模块与模块之间的合作,降低耦合度。
+ *
+ * @class Mediator
+ */
+ return $.extend({
+
+ /**
+ * 可以通过这个接口,使任何对象具备事件功能。
+ * @method installTo
+ * @param {Object} obj 需要具备事件行为的对象。
+ * @return {Object} 返回obj.
+ */
+ installTo: function( obj ) {
+ return $.extend( obj, protos );
+ }
+
+ }, protos );
});
- /**
- * 事件处理类,可以独立使用,也可以扩展给对象使用。
- * @fileOverview Mediator
- */
- define('mediator',[
- 'base'
- ], function( Base ) {
- var $ = Base.$,
- slice = [].slice,
- separator = /\s+/,
- protos;
-
- // 根据条件过滤出事件handlers.
- function findHandlers( arr, name, callback, context ) {
- return $.grep( arr, function( handler ) {
- return handler &&
- (!name || handler.e === name) &&
- (!callback || handler.cb === callback ||
- handler.cb._cb === callback) &&
- (!context || handler.ctx === context);
- });
- }
-
- function eachEvent( events, callback, iterator ) {
- // 不支持对象,只支持多个event用空格隔开
- $.each( (events || '').split( separator ), function( _, key ) {
- iterator( key, callback );
- });
- }
-
- function triggerHanders( events, args ) {
- var stoped = false,
- i = -1,
- len = events.length,
- handler;
-
- while ( ++i < len ) {
- handler = events[ i ];
-
- if ( handler.cb.apply( handler.ctx2, args ) === false ) {
- stoped = true;
- break;
- }
- }
-
- return !stoped;
- }
-
- protos = {
-
- /**
- * 绑定事件。
- *
- * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
- * ```javascript
- * var obj = {};
- *
- * // 使得obj有事件行为
- * Mediator.installTo( obj );
- *
- * obj.on( 'testa', function( arg1, arg2 ) {
- * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
- * });
- *
- * obj.trigger( 'testa', 'arg1', 'arg2' );
- * ```
- *
- * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
- * 切会影响到`trigger`方法的返回值,为`false`。
- *
- * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
- * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
- * ```javascript
- * obj.on( 'all', function( type, arg1, arg2 ) {
- * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
- * });
- * ```
- *
- * @method on
- * @grammar on( name, callback[, context] ) => self
- * @param {String} name 事件名,支持多个事件用空格隔开
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- * @class Mediator
- */
- on: function( name, callback, context ) {
- var me = this,
- set;
-
- if ( !callback ) {
- return this;
- }
-
- set = this._events || (this._events = []);
-
- eachEvent( name, callback, function( name, callback ) {
- var handler = { e: name };
+ /**
+ * @fileOverview Uploader上传类
+ */
+ define('uploader',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$;
+
+ /**
+ * 上传入口类。
+ * @class Uploader
+ * @constructor
+ * @grammar new Uploader( opts ) => Uploader
+ * @example
+ * var uploader = WebUploader.Uploader({
+ * swf: 'path_of_swf/Uploader.swf',
+ *
+ * // 开起分片上传。
+ * chunked: true
+ * });
+ */
+ function Uploader( opts ) {
+ this.options = $.extend( true, {}, Uploader.options, opts );
+ this._init( this.options );
+ }
+
+ // default Options
+ // widgets中有相应扩展
+ Uploader.options = {};
+ Mediator.installTo( Uploader.prototype );
+
+ // 批量添加纯命令式方法。
+ $.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( fn, command ) {
+ Uploader.prototype[ fn ] = function() {
+ return this.request( command, arguments );
+ };
+ });
+
+ $.extend( Uploader.prototype, {
+ state: 'pending',
+
+ _init: function( opts ) {
+ var me = this;
+
+ me.request( 'init', opts, function() {
+ me.state = 'ready';
+ me.trigger('ready');
+ });
+ },
+
+ /**
+ * 获取或者设置Uploader配置项。
+ * @method option
+ * @grammar option( key ) => *
+ * @grammar option( key, val ) => self
+ * @example
+ *
+ * // 初始状态图片上传前不会压缩
+ * var uploader = new WebUploader.Uploader({
+ * compress: null;
+ * });
+ *
+ * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
+ * uploader.option( 'compress', {
+ * width: 1600,
+ * height: 1600
+ * });
+ */
+ option: function( key, val ) {
+ var opts = this.options;
+
+ // setter
+ if ( arguments.length > 1 ) {
+
+ if ( $.isPlainObject( val ) &&
+ $.isPlainObject( opts[ key ] ) ) {
+ $.extend( opts[ key ], val );
+ } else {
+ opts[ key ] = val;
+ }
+
+ } else { // getter
+ return key ? opts[ key ] : opts;
+ }
+ },
+
+ /**
+ * 获取文件统计信息。返回一个包含一下信息的对象。
+ * * `successNum` 上传成功的文件数
+ * * `progressNum` 上传中的文件数
+ * * `cancelNum` 被删除的文件数
+ * * `invalidNum` 无效的文件数
+ * * `uploadFailNum` 上传失败的文件数
+ * * `queueNum` 还在队列中的文件数
+ * * `interruptNum` 被暂停的文件数
+ * @method getStats
+ * @grammar getStats() => Object
+ */
+ getStats: function() {
+ // return this._mgr.getStats.apply( this._mgr, arguments );
+ var stats = this.request('get-stats');
+
+ return stats ? {
+ successNum: stats.numOfSuccess,
+ progressNum: stats.numOfProgress,
+
+ // who care?
+ // queueFailNum: 0,
+ cancelNum: stats.numOfCancel,
+ invalidNum: stats.numOfInvalid,
+ uploadFailNum: stats.numOfUploadFailed,
+ queueNum: stats.numOfQueue,
+ interruptNum: stats.numOfInterrupt
+ } : {};
+ },
+
+ // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
+ trigger: function( type/*, args...*/ ) {
+ var args = [].slice.call( arguments, 1 ),
+ opts = this.options,
+ name = 'on' + type.substring( 0, 1 ).toUpperCase() +
+ type.substring( 1 );
+
+ if (
+ // 调用通过on方法注册的handler.
+ Mediator.trigger.apply( this, arguments ) === false ||
+
+ // 调用opts.onEvent
+ $.isFunction( opts[ name ] ) &&
+ opts[ name ].apply( this, args ) === false ||
+
+ // 调用this.onEvent
+ $.isFunction( this[ name ] ) &&
+ this[ name ].apply( this, args ) === false ||
+
+ // 广播所有uploader的事件。
+ Mediator.trigger.apply( Mediator,
+ [ this, type ].concat( args ) ) === false ) {
+
+ return false;
+ }
+
+ return true;
+ },
+
+ /**
+ * 销毁 webuploader 实例
+ * @method destroy
+ * @grammar destroy() => undefined
+ */
+ destroy: function() {
+ this.request( 'destroy', arguments );
+ this.off();
+ },
+
+ // widgets/widget.js将补充此方法的详细文档。
+ request: Base.noop
+ });
+
+ /**
+ * 创建Uploader实例,等同于new Uploader( opts );
+ * @method create
+ * @class Base
+ * @static
+ * @grammar Base.create( opts ) => Uploader
+ */
+ Base.create = Uploader.create = function( opts ) {
+ return new Uploader( opts );
+ };
+
+ // 暴露Uploader,可以通过它来扩展业务逻辑。
+ Base.Uploader = Uploader;
+
+ return Uploader;
+ });
- handler.cb = callback;
- handler.ctx = context;
- handler.ctx2 = context || me;
- handler.id = set.length;
-
- set.push( handler );
- });
-
- return this;
- },
-
- /**
- * 绑定事件,且当handler执行完后,自动解除绑定。
- * @method once
- * @grammar once( name, callback[, context] ) => self
- * @param {String} name 事件名
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- once: function( name, callback, context ) {
- var me = this;
-
- if ( !callback ) {
- return me;
- }
-
- eachEvent( name, callback, function( name, callback ) {
- var once = function() {
- me.off( name, once );
- return callback.apply( context || me, arguments );
- };
-
- once._cb = callback;
- me.on( name, once, context );
- });
-
- return me;
- },
-
- /**
- * 解除事件绑定
- * @method off
- * @grammar off( [name[, callback[, context] ] ] ) => self
- * @param {String} [name] 事件名
- * @param {Function} [callback] 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- off: function( name, cb, ctx ) {
- var events = this._events;
-
- if ( !events ) {
- return this;
- }
-
- if ( !name && !cb && !ctx ) {
- this._events = [];
- return this;
- }
-
- eachEvent( name, cb, function( name, cb ) {
- $.each( findHandlers( events, name, cb, ctx ), function() {
- delete events[ this.id ];
- });
- });
-
- return this;
- },
-
- /**
- * 触发事件
- * @method trigger
- * @grammar trigger( name[, args...] ) => self
- * @param {String} type 事件名
- * @param {*} [...] 任意参数
- * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
- */
- trigger: function( type ) {
- var args, events, allEvents;
-
- if ( !this._events || !type ) {
- return this;
- }
-
- args = slice.call( arguments, 1 );
- events = findHandlers( this._events, type );
- allEvents = findHandlers( this._events, 'all' );
-
- return triggerHanders( events, args ) &&
- triggerHanders( allEvents, arguments );
- }
- };
-
- /**
- * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
- * 主要目的是负责模块与模块之间的合作,降低耦合度。
- *
- * @class Mediator
- */
- return $.extend({
-
- /**
- * 可以通过这个接口,使任何对象具备事件功能。
- * @method installTo
- * @param {Object} obj 需要具备事件行为的对象。
- * @return {Object} 返回obj.
- */
- installTo: function( obj ) {
- return $.extend( obj, protos );
- }
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/runtime',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ factories = {},
+
+ // 获取对象的第一个key
+ getFirstKey = function( obj ) {
+ for ( var key in obj ) {
+ if ( obj.hasOwnProperty( key ) ) {
+ return key;
+ }
+ }
+ return null;
+ };
+
+ // 接口类。
+ function Runtime( options ) {
+ this.options = $.extend({
+ container: document.body
+ }, options );
+ this.uid = Base.guid('rt_');
+ }
+
+ $.extend( Runtime.prototype, {
+
+ getContainer: function() {
+ var opts = this.options,
+ parent, container;
+
+ if ( this._container ) {
+ return this._container;
+ }
+
+ parent = $( opts.container || document.body );
+ container = $( document.createElement('div') );
+
+ container.attr( 'id', 'rt_' + this.uid );
+ container.css({
+ position: 'absolute',
+ top: '0px',
+ left: '0px',
+ width: '1px',
+ height: '1px',
+ overflow: 'hidden'
+ });
+
+ parent.append( container );
+ parent.addClass('webuploader-container');
+ this._container = container;
+ this._parent = parent;
+ return container;
+ },
+
+ init: Base.noop,
+ exec: Base.noop,
+
+ destroy: function() {
+ this._container && this._container.remove();
+ this._parent && this._parent.removeClass('webuploader-container');
+ this.off();
+ }
+ });
+
+ Runtime.orders = 'html5,flash';
+
+
+ /**
+ * 添加Runtime实现。
+ * @param {String} type 类型
+ * @param {Runtime} factory 具体Runtime实现。
+ */
+ Runtime.addRuntime = function( type, factory ) {
+ factories[ type ] = factory;
+ };
+
+ Runtime.hasRuntime = function( type ) {
+ return !!(type ? factories[ type ] : getFirstKey( factories ));
+ };
+
+ Runtime.create = function( opts, orders ) {
+ var type, runtime;
+
+ orders = orders || Runtime.orders;
+ $.each( orders.split( /\s*,\s*/g ), function() {
+ if ( factories[ this ] ) {
+ type = this;
+ return false;
+ }
+ });
+
+ type = type || getFirstKey( factories );
+
+ if ( !type ) {
+ throw new Error('Runtime Error');
+ }
+
+ runtime = new factories[ type ]( opts );
+ return runtime;
+ };
+
+ Mediator.installTo( Runtime.prototype );
+ return Runtime;
+ });
- }, protos );
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/client',[
+ 'base',
+ 'mediator',
+ 'runtime/runtime'
+ ], function( Base, Mediator, Runtime ) {
+
+ var cache;
+
+ cache = (function() {
+ var obj = {};
+
+ return {
+ add: function( runtime ) {
+ obj[ runtime.uid ] = runtime;
+ },
+
+ get: function( ruid, standalone ) {
+ var i;
+
+ if ( ruid ) {
+ return obj[ ruid ];
+ }
+
+ for ( i in obj ) {
+ // 有些类型不能重用,比如filepicker.
+ if ( standalone && obj[ i ].__standalone ) {
+ continue;
+ }
+
+ return obj[ i ];
+ }
+
+ return null;
+ },
+
+ remove: function( runtime ) {
+ delete obj[ runtime.uid ];
+ }
+ };
+ })();
+
+ function RuntimeClient( component, standalone ) {
+ var deferred = Base.Deferred(),
+ runtime;
+
+ this.uid = Base.guid('client_');
+
+ // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
+ this.runtimeReady = function( cb ) {
+ return deferred.done( cb );
+ };
+
+ this.connectRuntime = function( opts, cb ) {
+
+ // already connected.
+ if ( runtime ) {
+ throw new Error('already connected!');
+ }
+
+ deferred.done( cb );
+
+ if ( typeof opts === 'string' && cache.get( opts ) ) {
+ runtime = cache.get( opts );
+ }
+
+ // 像filePicker只能独立存在,不能公用。
+ runtime = runtime || cache.get( null, standalone );
+
+ // 需要创建
+ if ( !runtime ) {
+ runtime = Runtime.create( opts, opts.runtimeOrder );
+ runtime.__promise = deferred.promise();
+ runtime.once( 'ready', deferred.resolve );
+ runtime.init();
+ cache.add( runtime );
+ runtime.__client = 1;
+ } else {
+ // 来自cache
+ Base.$.extend( runtime.options, opts );
+ runtime.__promise.then( deferred.resolve );
+ runtime.__client++;
+ }
+
+ standalone && (runtime.__standalone = standalone);
+ return runtime;
+ };
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.disconnectRuntime = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ runtime.__client--;
+
+ if ( runtime.__client <= 0 ) {
+ cache.remove( runtime );
+ delete runtime.__promise;
+ runtime.destroy();
+ }
+
+ runtime = null;
+ };
+
+ this.exec = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ var args = Base.slice( arguments );
+ component && args.unshift( component );
+
+ return runtime.exec.apply( this, args );
+ };
+
+ this.getRuid = function() {
+ return runtime && runtime.uid;
+ };
+
+ this.destroy = (function( destroy ) {
+ return function() {
+ destroy && destroy.apply( this, arguments );
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ };
+ })( this.destroy );
+ }
+
+ Mediator.installTo( RuntimeClient.prototype );
+ return RuntimeClient;
});
- /**
- * @fileOverview Uploader上传类
- */
- define('uploader',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$;
-
- /**
- * 上传入口类。
- * @class Uploader
- * @constructor
- * @grammar new Uploader( opts ) => Uploader
- * @example
- * var uploader = WebUploader.Uploader({
- * swf: 'path_of_swf/Uploader.swf',
- *
- * // 开起分片上传。
- * chunked: true
- * });
- */
- function Uploader( opts ) {
- this.options = $.extend( true, {}, Uploader.options, opts );
- this._init( this.options );
- }
-
- // default Options
- // widgets中有相应扩展
- Uploader.options = {};
- Mediator.installTo( Uploader.prototype );
-
- // 批量添加纯命令式方法。
- $.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( fn, command ) {
- Uploader.prototype[ fn ] = function() {
- return this.request( command, arguments );
- };
- });
-
- $.extend( Uploader.prototype, {
- state: 'pending',
-
- _init: function( opts ) {
- var me = this;
-
- me.request( 'init', opts, function() {
- me.state = 'ready';
- me.trigger('ready');
- });
- },
-
- /**
- * 获取或者设置Uploader配置项。
- * @method option
- * @grammar option( key ) => *
- * @grammar option( key, val ) => self
- * @example
- *
- * // 初始状态图片上传前不会压缩
- * var uploader = new WebUploader.Uploader({
- * compress: null;
- * });
- *
- * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
- * uploader.option( 'compress', {
- * width: 1600,
- * height: 1600
- * });
- */
- option: function( key, val ) {
- var opts = this.options;
-
- // setter
- if ( arguments.length > 1 ) {
-
- if ( $.isPlainObject( val ) &&
- $.isPlainObject( opts[ key ] ) ) {
- $.extend( opts[ key ], val );
- } else {
- opts[ key ] = val;
- }
-
- } else { // getter
- return key ? opts[ key ] : opts;
- }
- },
-
- /**
- * 获取文件统计信息。返回一个包含一下信息的对象。
- * * `successNum` 上传成功的文件数
- * * `progressNum` 上传中的文件数
- * * `cancelNum` 被删除的文件数
- * * `invalidNum` 无效的文件数
- * * `uploadFailNum` 上传失败的文件数
- * * `queueNum` 还在队列中的文件数
- * * `interruptNum` 被暂停的文件数
- * @method getStats
- * @grammar getStats() => Object
- */
- getStats: function() {
- // return this._mgr.getStats.apply( this._mgr, arguments );
- var stats = this.request('get-stats');
-
- return stats ? {
- successNum: stats.numOfSuccess,
- progressNum: stats.numOfProgress,
-
- // who care?
- // queueFailNum: 0,
- cancelNum: stats.numOfCancel,
- invalidNum: stats.numOfInvalid,
- uploadFailNum: stats.numOfUploadFailed,
- queueNum: stats.numOfQueue,
- interruptNum: stats.numOfInterrupt
- } : {};
- },
-
- // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
- trigger: function( type/*, args...*/ ) {
- var args = [].slice.call( arguments, 1 ),
- opts = this.options,
- name = 'on' + type.substring( 0, 1 ).toUpperCase() +
- type.substring( 1 );
-
- if (
- // 调用通过on方法注册的handler.
- Mediator.trigger.apply( this, arguments ) === false ||
-
- // 调用opts.onEvent
- $.isFunction( opts[ name ] ) &&
- opts[ name ].apply( this, args ) === false ||
-
- // 调用this.onEvent
- $.isFunction( this[ name ] ) &&
- this[ name ].apply( this, args ) === false ||
-
- // 广播所有uploader的事件。
- Mediator.trigger.apply( Mediator,
- [ this, type ].concat( args ) ) === false ) {
-
- return false;
- }
-
- return true;
- },
-
- /**
- * 销毁 webuploader 实例
- * @method destroy
- * @grammar destroy() => undefined
- */
- destroy: function() {
- this.request( 'destroy', arguments );
- this.off();
- },
-
- // widgets/widget.js将补充此方法的详细文档。
- request: Base.noop
- });
-
- /**
- * 创建Uploader实例,等同于new Uploader( opts );
- * @method create
- * @class Base
- * @static
- * @grammar Base.create( opts ) => Uploader
- */
- Base.create = Uploader.create = function( opts ) {
- return new Uploader( opts );
- };
-
- // 暴露Uploader,可以通过它来扩展业务逻辑。
- Base.Uploader = Uploader;
-
- return Uploader;
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/dnd',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function DragAndDrop( opts ) {
+ opts = this.options = $.extend({}, DragAndDrop.options, opts );
+
+ opts.container = $( opts.container );
+
+ if ( !opts.container.length ) {
+ return;
+ }
+
+ RuntimeClent.call( this, 'DragAndDrop' );
+ }
+
+ DragAndDrop.options = {
+ accept: null,
+ disableGlobalDnd: false
+ };
+
+ Base.inherits( RuntimeClent, {
+ constructor: DragAndDrop,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( DragAndDrop.prototype );
+
+ return DragAndDrop;
});
-
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/runtime',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- factories = {},
-
- // 获取对象的第一个key
- getFirstKey = function( obj ) {
- for ( var key in obj ) {
- if ( obj.hasOwnProperty( key ) ) {
- return key;
- }
- }
- return null;
- };
-
- // 接口类。
- function Runtime( options ) {
- this.options = $.extend({
- container: document.body
- }, options );
- this.uid = Base.guid('rt_');
- }
-
- $.extend( Runtime.prototype, {
-
- getContainer: function() {
- var opts = this.options,
- parent, container;
-
- if ( this._container ) {
- return this._container;
- }
-
- parent = $( opts.container || document.body );
- container = $( document.createElement('div') );
-
- container.attr( 'id', 'rt_' + this.uid );
- container.css({
- position: 'absolute',
- top: '0px',
- left: '0px',
- width: '1px',
- height: '1px',
- overflow: 'hidden'
- });
-
- parent.append( container );
- parent.addClass('webuploader-container');
- this._container = container;
- this._parent = parent;
- return container;
- },
-
- init: Base.noop,
- exec: Base.noop,
-
- destroy: function() {
- this._container && this._container.remove();
- this._parent && this._parent.removeClass('webuploader-container');
- this.off();
- }
- });
-
- Runtime.orders = 'html5,flash';
-
-
- /**
- * 添加Runtime实现。
- * @param {String} type 类型
- * @param {Runtime} factory 具体Runtime实现。
- */
- Runtime.addRuntime = function( type, factory ) {
- factories[ type ] = factory;
- };
-
- Runtime.hasRuntime = function( type ) {
- return !!(type ? factories[ type ] : getFirstKey( factories ));
- };
-
- Runtime.create = function( opts, orders ) {
- var type, runtime;
-
- orders = orders || Runtime.orders;
- $.each( orders.split( /\s*,\s*/g ), function() {
- if ( factories[ this ] ) {
- type = this;
- return false;
- }
- });
-
- type = type || getFirstKey( factories );
-
- if ( !type ) {
- throw new Error('Runtime Error');
- }
-
- runtime = new factories[ type ]( opts );
- return runtime;
- };
-
- Mediator.installTo( Runtime.prototype );
- return Runtime;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/widget',[
+ 'base',
+ 'uploader'
+ ], function( Base, Uploader ) {
+
+ var $ = Base.$,
+ _init = Uploader.prototype._init,
+ _destroy = Uploader.prototype.destroy,
+ IGNORE = {},
+ widgetClass = [];
+
+ function isArrayLike( obj ) {
+ if ( !obj ) {
+ return false;
+ }
+
+ var length = obj.length,
+ type = $.type( obj );
+
+ if ( obj.nodeType === 1 && length ) {
+ return true;
+ }
+
+ return type === 'array' || type !== 'function' && type !== 'string' &&
+ (length === 0 || typeof length === 'number' && length > 0 &&
+ (length - 1) in obj);
+ }
+
+ function Widget( uploader ) {
+ this.owner = uploader;
+ this.options = uploader.options;
+ }
+
+ $.extend( Widget.prototype, {
+
+ init: Base.noop,
+
+ // 类Backbone的事件监听声明,监听uploader实例上的事件
+ // widget直接无法监听事件,事件只能通过uploader来传递
+ invoke: function( apiName, args ) {
+
+ /*
+ {
+ 'make-thumb': 'makeThumb'
+ }
+ */
+ var map = this.responseMap;
+
+ // 如果无API响应声明则忽略
+ if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
+ !$.isFunction( this[ map[ apiName ] ] ) ) {
+
+ return IGNORE;
+ }
+
+ return this[ map[ apiName ] ].apply( this, args );
+
+ },
+
+ /**
+ * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
+ * @method request
+ * @grammar request( command, args ) => * | Promise
+ * @grammar request( command, args, callback ) => Promise
+ * @for Uploader
+ */
+ request: function() {
+ return this.owner.request.apply( this.owner, arguments );
+ }
+ });
+
+ // 扩展Uploader.
+ $.extend( Uploader.prototype, {
+
+ /**
+ * @property {String | Array} [disableWidgets=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
+ */
+
+ // 覆写_init用来初始化widgets
+ _init: function() {
+ var me = this,
+ widgets = me._widgets = [],
+ deactives = me.options.disableWidgets || '';
+
+ $.each( widgetClass, function( _, klass ) {
+ (!deactives || !~deactives.indexOf( klass._name )) &&
+ widgets.push( new klass( me ) );
+ });
+
+ return _init.apply( me, arguments );
+ },
+
+ request: function( apiName, args, callback ) {
+ var i = 0,
+ widgets = this._widgets,
+ len = widgets && widgets.length,
+ rlts = [],
+ dfds = [],
+ widget, rlt, promise, key;
+
+ args = isArrayLike( args ) ? args : [ args ];
+
+ for ( ; i < len; i++ ) {
+ widget = widgets[ i ];
+ rlt = widget.invoke( apiName, args );
+
+ if ( rlt !== IGNORE ) {
+
+ // Deferred对象
+ if ( Base.isPromise( rlt ) ) {
+ dfds.push( rlt );
+ } else {
+ rlts.push( rlt );
+ }
+ }
+ }
+
+ // 如果有callback,则用异步方式。
+ if ( callback || dfds.length ) {
+ promise = Base.when.apply( Base, dfds );
+ key = promise.pipe ? 'pipe' : 'then';
+
+ // 很重要不能删除。删除了会死循环。
+ // 保证执行顺序。让callback总是在下一个 tick 中执行。
+ return promise[ key ](function() {
+ var deferred = Base.Deferred(),
+ args = arguments;
+
+ if ( args.length === 1 ) {
+ args = args[ 0 ];
+ }
+
+ setTimeout(function() {
+ deferred.resolve( args );
+ }, 1 );
+
+ return deferred.promise();
+ })[ callback ? key : 'done' ]( callback || Base.noop );
+ } else {
+ return rlts[ 0 ];
+ }
+ },
+
+ destroy: function() {
+ _destroy.apply( this, arguments );
+ this._widgets = null;
+ }
+ });
+
+ /**
+ * 添加组件
+ * @grammar Uploader.register(proto);
+ * @grammar Uploader.register(map, proto);
+ * @param {object} responseMap API 名称与函数实现的映射
+ * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
+ * @method Uploader.register
+ * @for Uploader
+ * @example
+ * Uploader.register({
+ * 'make-thumb': 'makeThumb'
+ * }, {
+ * init: function( options ) {},
+ * makeThumb: function() {}
+ * });
+ *
+ * Uploader.register({
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ */
+ Uploader.register = Widget.register = function( responseMap, widgetProto ) {
+ var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
+ klass;
+
+ if ( arguments.length === 1 ) {
+ widgetProto = responseMap;
+
+ // 自动生成 map 表。
+ $.each(widgetProto, function(key) {
+ if ( key[0] === '_' || key === 'name' ) {
+ key === 'name' && (map.name = widgetProto.name);
+ return;
+ }
+
+ map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
+ });
+
+ } else {
+ map = $.extend( map, responseMap );
+ }
+
+ widgetProto.responseMap = map;
+ klass = Base.inherits( Widget, widgetProto );
+ klass._name = map.name;
+ widgetClass.push( klass );
+
+ return klass;
+ };
+
+ /**
+ * 删除插件,只有在注册时指定了名字的才能被删除。
+ * @grammar Uploader.unRegister(name);
+ * @param {string} name 组件名字
+ * @method Uploader.unRegister
+ * @for Uploader
+ * @example
+ *
+ * Uploader.register({
+ * name: 'custom',
+ *
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ *
+ * Uploader.unRegister('custom');
+ */
+ Uploader.unRegister = Widget.unRegister = function( name ) {
+ if ( !name || name === 'anonymous' ) {
+ return;
+ }
+
+ // 删除指定的插件。
+ for ( var i = widgetClass.length; i--; ) {
+ if ( widgetClass[i]._name === name ) {
+ widgetClass.splice(i, 1)
+ }
+ }
+ };
+
+ return Widget;
});
+ /**
+ * @fileOverview DragAndDrop Widget。
+ */
+ define('widgets/filednd',[
+ 'base',
+ 'uploader',
+ 'lib/dnd',
+ 'widgets/widget'
+ ], function( Base, Uploader, Dnd ) {
+ var $ = Base.$;
+
+ Uploader.options.dnd = '';
+
+ /**
+ * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @event dndAccept
+ * @param {DataTransferItemList} items DataTransferItem
+ * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'dnd',
+
+ init: function( opts ) {
+
+ if ( !opts.dnd ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ disableGlobalDnd: opts.disableGlobalDnd,
+ container: opts.dnd,
+ accept: opts.accept
+ }),
+ dnd;
+
+ this.dnd = dnd = new Dnd( options );
+
+ dnd.once( 'ready', deferred.resolve );
+ dnd.on( 'drop', function( files ) {
+ me.request( 'add-file', [ files ]);
+ });
+
+ // 检测文件是否全部允许添加。
+ dnd.on( 'accept', function( items ) {
+ return me.owner.trigger( 'dndAccept', items );
+ });
+
+ dnd.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.dnd && this.dnd.destroy();
+ }
+ });
+ });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/client',[
- 'base',
- 'mediator',
- 'runtime/runtime'
- ], function( Base, Mediator, Runtime ) {
-
- var cache;
-
- cache = (function() {
- var obj = {};
-
- return {
- add: function( runtime ) {
- obj[ runtime.uid ] = runtime;
- },
-
- get: function( ruid, standalone ) {
- var i;
-
- if ( ruid ) {
- return obj[ ruid ];
- }
-
- for ( i in obj ) {
- // 有些类型不能重用,比如filepicker.
- if ( standalone && obj[ i ].__standalone ) {
- continue;
- }
-
- return obj[ i ];
- }
-
- return null;
- },
-
- remove: function( runtime ) {
- delete obj[ runtime.uid ];
- }
- };
- })();
-
- function RuntimeClient( component, standalone ) {
- var deferred = Base.Deferred(),
- runtime;
-
- this.uid = Base.guid('client_');
-
- // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
- this.runtimeReady = function( cb ) {
- return deferred.done( cb );
- };
-
- this.connectRuntime = function( opts, cb ) {
-
- // already connected.
- if ( runtime ) {
- throw new Error('already connected!');
- }
-
- deferred.done( cb );
-
- if ( typeof opts === 'string' && cache.get( opts ) ) {
- runtime = cache.get( opts );
- }
-
- // 像filePicker只能独立存在,不能公用。
- runtime = runtime || cache.get( null, standalone );
-
- // 需要创建
- if ( !runtime ) {
- runtime = Runtime.create( opts, opts.runtimeOrder );
- runtime.__promise = deferred.promise();
- runtime.once( 'ready', deferred.resolve );
- runtime.init();
- cache.add( runtime );
- runtime.__client = 1;
- } else {
- // 来自cache
- Base.$.extend( runtime.options, opts );
- runtime.__promise.then( deferred.resolve );
- runtime.__client++;
- }
-
- standalone && (runtime.__standalone = standalone);
- return runtime;
- };
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.disconnectRuntime = function() {
- if ( !runtime ) {
- return;
- }
-
- runtime.__client--;
-
- if ( runtime.__client <= 0 ) {
- cache.remove( runtime );
- delete runtime.__promise;
- runtime.destroy();
- }
-
- runtime = null;
- };
-
- this.exec = function() {
- if ( !runtime ) {
- return;
- }
-
- var args = Base.slice( arguments );
- component && args.unshift( component );
-
- return runtime.exec.apply( this, args );
- };
-
- this.getRuid = function() {
- return runtime && runtime.uid;
- };
-
- this.destroy = (function( destroy ) {
- return function() {
- destroy && destroy.apply( this, arguments );
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- };
- })( this.destroy );
- }
-
- Mediator.installTo( RuntimeClient.prototype );
- return RuntimeClient;
- });
- /**
- * @fileOverview 错误信息
- */
- define('lib/dnd',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function DragAndDrop( opts ) {
- opts = this.options = $.extend({}, DragAndDrop.options, opts );
-
- opts.container = $( opts.container );
-
- if ( !opts.container.length ) {
- return;
- }
-
- RuntimeClent.call( this, 'DragAndDrop' );
- }
-
- DragAndDrop.options = {
- accept: null,
- disableGlobalDnd: false
- };
-
- Base.inherits( RuntimeClent, {
- constructor: DragAndDrop,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( DragAndDrop.prototype );
-
- return DragAndDrop;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/widget',[
- 'base',
- 'uploader'
- ], function( Base, Uploader ) {
-
- var $ = Base.$,
- _init = Uploader.prototype._init,
- _destroy = Uploader.prototype.destroy,
- IGNORE = {},
- widgetClass = [];
-
- function isArrayLike( obj ) {
- if ( !obj ) {
- return false;
- }
-
- var length = obj.length,
- type = $.type( obj );
-
- if ( obj.nodeType === 1 && length ) {
- return true;
- }
-
- return type === 'array' || type !== 'function' && type !== 'string' &&
- (length === 0 || typeof length === 'number' && length > 0 &&
- (length - 1) in obj);
- }
-
- function Widget( uploader ) {
- this.owner = uploader;
- this.options = uploader.options;
- }
-
- $.extend( Widget.prototype, {
-
- init: Base.noop,
-
- // 类Backbone的事件监听声明,监听uploader实例上的事件
- // widget直接无法监听事件,事件只能通过uploader来传递
- invoke: function( apiName, args ) {
-
- /*
- {
- 'make-thumb': 'makeThumb'
- }
- */
- var map = this.responseMap;
-
- // 如果无API响应声明则忽略
- if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
- !$.isFunction( this[ map[ apiName ] ] ) ) {
-
- return IGNORE;
- }
-
- return this[ map[ apiName ] ].apply( this, args );
-
- },
-
- /**
- * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
- * @method request
- * @grammar request( command, args ) => * | Promise
- * @grammar request( command, args, callback ) => Promise
- * @for Uploader
- */
- request: function() {
- return this.owner.request.apply( this.owner, arguments );
- }
- });
-
- // 扩展Uploader.
- $.extend( Uploader.prototype, {
-
- /**
- * @property {String | Array} [disableWidgets=undefined]
- * @namespace options
- * @for Uploader
- * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
- */
-
- // 覆写_init用来初始化widgets
- _init: function() {
- var me = this,
- widgets = me._widgets = [],
- deactives = me.options.disableWidgets || '';
-
- $.each( widgetClass, function( _, klass ) {
- (!deactives || !~deactives.indexOf( klass._name )) &&
- widgets.push( new klass( me ) );
- });
-
- return _init.apply( me, arguments );
- },
-
- request: function( apiName, args, callback ) {
- var i = 0,
- widgets = this._widgets,
- len = widgets && widgets.length,
- rlts = [],
- dfds = [],
- widget, rlt, promise, key;
-
- args = isArrayLike( args ) ? args : [ args ];
-
- for ( ; i < len; i++ ) {
- widget = widgets[ i ];
- rlt = widget.invoke( apiName, args );
-
- if ( rlt !== IGNORE ) {
-
- // Deferred对象
- if ( Base.isPromise( rlt ) ) {
- dfds.push( rlt );
- } else {
- rlts.push( rlt );
- }
- }
- }
-
- // 如果有callback,则用异步方式。
- if ( callback || dfds.length ) {
- promise = Base.when.apply( Base, dfds );
- key = promise.pipe ? 'pipe' : 'then';
-
- // 很重要不能删除。删除了会死循环。
- // 保证执行顺序。让callback总是在下一个 tick 中执行。
- return promise[ key ](function() {
- var deferred = Base.Deferred(),
- args = arguments;
-
- if ( args.length === 1 ) {
- args = args[ 0 ];
- }
-
- setTimeout(function() {
- deferred.resolve( args );
- }, 1 );
-
- return deferred.promise();
- })[ callback ? key : 'done' ]( callback || Base.noop );
- } else {
- return rlts[ 0 ];
- }
- },
-
- destroy: function() {
- _destroy.apply( this, arguments );
- this._widgets = null;
- }
- });
-
- /**
- * 添加组件
- * @grammar Uploader.register(proto);
- * @grammar Uploader.register(map, proto);
- * @param {object} responseMap API 名称与函数实现的映射
- * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
- * @method Uploader.register
- * @for Uploader
- * @example
- * Uploader.register({
- * 'make-thumb': 'makeThumb'
- * }, {
- * init: function( options ) {},
- * makeThumb: function() {}
- * });
- *
- * Uploader.register({
- * 'make-thumb': function() {
- *
- * }
- * });
- */
- Uploader.register = Widget.register = function( responseMap, widgetProto ) {
- var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
- klass;
-
- if ( arguments.length === 1 ) {
- widgetProto = responseMap;
-
- // 自动生成 map 表。
- $.each(widgetProto, function(key) {
- if ( key[0] === '_' || key === 'name' ) {
- key === 'name' && (map.name = widgetProto.name);
- return;
- }
-
- map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
- });
-
- } else {
- map = $.extend( map, responseMap );
- }
-
- widgetProto.responseMap = map;
- klass = Base.inherits( Widget, widgetProto );
- klass._name = map.name;
- widgetClass.push( klass );
-
- return klass;
- };
-
- /**
- * 删除插件,只有在注册时指定了名字的才能被删除。
- * @grammar Uploader.unRegister(name);
- * @param {string} name 组件名字
- * @method Uploader.unRegister
- * @for Uploader
- * @example
- *
- * Uploader.register({
- * name: 'custom',
- *
- * 'make-thumb': function() {
- *
- * }
- * });
- *
- * Uploader.unRegister('custom');
- */
- Uploader.unRegister = Widget.unRegister = function( name ) {
- if ( !name || name === 'anonymous' ) {
- return;
- }
-
- // 删除指定的插件。
- for ( var i = widgetClass.length; i--; ) {
- if ( widgetClass[i]._name === name ) {
- widgetClass.splice(i, 1)
- }
- }
- };
-
- return Widget;
- });
- /**
- * @fileOverview DragAndDrop Widget。
- */
- define('widgets/filednd',[
- 'base',
- 'uploader',
- 'lib/dnd',
- 'widgets/widget'
- ], function( Base, Uploader, Dnd ) {
- var $ = Base.$;
-
- Uploader.options.dnd = '';
-
- /**
- * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @event dndAccept
- * @param {DataTransferItemList} items DataTransferItem
- * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
- * @for Uploader
- */
- return Uploader.register({
- name: 'dnd',
-
- init: function( opts ) {
-
- if ( !opts.dnd ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- disableGlobalDnd: opts.disableGlobalDnd,
- container: opts.dnd,
- accept: opts.accept
- }),
- dnd;
-
- this.dnd = dnd = new Dnd( options );
-
- dnd.once( 'ready', deferred.resolve );
- dnd.on( 'drop', function( files ) {
- me.request( 'add-file', [ files ]);
- });
-
- // 检测文件是否全部允许添加。
- dnd.on( 'accept', function( items ) {
- return me.owner.trigger( 'dndAccept', items );
- });
-
- dnd.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.dnd && this.dnd.destroy();
- }
- });
- });
-
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepaste',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function FilePaste( opts ) {
- opts = this.options = $.extend({}, opts );
- opts.container = $( opts.container || document.body );
- RuntimeClent.call( this, 'FilePaste' );
- }
-
- Base.inherits( RuntimeClent, {
- constructor: FilePaste,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( FilePaste.prototype );
-
- return FilePaste;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/filepaste',[
- 'base',
- 'uploader',
- 'lib/filepaste',
- 'widgets/widget'
- ], function( Base, Uploader, FilePaste ) {
- var $ = Base.$;
-
- /**
- * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
- * @namespace options
- * @for Uploader
- */
- return Uploader.register({
- name: 'paste',
-
- init: function( opts ) {
-
- if ( !opts.paste ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- container: opts.paste,
- accept: opts.accept
- }),
- paste;
-
- this.paste = paste = new FilePaste( options );
-
- paste.once( 'ready', deferred.resolve );
- paste.on( 'paste', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- paste.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.paste && this.paste.destroy();
- }
- });
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepaste',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function FilePaste( opts ) {
+ opts = this.options = $.extend({}, opts );
+ opts.container = $( opts.container || document.body );
+ RuntimeClent.call( this, 'FilePaste' );
+ }
+
+ Base.inherits( RuntimeClent, {
+ constructor: FilePaste,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( FilePaste.prototype );
+
+ return FilePaste;
});
- /**
- * @fileOverview Blob
- */
- define('lib/blob',[
- 'base',
- 'runtime/client'
- ], function( Base, RuntimeClient ) {
-
- function Blob( ruid, source ) {
- var me = this;
-
- me.source = source;
- me.ruid = ruid;
- this.size = source.size || 0;
-
- // 如果没有指定 mimetype, 但是知道文件后缀。
- if ( !source.type && this.ext &&
- ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
- this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
- } else {
- this.type = source.type || 'application/octet-stream';
- }
-
- RuntimeClient.call( me, 'Blob' );
- this.uid = source.uid || this.uid;
-
- if ( ruid ) {
- me.connectRuntime( ruid );
- }
- }
-
- Base.inherits( RuntimeClient, {
- constructor: Blob,
-
- slice: function( start, end ) {
- return this.exec( 'slice', start, end );
- },
-
- getSource: function() {
- return this.source;
- }
- });
-
- return Blob;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/filepaste',[
+ 'base',
+ 'uploader',
+ 'lib/filepaste',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePaste ) {
+ var $ = Base.$;
+
+ /**
+ * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
+ * @namespace options
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'paste',
+
+ init: function( opts ) {
+
+ if ( !opts.paste ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ container: opts.paste,
+ accept: opts.accept
+ }),
+ paste;
+
+ this.paste = paste = new FilePaste( options );
+
+ paste.once( 'ready', deferred.resolve );
+ paste.on( 'paste', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ paste.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.paste && this.paste.destroy();
+ }
+ });
});
- /**
- * 为了统一化Flash的File和HTML5的File而存在。
- * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
- * @fileOverview File
- */
- define('lib/file',[
- 'base',
- 'lib/blob'
- ], function( Base, Blob ) {
-
- var uid = 1,
- rExt = /\.([^.]+)$/;
-
- function File( ruid, file ) {
- var ext;
-
- this.name = file.name || ('untitled' + uid++);
- ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
-
- // todo 支持其他类型文件的转换。
- // 如果有 mimetype, 但是文件名里面没有找出后缀规律
- if ( !ext && file.type ) {
- ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
- RegExp.$1.toLowerCase() : '';
- this.name += '.' + ext;
- }
-
- this.ext = ext;
- this.lastModifiedDate = file.lastModifiedDate ||
- file.lastModified && new Date(file.lastModified).toLocaleString() ||
- (new Date()).toLocaleString();
-
- Blob.apply( this, arguments );
- }
-
- return Base.inherits( Blob, File );
+ /**
+ * @fileOverview Blob
+ */
+ define('lib/blob',[
+ 'base',
+ 'runtime/client'
+ ], function( Base, RuntimeClient ) {
+
+ function Blob( ruid, source ) {
+ var me = this;
+
+ me.source = source;
+ me.ruid = ruid;
+ this.size = source.size || 0;
+
+ // 如果没有指定 mimetype, 但是知道文件后缀。
+ if ( !source.type && this.ext &&
+ ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
+ this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
+ } else {
+ this.type = source.type || 'application/octet-stream';
+ }
+
+ RuntimeClient.call( me, 'Blob' );
+ this.uid = source.uid || this.uid;
+
+ if ( ruid ) {
+ me.connectRuntime( ruid );
+ }
+ }
+
+ Base.inherits( RuntimeClient, {
+ constructor: Blob,
+
+ slice: function( start, end ) {
+ return this.exec( 'slice', start, end );
+ },
+
+ getSource: function() {
+ return this.source;
+ }
+ });
+
+ return Blob;
});
+ /**
+ * 为了统一化Flash的File和HTML5的File而存在。
+ * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
+ * @fileOverview File
+ */
+ define('lib/file',[
+ 'base',
+ 'lib/blob'
+ ], function( Base, Blob ) {
+
+ var uid = 1,
+ rExt = /\.([^.]+)$/;
+
+ function File( ruid, file ) {
+ var ext;
+
+ this.name = file.name || ('untitled' + uid++);
+ ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
+
+ // todo 支持其他类型文件的转换。
+ // 如果有 mimetype, 但是文件名里面没有找出后缀规律
+ if ( !ext && file.type ) {
+ ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
+ RegExp.$1.toLowerCase() : '';
+ this.name += '.' + ext;
+ }
+
+ this.ext = ext;
+ this.lastModifiedDate = file.lastModifiedDate ||
+ file.lastModified && new Date(file.lastModified).toLocaleString() ||
+ (new Date()).toLocaleString();
+
+ Blob.apply( this, arguments );
+ }
+
+ return Base.inherits( Blob, File );
+ });
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepicker',[
- 'base',
- 'runtime/client',
- 'lib/file'
- ], function( Base, RuntimeClient, File ) {
-
- var $ = Base.$;
-
- function FilePicker( opts ) {
- opts = this.options = $.extend({}, FilePicker.options, opts );
-
- opts.container = $( opts.id );
-
- if ( !opts.container.length ) {
- throw new Error('按钮指定错误');
- }
-
- opts.innerHTML = opts.innerHTML || opts.label ||
- opts.container.html() || '';
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepicker',[
+ 'base',
+ 'runtime/client',
+ 'lib/file'
+ ], function( Base, RuntimeClient, File ) {
+
+ var $ = Base.$;
+
+ function FilePicker( opts ) {
+ opts = this.options = $.extend({}, FilePicker.options, opts );
+
+ opts.container = $( opts.id );
+
+ if ( !opts.container.length ) {
+ throw new Error('按钮指定错误');
+ }
+
+ opts.innerHTML = opts.innerHTML || opts.label ||
+ opts.container.html() || '';
+
+ opts.button = $( opts.button || document.createElement('div') );
+ opts.button.html( opts.innerHTML );
+ opts.container.html( opts.button );
+
+ RuntimeClient.call( this, 'FilePicker', true );
+ }
+
+ FilePicker.options = {
+ button: null,
+ container: null,
+ label: null,
+ innerHTML: null,
+ multiple: true,
+ accept: null,
+ name: 'file',
+ style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
+ };
+
+ Base.inherits( RuntimeClient, {
+ constructor: FilePicker,
+
+ init: function() {
+ var me = this,
+ opts = me.options,
+ button = opts.button,
+ style = opts.style;
+
+ if (style)
+ button.addClass('webuploader-pick');
+
+ me.on( 'all', function( type ) {
+ var files;
+
+ switch ( type ) {
+ case 'mouseenter':
+ if (style)
+ button.addClass('webuploader-pick-hover');
+ break;
+
+ case 'mouseleave':
+ if (style)
+ button.removeClass('webuploader-pick-hover');
+ break;
+
+ case 'change':
+ files = me.exec('getFiles');
+ me.trigger( 'select', $.map( files, function( file ) {
+ file = new File( me.getRuid(), file );
+
+ // 记录来源。
+ file._refer = opts.container;
+ return file;
+ }), opts.container );
+ break;
+ }
+ });
+
+ me.connectRuntime( opts, function() {
+ me.refresh();
+ me.exec( 'init', opts );
+ me.trigger('ready');
+ });
+
+ this._resizeHandler = Base.bindFn( this.refresh, this );
+ $( window ).on( 'resize', this._resizeHandler );
+ },
+
+ refresh: function() {
+ var shimContainer = this.getRuntime().getContainer(),
+ button = this.options.button,
+ /*
+ width = button.outerWidth ?
+ button.outerWidth() : button.width(),
+
+ height = button.outerHeight ?
+ button.outerHeight() : button.height(),
+ */
+ width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
+ height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
+ pos = button.offset();
+
+ width && height && shimContainer.css({
+ bottom: 'auto',
+ right: 'auto',
+ width: width + 'px',
+ height: height + 'px'
+ }).offset( pos );
+ },
+
+ enable: function() {
+ var btn = this.options.button;
+
+ btn.removeClass('webuploader-pick-disable');
+ this.refresh();
+ },
+
+ disable: function() {
+ var btn = this.options.button;
+
+ this.getRuntime().getContainer().css({
+ top: '-99999px'
+ });
+
+ btn.addClass('webuploader-pick-disable');
+ },
+
+ destroy: function() {
+ var btn = this.options.button;
+ $( window ).off( 'resize', this._resizeHandler );
+ btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
+ 'webuploader-pick');
+ }
+ });
+
+ return FilePicker;
+ });
- opts.button = $( opts.button || document.createElement('div') );
- opts.button.html( opts.innerHTML );
- opts.container.html( opts.button );
-
- RuntimeClient.call( this, 'FilePicker', true );
- }
-
- FilePicker.options = {
- button: null,
- container: null,
- label: null,
- innerHTML: null,
- multiple: true,
- accept: null,
- name: 'file',
- style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
- };
-
- Base.inherits( RuntimeClient, {
- constructor: FilePicker,
-
- init: function() {
- var me = this,
- opts = me.options,
- button = opts.button,
- style = opts.style;
-
- if (style)
- button.addClass('webuploader-pick');
-
- me.on( 'all', function( type ) {
- var files;
-
- switch ( type ) {
- case 'mouseenter':
- if (style)
- button.addClass('webuploader-pick-hover');
- break;
-
- case 'mouseleave':
- if (style)
- button.removeClass('webuploader-pick-hover');
- break;
-
- case 'change':
- files = me.exec('getFiles');
- me.trigger( 'select', $.map( files, function( file ) {
- file = new File( me.getRuid(), file );
-
- // 记录来源。
- file._refer = opts.container;
- return file;
- }), opts.container );
- break;
- }
- });
-
- me.connectRuntime( opts, function() {
- me.refresh();
- me.exec( 'init', opts );
- me.trigger('ready');
- });
-
- this._resizeHandler = Base.bindFn( this.refresh, this );
- $( window ).on( 'resize', this._resizeHandler );
- },
-
- refresh: function() {
- var shimContainer = this.getRuntime().getContainer(),
- button = this.options.button,
- /*
- width = button.outerWidth ?
- button.outerWidth() : button.width(),
-
- height = button.outerHeight ?
- button.outerHeight() : button.height(),
- */
- width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
- height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
- pos = button.offset();
-
- width && height && shimContainer.css({
- bottom: 'auto',
- right: 'auto',
- width: width + 'px',
- height: height + 'px'
- }).offset( pos );
- },
-
- enable: function() {
- var btn = this.options.button;
-
- btn.removeClass('webuploader-pick-disable');
- this.refresh();
- },
-
- disable: function() {
- var btn = this.options.button;
-
- this.getRuntime().getContainer().css({
- top: '-99999px'
- });
-
- btn.addClass('webuploader-pick-disable');
- },
-
- destroy: function() {
- var btn = this.options.button;
- $( window ).off( 'resize', this._resizeHandler );
- btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
- 'webuploader-pick');
- }
- });
-
- return FilePicker;
+ /**
+ * @fileOverview 文件选择相关
+ */
+ define('widgets/filepicker',[
+ 'base',
+ 'uploader',
+ 'lib/filepicker',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePicker ) {
+ var $ = Base.$;
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Selector | Object} [pick=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 指定选择文件的按钮容器,不指定则不创建按钮。
+ *
+ * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
+ * * `label` {String} 请采用 `innerHTML` 代替
+ * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
+ * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
+ */
+ pick: null,
+
+ /**
+ * @property {Array} [accept=null]
+ * @namespace options
+ * @for Uploader
+ * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
+ *
+ * * `title` {String} 文字描述
+ * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
+ * * `mimeTypes` {String} 多个用逗号分割。
+ *
+ * 如:
+ *
+ * ```
+ * {
+ * title: 'Images',
+ * extensions: 'gif,jpg,jpeg,bmp,png',
+ * mimeTypes: 'image/*'
+ * }
+ * ```
+ */
+ accept: null/*{
+ title: 'Images',
+ extensions: 'gif,jpg,jpeg,bmp,png',
+ mimeTypes: 'image/*'
+ }*/
+ });
+
+ return Uploader.register({
+ name: 'picker',
+
+ init: function( opts ) {
+ this.pickers = [];
+ return opts.pick && this.addBtn( opts.pick );
+ },
+
+ refresh: function() {
+ $.each( this.pickers, function() {
+ this.refresh();
+ });
+ },
+
+ /**
+ * @method addButton
+ * @for Uploader
+ * @grammar addButton( pick ) => Promise
+ * @description
+ * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
+ * @example
+ * uploader.addButton({
+ * id: '#btnContainer',
+ * innerHTML: '选择文件'
+ * });
+ */
+ addBtn: function( pick ) {
+ var me = this,
+ opts = me.options,
+ accept = opts.accept,
+ promises = [];
+
+ if ( !pick ) {
+ return;
+ }
+
+ $.isPlainObject( pick ) || (pick = {
+ id: pick
+ });
+
+ $( pick.id ).each(function() {
+ var options, picker, deferred;
+
+ deferred = Base.Deferred();
+
+ options = $.extend({}, pick, {
+ accept: $.isPlainObject( accept ) ? [ accept ] : accept,
+ swf: opts.swf,
+ runtimeOrder: opts.runtimeOrder,
+ id: this
+ });
+
+ picker = new FilePicker( options );
+
+ picker.once( 'ready', deferred.resolve );
+ picker.on( 'select', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ picker.on('dialogopen', function() {
+ me.owner.trigger('dialogOpen', picker.button);
+ });
+ picker.init();
+
+ me.pickers.push( picker );
+
+ promises.push( deferred.promise() );
+ });
+
+ return Base.when.apply( Base, promises );
+ },
+
+ disable: function() {
+ $.each( this.pickers, function() {
+ this.disable();
+ });
+ },
+
+ enable: function() {
+ $.each( this.pickers, function() {
+ this.enable();
+ });
+ },
+
+ destroy: function() {
+ $.each( this.pickers, function() {
+ this.destroy();
+ });
+ this.pickers = null;
+ }
+ });
});
-
- /**
- * @fileOverview 文件选择相关
- */
- define('widgets/filepicker',[
- 'base',
- 'uploader',
- 'lib/filepicker',
- 'widgets/widget'
- ], function( Base, Uploader, FilePicker ) {
- var $ = Base.$;
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Selector | Object} [pick=undefined]
- * @namespace options
- * @for Uploader
- * @description 指定选择文件的按钮容器,不指定则不创建按钮。
- *
- * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
- * * `label` {String} 请采用 `innerHTML` 代替
- * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
- * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
- */
- pick: null,
-
- /**
- * @property {Array} [accept=null]
- * @namespace options
- * @for Uploader
- * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
- *
- * * `title` {String} 文字描述
- * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
- * * `mimeTypes` {String} 多个用逗号分割。
- *
- * 如:
- *
- * ```
- * {
- * title: 'Images',
- * extensions: 'gif,jpg,jpeg,bmp,png',
- * mimeTypes: 'image/*'
- * }
- * ```
- */
- accept: null/*{
- title: 'Images',
- extensions: 'gif,jpg,jpeg,bmp,png',
- mimeTypes: 'image/*'
- }*/
- });
-
- return Uploader.register({
- name: 'picker',
-
- init: function( opts ) {
- this.pickers = [];
- return opts.pick && this.addBtn( opts.pick );
- },
-
- refresh: function() {
- $.each( this.pickers, function() {
- this.refresh();
- });
- },
-
- /**
- * @method addButton
- * @for Uploader
- * @grammar addButton( pick ) => Promise
- * @description
- * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
- * @example
- * uploader.addButton({
- * id: '#btnContainer',
- * innerHTML: '选择文件'
- * });
- */
- addBtn: function( pick ) {
- var me = this,
- opts = me.options,
- accept = opts.accept,
- promises = [];
-
- if ( !pick ) {
- return;
- }
-
- $.isPlainObject( pick ) || (pick = {
- id: pick
- });
-
- $( pick.id ).each(function() {
- var options, picker, deferred;
-
- deferred = Base.Deferred();
-
- options = $.extend({}, pick, {
- accept: $.isPlainObject( accept ) ? [ accept ] : accept,
- swf: opts.swf,
- runtimeOrder: opts.runtimeOrder,
- id: this
- });
-
- picker = new FilePicker( options );
-
- picker.once( 'ready', deferred.resolve );
- picker.on( 'select', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- picker.on('dialogopen', function() {
- me.owner.trigger('dialogOpen', picker.button);
- });
- picker.init();
-
- me.pickers.push( picker );
-
- promises.push( deferred.promise() );
- });
-
- return Base.when.apply( Base, promises );
- },
-
- disable: function() {
- $.each( this.pickers, function() {
- this.disable();
- });
- },
-
- enable: function() {
- $.each( this.pickers, function() {
- this.enable();
- });
- },
-
- destroy: function() {
- $.each( this.pickers, function() {
- this.destroy();
- });
- this.pickers = null;
- }
- });
+ /**
+ * @fileOverview Image
+ */
+ define('lib/image',[
+ 'base',
+ 'runtime/client',
+ 'lib/blob'
+ ], function( Base, RuntimeClient, Blob ) {
+ var $ = Base.$;
+
+ // 构造器。
+ function Image( opts ) {
+ this.options = $.extend({}, Image.options, opts );
+ RuntimeClient.call( this, 'Image' );
+
+ this.on( 'load', function() {
+ this._info = this.exec('info');
+ this._meta = this.exec('meta');
+ });
+ }
+
+ // 默认选项。
+ Image.options = {
+
+ // 默认的图片处理质量
+ quality: 90,
+
+ // 是否裁剪
+ crop: false,
+
+ // 是否保留头部信息
+ preserveHeaders: false,
+
+ // 是否允许放大。
+ allowMagnify: false
+ };
+
+ // 继承RuntimeClient.
+ Base.inherits( RuntimeClient, {
+ constructor: Image,
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._meta = val;
+ return this;
+ }
+
+ // getter
+ return this._meta;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ ruid = blob.getRuid();
+
+ this.connectRuntime( ruid, function() {
+ me.exec( 'init', me.options );
+ me.exec( 'loadFromBlob', blob );
+ });
+ },
+
+ resize: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'resize' ].concat( args ) );
+ },
+
+ crop: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'crop' ].concat( args ) );
+ },
+
+ getAsDataUrl: function( type ) {
+ return this.exec( 'getAsDataUrl', type );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this.exec( 'getAsBlob', type );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
+
+ return Image;
});
- /**
- * @fileOverview Image
- */
- define('lib/image',[
- 'base',
- 'runtime/client',
- 'lib/blob'
- ], function( Base, RuntimeClient, Blob ) {
- var $ = Base.$;
-
- // 构造器。
- function Image( opts ) {
- this.options = $.extend({}, Image.options, opts );
- RuntimeClient.call( this, 'Image' );
-
- this.on( 'load', function() {
- this._info = this.exec('info');
- this._meta = this.exec('meta');
- });
- }
-
- // 默认选项。
- Image.options = {
-
- // 默认的图片处理质量
- quality: 90,
-
- // 是否裁剪
- crop: false,
-
- // 是否保留头部信息
- preserveHeaders: false,
-
- // 是否允许放大。
- allowMagnify: false
- };
-
- // 继承RuntimeClient.
- Base.inherits( RuntimeClient, {
- constructor: Image,
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._meta = val;
- return this;
- }
-
- // getter
- return this._meta;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- ruid = blob.getRuid();
-
- this.connectRuntime( ruid, function() {
- me.exec( 'init', me.options );
- me.exec( 'loadFromBlob', blob );
- });
- },
-
- resize: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'resize' ].concat( args ) );
- },
-
- crop: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'crop' ].concat( args ) );
- },
-
- getAsDataUrl: function( type ) {
- return this.exec( 'getAsDataUrl', type );
- },
-
- getAsBlob: function( type ) {
- var blob = this.exec( 'getAsBlob', type );
-
- return new Blob( this.getRuid(), blob );
- }
- });
-
- return Image;
+ /**
+ * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
+ */
+ define('widgets/image',[
+ 'base',
+ 'uploader',
+ 'lib/image',
+ 'widgets/widget'
+ ], function( Base, Uploader, Image ) {
+
+ var $ = Base.$,
+ throttle;
+
+ // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
+ throttle = (function( max ) {
+ var occupied = 0,
+ waiting = [],
+ tick = function() {
+ var item;
+
+ while ( waiting.length && occupied < max ) {
+ item = waiting.shift();
+ occupied += item[ 0 ];
+ item[ 1 ]();
+ }
+ };
+
+ return function( emiter, size, cb ) {
+ waiting.push([ size, cb ]);
+ emiter.once( 'destroy', function() {
+ occupied -= size;
+ setTimeout( tick, 1 );
+ });
+ setTimeout( tick, 1 );
+ };
+ })( 5 * 1024 * 1024 );
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Object} [thumb]
+ * @namespace options
+ * @for Uploader
+ * @description 配置生成缩略图的选项。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 110,
+ * height: 110,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 70,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: true,
+ *
+ * // 是否允许裁剪。
+ * crop: true,
+ *
+ * // 为空的话则保留原有图片格式。
+ * // 否则强制转换成指定的类型。
+ * type: 'image/jpeg'
+ * }
+ * ```
+ */
+ thumb: {
+ width: 110,
+ height: 110,
+ quality: 70,
+ allowMagnify: true,
+ crop: true,
+ preserveHeaders: false,
+
+ // 为空的话则保留原有图片格式。
+ // 否则强制转换成指定的类型。
+ // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
+ // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
+ type: 'image/jpeg'
+ },
+
+ /**
+ * @property {Object} [compress]
+ * @namespace options
+ * @for Uploader
+ * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 1600,
+ * height: 1600,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 90,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: false,
+ *
+ * // 是否允许裁剪。
+ * crop: false,
+ *
+ * // 是否保留头部meta信息。
+ * preserveHeaders: true,
+ *
+ * // 如果发现压缩后文件大小比原来还大,则使用原来图片
+ * // 此属性可能会影响图片自动纠正功能
+ * noCompressIfLarger: false,
+ *
+ * // 单位字节,如果图片大小小于此值,不会采用压缩。
+ * compressSize: 0
+ * }
+ * ```
+ */
+ compress: {
+ width: 1600,
+ height: 1600,
+ quality: 90,
+ allowMagnify: false,
+ crop: false,
+ preserveHeaders: true
+ }
+ });
+
+ return Uploader.register({
+
+ name: 'image',
+
+
+ /**
+ * 生成缩略图,此过程为异步,所以需要传入`callback`。
+ * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
+ *
+ * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
+ *
+ * `callback`中可以接收到两个参数。
+ * * 第一个为error,如果生成缩略图有错误,此error将为真。
+ * * 第二个为ret, 缩略图的Data URL值。
+ *
+ * **注意**
+ * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
+ * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
+ *
+ * @method makeThumb
+ * @grammar makeThumb( file, callback ) => undefined
+ * @grammar makeThumb( file, callback, width, height ) => undefined
+ * @for Uploader
+ * @example
+ *
+ * uploader.on( 'fileQueued', function( file ) {
+ * var $li = ...;
+ *
+ * uploader.makeThumb( file, function( error, ret ) {
+ * if ( error ) {
+ * $li.text('预览错误');
+ * } else {
+ * $li.append('');
+ * }
+ * });
+ *
+ * });
+ */
+ makeThumb: function( file, cb, width, height ) {
+ var opts, image;
+
+ file = this.request( 'get-file', file );
+
+ // 只预览图片格式。
+ if ( !file.type.match( /^image/ ) ) {
+ cb( true );
+ return;
+ }
+
+ opts = $.extend({}, this.options.thumb );
+
+ // 如果传入的是object.
+ if ( $.isPlainObject( width ) ) {
+ opts = $.extend( opts, width );
+ width = null;
+ }
+
+ width = width || opts.width;
+ height = height || opts.height;
+
+ image = new Image( opts );
+
+ image.once( 'load', function() {
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ // 当 resize 完后
+ image.once( 'complete', function() {
+ cb( false, image.getAsDataUrl( opts.type ) );
+ image.destroy();
+ });
+
+ image.once( 'error', function( reason ) {
+ cb( reason || true );
+ image.destroy();
+ });
+
+ throttle( image, file.source.size, function() {
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+ image.loadFromBlob( file.source );
+ });
+ },
+
+ beforeSendFile: function( file ) {
+ var opts = this.options.compress || this.options.resize,
+ compressSize = opts && opts.compressSize || 0,
+ noCompressIfLarger = opts && opts.noCompressIfLarger || false,
+ image, deferred;
+
+ file = this.request( 'get-file', file );
+
+ // 只压缩 jpeg 图片格式。
+ // gif 可能会丢失针
+ // bmp png 基本上尺寸都不大,且压缩比比较小。
+ if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
+ file.size < compressSize ||
+ file._compressed ) {
+ return;
+ }
+
+ opts = $.extend({}, opts );
+ deferred = Base.Deferred();
+
+ image = new Image( opts );
+
+ deferred.always(function() {
+ image.destroy();
+ image = null;
+ });
+ image.once( 'error', deferred.reject );
+ image.once( 'load', function() {
+ var width = opts.width,
+ height = opts.height;
+
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ image.once( 'complete', function() {
+ var blob, size;
+
+ // 移动端 UC / qq 浏览器的无图模式下
+ // ctx.getImageData 处理大图的时候会报 Exception
+ // INDEX_SIZE_ERR: DOM Exception 1
+ try {
+ blob = image.getAsBlob( opts.type );
+
+ size = file.size;
+
+ // 如果压缩后,比原来还大则不用压缩后的。
+ if ( !noCompressIfLarger || blob.size < size ) {
+ // file.source.destroy && file.source.destroy();
+ file.source = blob;
+ file.size = blob.size;
+
+ file.trigger( 'resize', blob.size, size );
+ }
+
+ // 标记,避免重复压缩。
+ file._compressed = true;
+ deferred.resolve();
+ } catch ( e ) {
+ // 出错了直接继续,让其上传原始图片
+ deferred.resolve();
+ }
+ });
+
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+
+ image.loadFromBlob( file.source );
+ return deferred.promise();
+ }
+ });
});
- /**
- * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
- */
- define('widgets/image',[
- 'base',
- 'uploader',
- 'lib/image',
- 'widgets/widget'
- ], function( Base, Uploader, Image ) {
-
- var $ = Base.$,
- throttle;
-
- // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
- throttle = (function( max ) {
- var occupied = 0,
- waiting = [],
- tick = function() {
- var item;
-
- while ( waiting.length && occupied < max ) {
- item = waiting.shift();
- occupied += item[ 0 ];
- item[ 1 ]();
- }
- };
-
- return function( emiter, size, cb ) {
- waiting.push([ size, cb ]);
- emiter.once( 'destroy', function() {
- occupied -= size;
- setTimeout( tick, 1 );
- });
- setTimeout( tick, 1 );
- };
- })( 5 * 1024 * 1024 );
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Object} [thumb]
- * @namespace options
- * @for Uploader
- * @description 配置生成缩略图的选项。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 110,
- * height: 110,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 70,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: true,
- *
- * // 是否允许裁剪。
- * crop: true,
- *
- * // 为空的话则保留原有图片格式。
- * // 否则强制转换成指定的类型。
- * type: 'image/jpeg'
- * }
- * ```
- */
- thumb: {
- width: 110,
- height: 110,
- quality: 70,
- allowMagnify: true,
- crop: true,
- preserveHeaders: false,
-
- // 为空的话则保留原有图片格式。
- // 否则强制转换成指定的类型。
- // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
- // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
- type: 'image/jpeg'
- },
-
- /**
- * @property {Object} [compress]
- * @namespace options
- * @for Uploader
- * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 1600,
- * height: 1600,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 90,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: false,
- *
- * // 是否允许裁剪。
- * crop: false,
- *
- * // 是否保留头部meta信息。
- * preserveHeaders: true,
- *
- * // 如果发现压缩后文件大小比原来还大,则使用原来图片
- * // 此属性可能会影响图片自动纠正功能
- * noCompressIfLarger: false,
- *
- * // 单位字节,如果图片大小小于此值,不会采用压缩。
- * compressSize: 0
- * }
- * ```
- */
- compress: {
- width: 1600,
- height: 1600,
- quality: 90,
- allowMagnify: false,
- crop: false,
- preserveHeaders: true
- }
- });
-
- return Uploader.register({
-
- name: 'image',
-
-
- /**
- * 生成缩略图,此过程为异步,所以需要传入`callback`。
- * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
- *
- * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
- *
- * `callback`中可以接收到两个参数。
- * * 第一个为error,如果生成缩略图有错误,此error将为真。
- * * 第二个为ret, 缩略图的Data URL值。
- *
- * **注意**
- * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
- * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
- *
- * @method makeThumb
- * @grammar makeThumb( file, callback ) => undefined
- * @grammar makeThumb( file, callback, width, height ) => undefined
- * @for Uploader
- * @example
- *
- * uploader.on( 'fileQueued', function( file ) {
- * var $li = ...;
- *
- * uploader.makeThumb( file, function( error, ret ) {
- * if ( error ) {
- * $li.text('预览错误');
- * } else {
- * $li.append('');
- * }
- * });
- *
- * });
- */
- makeThumb: function( file, cb, width, height ) {
- var opts, image;
-
- file = this.request( 'get-file', file );
-
- // 只预览图片格式。
- if ( !file.type.match( /^image/ ) ) {
- cb( true );
- return;
- }
-
- opts = $.extend({}, this.options.thumb );
-
- // 如果传入的是object.
- if ( $.isPlainObject( width ) ) {
- opts = $.extend( opts, width );
- width = null;
- }
-
- width = width || opts.width;
- height = height || opts.height;
-
- image = new Image( opts );
-
- image.once( 'load', function() {
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- // 当 resize 完后
- image.once( 'complete', function() {
- cb( false, image.getAsDataUrl( opts.type ) );
- image.destroy();
- });
-
- image.once( 'error', function( reason ) {
- cb( reason || true );
- image.destroy();
- });
-
- throttle( image, file.source.size, function() {
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
- image.loadFromBlob( file.source );
- });
- },
-
- beforeSendFile: function( file ) {
- var opts = this.options.compress || this.options.resize,
- compressSize = opts && opts.compressSize || 0,
- noCompressIfLarger = opts && opts.noCompressIfLarger || false,
- image, deferred;
-
- file = this.request( 'get-file', file );
-
- // 只压缩 jpeg 图片格式。
- // gif 可能会丢失针
- // bmp png 基本上尺寸都不大,且压缩比比较小。
- if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
- file.size < compressSize ||
- file._compressed ) {
- return;
- }
-
- opts = $.extend({}, opts );
- deferred = Base.Deferred();
-
- image = new Image( opts );
-
- deferred.always(function() {
- image.destroy();
- image = null;
- });
- image.once( 'error', deferred.reject );
- image.once( 'load', function() {
- var width = opts.width,
- height = opts.height;
-
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- image.once( 'complete', function() {
- var blob, size;
-
- // 移动端 UC / qq 浏览器的无图模式下
- // ctx.getImageData 处理大图的时候会报 Exception
- // INDEX_SIZE_ERR: DOM Exception 1
- try {
- blob = image.getAsBlob( opts.type );
-
- size = file.size;
-
- // 如果压缩后,比原来还大则不用压缩后的。
- if ( !noCompressIfLarger || blob.size < size ) {
- // file.source.destroy && file.source.destroy();
- file.source = blob;
- file.size = blob.size;
-
- file.trigger( 'resize', blob.size, size );
- }
-
- // 标记,避免重复压缩。
- file._compressed = true;
- deferred.resolve();
- } catch ( e ) {
- // 出错了直接继续,让其上传原始图片
- deferred.resolve();
- }
- });
-
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
-
- image.loadFromBlob( file.source );
- return deferred.promise();
- }
- });
- });
- /**
- * @fileOverview 文件属性封装
- */
- define('file',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- idPrefix = 'WU_FILE_',
- idSuffix = 0,
- rExt = /\.([^.]+)$/,
- statusMap = {};
-
- function gid() {
- return idPrefix + idSuffix++;
- }
-
- /**
- * 文件类
- * @class File
- * @constructor 构造函数
- * @grammar new File( source ) => File
- * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
- */
- function WUFile( source ) {
-
- /**
- * 文件名,包括扩展名(后缀)
- * @property name
- * @type {string}
- */
- this.name = source.name || 'Untitled';
-
- /**
- * 文件体积(字节)
- * @property size
- * @type {uint}
- * @default 0
- */
- this.size = source.size || 0;
-
- /**
- * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
- * @property type
- * @type {string}
- * @default 'application/octet-stream'
- */
- this.type = source.type || 'application/octet-stream';
-
- /**
- * 文件最后修改日期
- * @property lastModifiedDate
- * @type {int}
- * @default 当前时间戳
- */
- this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
-
- /**
- * 文件ID,每个对象具有唯一ID,与文件名无关
- * @property id
- * @type {string}
- */
- this.id = gid();
-
- /**
- * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
- * @property ext
- * @type {string}
- */
- this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
-
-
- /**
- * 状态文字说明。在不同的status语境下有不同的用途。
- * @property statusText
- * @type {string}
- */
- this.statusText = '';
-
- // 存储文件状态,防止通过属性直接修改
- statusMap[ this.id ] = WUFile.Status.INITED;
-
- this.source = source;
- this.loaded = 0;
-
- this.on( 'error', function( msg ) {
- this.setStatus( WUFile.Status.ERROR, msg );
- });
- }
-
- $.extend( WUFile.prototype, {
-
- /**
- * 设置状态,状态变化时会触发`change`事件。
- * @method setStatus
- * @grammar setStatus( status[, statusText] );
- * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
- * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
- */
- setStatus: function( status, text ) {
-
- var prevStatus = statusMap[ this.id ];
-
- typeof text !== 'undefined' && (this.statusText = text);
-
- if ( status !== prevStatus ) {
- statusMap[ this.id ] = status;
- /**
- * 文件状态变化
- * @event statuschange
- */
- this.trigger( 'statuschange', status, prevStatus );
- }
-
- },
-
- /**
- * 获取文件状态
- * @return {File.Status}
- * @example
- 文件状态具体包括以下几种类型:
- {
- // 初始化
- INITED: 0,
- // 已入队列
- QUEUED: 1,
- // 正在上传
- PROGRESS: 2,
- // 上传出错
- ERROR: 3,
- // 上传成功
- COMPLETE: 4,
- // 上传取消
- CANCELLED: 5
- }
- */
- getStatus: function() {
- return statusMap[ this.id ];
- },
-
- /**
- * 获取文件原始信息。
- * @return {*}
- */
- getSource: function() {
- return this.source;
- },
-
- destroy: function() {
- this.off();
- delete statusMap[ this.id ];
- }
- });
-
- Mediator.installTo( WUFile.prototype );
+ /**
+ * @fileOverview 文件属性封装
+ */
+ define('file',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ idPrefix = 'WU_FILE_',
+ idSuffix = 0,
+ rExt = /\.([^.]+)$/,
+ statusMap = {};
+
+ function gid() {
+ return idPrefix + idSuffix++;
+ }
+
+ /**
+ * 文件类
+ * @class File
+ * @constructor 构造函数
+ * @grammar new File( source ) => File
+ * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
+ */
+ function WUFile( source ) {
+
+ /**
+ * 文件名,包括扩展名(后缀)
+ * @property name
+ * @type {string}
+ */
+ this.name = source.name || 'Untitled';
+
+ /**
+ * 文件体积(字节)
+ * @property size
+ * @type {uint}
+ * @default 0
+ */
+ this.size = source.size || 0;
+
+ /**
+ * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
+ * @property type
+ * @type {string}
+ * @default 'application/octet-stream'
+ */
+ this.type = source.type || 'application/octet-stream';
+
+ /**
+ * 文件最后修改日期
+ * @property lastModifiedDate
+ * @type {int}
+ * @default 当前时间戳
+ */
+ this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
+
+ /**
+ * 文件ID,每个对象具有唯一ID,与文件名无关
+ * @property id
+ * @type {string}
+ */
+ this.id = gid();
+
+ /**
+ * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
+ * @property ext
+ * @type {string}
+ */
+ this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
+
+
+ /**
+ * 状态文字说明。在不同的status语境下有不同的用途。
+ * @property statusText
+ * @type {string}
+ */
+ this.statusText = '';
+
+ // 存储文件状态,防止通过属性直接修改
+ statusMap[ this.id ] = WUFile.Status.INITED;
+
+ this.source = source;
+ this.loaded = 0;
+
+ this.on( 'error', function( msg ) {
+ this.setStatus( WUFile.Status.ERROR, msg );
+ });
+ }
+
+ $.extend( WUFile.prototype, {
+
+ /**
+ * 设置状态,状态变化时会触发`change`事件。
+ * @method setStatus
+ * @grammar setStatus( status[, statusText] );
+ * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
+ * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
+ */
+ setStatus: function( status, text ) {
+
+ var prevStatus = statusMap[ this.id ];
+
+ typeof text !== 'undefined' && (this.statusText = text);
+
+ if ( status !== prevStatus ) {
+ statusMap[ this.id ] = status;
+ /**
+ * 文件状态变化
+ * @event statuschange
+ */
+ this.trigger( 'statuschange', status, prevStatus );
+ }
+
+ },
+
+ /**
+ * 获取文件状态
+ * @return {File.Status}
+ * @example
+ 文件状态具体包括以下几种类型:
+ {
+ // 初始化
+ INITED: 0,
+ // 已入队列
+ QUEUED: 1,
+ // 正在上传
+ PROGRESS: 2,
+ // 上传出错
+ ERROR: 3,
+ // 上传成功
+ COMPLETE: 4,
+ // 上传取消
+ CANCELLED: 5
+ }
+ */
+ getStatus: function() {
+ return statusMap[ this.id ];
+ },
+
+ /**
+ * 获取文件原始信息。
+ * @return {*}
+ */
+ getSource: function() {
+ return this.source;
+ },
+
+ destroy: function() {
+ this.off();
+ delete statusMap[ this.id ];
+ }
+ });
+
+ Mediator.installTo( WUFile.prototype );
+
+ /**
+ * 文件状态值,具体包括以下几种类型:
+ * * `inited` 初始状态
+ * * `queued` 已经进入队列, 等待上传
+ * * `progress` 上传中
+ * * `complete` 上传完成。
+ * * `error` 上传出错,可重试
+ * * `interrupt` 上传中断,可续传。
+ * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
+ * * `cancelled` 文件被移除。
+ * @property {Object} Status
+ * @namespace File
+ * @class File
+ * @static
+ */
+ WUFile.Status = {
+ INITED: 'inited', // 初始状态
+ QUEUED: 'queued', // 已经进入队列, 等待上传
+ PROGRESS: 'progress', // 上传中
+ ERROR: 'error', // 上传出错,可重试
+ COMPLETE: 'complete', // 上传完成。
+ CANCELLED: 'cancelled', // 上传取消。
+ INTERRUPT: 'interrupt', // 上传中断,可续传。
+ INVALID: 'invalid' // 文件不合格,不能重试上传。
+ };
+
+ return WUFile;
+ });
- /**
- * 文件状态值,具体包括以下几种类型:
- * * `inited` 初始状态
- * * `queued` 已经进入队列, 等待上传
- * * `progress` 上传中
- * * `complete` 上传完成。
- * * `error` 上传出错,可重试
- * * `interrupt` 上传中断,可续传。
- * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
- * * `cancelled` 文件被移除。
- * @property {Object} Status
- * @namespace File
- * @class File
- * @static
- */
- WUFile.Status = {
- INITED: 'inited', // 初始状态
- QUEUED: 'queued', // 已经进入队列, 等待上传
- PROGRESS: 'progress', // 上传中
- ERROR: 'error', // 上传出错,可重试
- COMPLETE: 'complete', // 上传完成。
- CANCELLED: 'cancelled', // 上传取消。
- INTERRUPT: 'interrupt', // 上传中断,可续传。
- INVALID: 'invalid' // 文件不合格,不能重试上传。
- };
+ /**
+ * @fileOverview 文件队列
+ */
+ define('queue',[
+ 'base',
+ 'mediator',
+ 'file'
+ ], function( Base, Mediator, WUFile ) {
+
+ var $ = Base.$,
+ STATUS = WUFile.Status;
+
+ /**
+ * 文件队列, 用来存储各个状态中的文件。
+ * @class Queue
+ * @extends Mediator
+ */
+ function Queue() {
+
+ /**
+ * 统计文件数。
+ * * `numOfQueue` 队列中的文件数。
+ * * `numOfSuccess` 上传成功的文件数
+ * * `numOfCancel` 被取消的文件数
+ * * `numOfProgress` 正在上传中的文件数
+ * * `numOfUploadFailed` 上传错误的文件数。
+ * * `numOfInvalid` 无效的文件数。
+ * * `numOfDeleted` 被移除的文件数。
+ * * `numOfInterrupt` 被中断的文件数。
+ * @property {Object} stats
+ */
+ this.stats = {
+ numOfQueue: 0,
+ numOfSuccess: 0,
+ numOfCancel: 0,
+ numOfProgress: 0,
+ numOfUploadFailed: 0,
+ numOfInvalid: 0,
+ numOfDeleted: 0,
+ numOfInterrupt: 0
+ };
+
+ // 上传队列,仅包括等待上传的文件
+ this._queue = [];
+
+ // 存储所有文件
+ this._map = {};
+ }
+
+ $.extend( Queue.prototype, {
+
+ /**
+ * 将新文件加入对队列尾部
+ *
+ * @method append
+ * @param {File} file 文件对象
+ */
+ append: function( file ) {
+ this._queue.push( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 将新文件加入对队列头部
+ *
+ * @method prepend
+ * @param {File} file 文件对象
+ */
+ prepend: function( file ) {
+ this._queue.unshift( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 获取文件对象
+ *
+ * @method getFile
+ * @param {String} fileId 文件ID
+ * @return {File}
+ */
+ getFile: function( fileId ) {
+ if ( typeof fileId !== 'string' ) {
+ return fileId;
+ }
+ return this._map[ fileId ];
+ },
+
+ /**
+ * 从队列中取出一个指定状态的文件。
+ * @grammar fetch( status ) => File
+ * @method fetch
+ * @param {String} status [文件状态值](#WebUploader:File:File.Status)
+ * @return {File} [File](#WebUploader:File)
+ */
+ fetch: function( status ) {
+ var len = this._queue.length,
+ i, file;
+
+ status = status || STATUS.QUEUED;
+
+ for ( i = 0; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( status === file.getStatus() ) {
+ return file;
+ }
+ }
+
+ return null;
+ },
+
+ /**
+ * 对队列进行排序,能够控制文件上传顺序。
+ * @grammar sort( fn ) => undefined
+ * @method sort
+ * @param {Function} fn 排序方法
+ */
+ sort: function( fn ) {
+ if ( typeof fn === 'function' ) {
+ this._queue.sort( fn );
+ }
+ },
+
+ /**
+ * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
+ * @grammar getFiles( [status1[, status2 ...]] ) => Array
+ * @method getFiles
+ * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
+ */
+ getFiles: function() {
+ var sts = [].slice.call( arguments, 0 ),
+ ret = [],
+ i = 0,
+ len = this._queue.length,
+ file;
+
+ for ( ; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
+ continue;
+ }
+
+ ret.push( file );
+ }
+
+ return ret;
+ },
+
+ /**
+ * 在队列中删除文件。
+ * @grammar removeFile( file ) => Array
+ * @method removeFile
+ * @param {File} 文件对象。
+ */
+ removeFile: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( existing ) {
+ delete this._map[ file.id ];
+ this._delFile(file);
+ file.destroy();
+ this.stats.numOfDeleted++;
+
+ }
+ },
+
+ _fileAdded: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( !existing ) {
+ this._map[ file.id ] = file;
+
+ file.on( 'statuschange', function( cur, pre ) {
+ me._onFileStatusChange( cur, pre );
+ });
+ }
+ },
+
+ _delFile : function(file){
+ for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
+ if(this._queue[i] == file){
+ this._queue.splice(i,1);
+ break;
+ }
+ }
+ },
+
+ _onFileStatusChange: function( curStatus, preStatus ) {
+ var stats = this.stats;
+
+ switch ( preStatus ) {
+ case STATUS.PROGRESS:
+ stats.numOfProgress--;
+ break;
+
+ case STATUS.QUEUED:
+ stats.numOfQueue --;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed--;
+ break;
+
+ case STATUS.INVALID:
+ stats.numOfInvalid--;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt--;
+ break;
+ }
+
+ switch ( curStatus ) {
+ case STATUS.QUEUED:
+ stats.numOfQueue++;
+ break;
+
+ case STATUS.PROGRESS:
+ stats.numOfProgress++;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed++;
+ break;
+
+ case STATUS.COMPLETE:
+ stats.numOfSuccess++;
+ break;
+
+ case STATUS.CANCELLED:
+ stats.numOfCancel++;
+ break;
+
+
+ case STATUS.INVALID:
+ stats.numOfInvalid++;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt++;
+ break;
+ }
+ }
+
+ });
+
+ Mediator.installTo( Queue.prototype );
+
+ return Queue;
+ });
- return WUFile;
+ /**
+ * @fileOverview 队列
+ */
+ define('widgets/queue',[
+ 'base',
+ 'uploader',
+ 'queue',
+ 'file',
+ 'lib/file',
+ 'runtime/client',
+ 'widgets/widget'
+ ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
+
+ var $ = Base.$,
+ rExt = /\.\w+$/,
+ Status = WUFile.Status;
+
+ return Uploader.register({
+ name: 'queue',
+
+ init: function( opts ) {
+ var me = this,
+ deferred, len, i, item, arr, accept, runtime;
+
+ if ( $.isPlainObject( opts.accept ) ) {
+ opts.accept = [ opts.accept ];
+ }
+
+ // accept中的中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].extensions;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = '\\.' + arr.join(',')
+ .replace( /,/g, '$|\\.' )
+ .replace( /\*/g, '.*' ) + '$';
+ }
+
+ me.accept = new RegExp( accept, 'i' );
+ }
+
+ me.queue = new Queue();
+ me.stats = me.queue.stats;
+
+ // 如果当前不是html5运行时,那就算了。
+ // 不执行后续操作
+ if ( this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ // 创建一个 html5 运行时的 placeholder
+ // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
+ deferred = Base.Deferred();
+ this.placeholder = runtime = new RuntimeClient('Placeholder');
+ runtime.connectRuntime({
+ runtimeOrder: 'html5'
+ }, function() {
+ me._ruid = runtime.getRuid();
+ deferred.resolve();
+ });
+ return deferred.promise();
+ },
+
+
+ // 为了支持外部直接添加一个原生File对象。
+ _wrapFile: function( file ) {
+ if ( !(file instanceof WUFile) ) {
+
+ if ( !(file instanceof File) ) {
+ if ( !this._ruid ) {
+ throw new Error('Can\'t add external files.');
+ }
+ file = new File( this._ruid, file );
+ }
+
+ file = new WUFile( file );
+ }
+
+ return file;
+ },
+
+ // 判断文件是否可以被加入队列
+ acceptFile: function( file ) {
+ var invalid = !file || !file.size || this.accept &&
+
+ // 如果名字中有后缀,才做后缀白名单处理。
+ rExt.exec( file.name ) && !this.accept.test( file.name );
+
+ return !invalid;
+ },
+
+
+ /**
+ * @event beforeFileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
+ * @for Uploader
+ */
+
+ /**
+ * @event fileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列以后触发。
+ * @for Uploader
+ */
+
+ _addFile: function( file ) {
+ var me = this;
+
+ file = me._wrapFile( file );
+
+ // 不过类型判断允许不允许,先派送 `beforeFileQueued`
+ if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
+ return;
+ }
+
+ // 类型不匹配,则派送错误事件,并返回。
+ if ( !me.acceptFile( file ) ) {
+ me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
+ return;
+ }
+
+ me.queue.append( file );
+ me.owner.trigger( 'fileQueued', file );
+ return file;
+ },
+
+ getFile: function( fileId ) {
+ return this.queue.getFile( fileId );
+ },
+
+ /**
+ * @event filesQueued
+ * @param {File} files 数组,内容为原始File(lib/File)对象。
+ * @description 当一批文件添加进队列以后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @property {Boolean} [auto=false]
+ * @namespace options
+ * @for Uploader
+ * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
+ *
+ */
+
+ /**
+ * @method addFiles
+ * @grammar addFiles( file ) => undefined
+ * @grammar addFiles( [file1, file2 ...] ) => undefined
+ * @param {Array of File or File} [files] Files 对象 数组
+ * @description 添加文件到队列
+ * @for Uploader
+ */
+ addFile: function( files ) {
+ var me = this;
+
+ if ( !files.length ) {
+ files = [ files ];
+ }
+
+ files = $.map( files, function( file ) {
+ return me._addFile( file );
+ });
+
+ if ( files.length ) {
+
+ me.owner.trigger( 'filesQueued', files );
+
+ if ( me.options.auto ) {
+ setTimeout(function() {
+ me.request('start-upload');
+ }, 20 );
+ }
+ }
+ },
+
+ getStats: function() {
+ return this.stats;
+ },
+
+ /**
+ * @event fileDequeued
+ * @param {File} file File对象
+ * @description 当文件被移除队列后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method removeFile
+ * @grammar removeFile( file ) => undefined
+ * @grammar removeFile( id ) => undefined
+ * @grammar removeFile( file, true ) => undefined
+ * @grammar removeFile( id, true ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.removeFile( file );
+ * })
+ */
+ removeFile: function( file, remove ) {
+ var me = this;
+
+ file = file.id ? file : me.queue.getFile( file );
+
+ this.request( 'cancel-file', file );
+
+ if ( remove ) {
+ this.queue.removeFile( file );
+ }
+ },
+
+ /**
+ * @method getFiles
+ * @grammar getFiles() => Array
+ * @grammar getFiles( status1, status2, status... ) => Array
+ * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
+ * @for Uploader
+ * @example
+ * console.log( uploader.getFiles() ); // => all files
+ * console.log( uploader.getFiles('error') ) // => all error files.
+ */
+ getFiles: function() {
+ return this.queue.getFiles.apply( this.queue, arguments );
+ },
+
+ fetchFile: function() {
+ return this.queue.fetch.apply( this.queue, arguments );
+ },
+
+ /**
+ * @method retry
+ * @grammar retry() => undefined
+ * @grammar retry( file ) => undefined
+ * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
+ * @for Uploader
+ * @example
+ * function retry() {
+ * uploader.retry();
+ * }
+ */
+ retry: function( file, noForceStart ) {
+ var me = this,
+ files, i, len;
+
+ if ( file ) {
+ file = file.id ? file : me.queue.getFile( file );
+ file.setStatus( Status.QUEUED );
+ noForceStart || me.request('start-upload');
+ return;
+ }
+
+ files = me.queue.getFiles( Status.ERROR );
+ i = 0;
+ len = files.length;
+
+ for ( ; i < len; i++ ) {
+ file = files[ i ];
+ file.setStatus( Status.QUEUED );
+ }
+
+ me.request('start-upload');
+ },
+
+ /**
+ * @method sort
+ * @grammar sort( fn ) => undefined
+ * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
+ * @for Uploader
+ */
+ sortFiles: function() {
+ return this.queue.sort.apply( this.queue, arguments );
+ },
+
+ /**
+ * @event reset
+ * @description 当 uploader 被重置的时候触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method reset
+ * @grammar reset() => undefined
+ * @description 重置uploader。目前只重置了队列。
+ * @for Uploader
+ * @example
+ * uploader.reset();
+ */
+ reset: function() {
+ this.owner.trigger('reset');
+ this.queue = new Queue();
+ this.stats = this.queue.stats;
+ },
+
+ destroy: function() {
+ this.reset();
+ this.placeholder && this.placeholder.destroy();
+ }
+ });
+
});
-
- /**
- * @fileOverview 文件队列
- */
- define('queue',[
- 'base',
- 'mediator',
- 'file'
- ], function( Base, Mediator, WUFile ) {
-
- var $ = Base.$,
- STATUS = WUFile.Status;
-
- /**
- * 文件队列, 用来存储各个状态中的文件。
- * @class Queue
- * @extends Mediator
- */
- function Queue() {
-
- /**
- * 统计文件数。
- * * `numOfQueue` 队列中的文件数。
- * * `numOfSuccess` 上传成功的文件数
- * * `numOfCancel` 被取消的文件数
- * * `numOfProgress` 正在上传中的文件数
- * * `numOfUploadFailed` 上传错误的文件数。
- * * `numOfInvalid` 无效的文件数。
- * * `numOfDeleted` 被移除的文件数。
- * * `numOfInterrupt` 被中断的文件数。
- * @property {Object} stats
- */
- this.stats = {
- numOfQueue: 0,
- numOfSuccess: 0,
- numOfCancel: 0,
- numOfProgress: 0,
- numOfUploadFailed: 0,
- numOfInvalid: 0,
- numOfDeleted: 0,
- numOfInterrupt: 0
- };
-
- // 上传队列,仅包括等待上传的文件
- this._queue = [];
-
- // 存储所有文件
- this._map = {};
- }
-
- $.extend( Queue.prototype, {
-
- /**
- * 将新文件加入对队列尾部
- *
- * @method append
- * @param {File} file 文件对象
- */
- append: function( file ) {
- this._queue.push( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 将新文件加入对队列头部
- *
- * @method prepend
- * @param {File} file 文件对象
- */
- prepend: function( file ) {
- this._queue.unshift( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 获取文件对象
- *
- * @method getFile
- * @param {String} fileId 文件ID
- * @return {File}
- */
- getFile: function( fileId ) {
- if ( typeof fileId !== 'string' ) {
- return fileId;
- }
- return this._map[ fileId ];
- },
-
- /**
- * 从队列中取出一个指定状态的文件。
- * @grammar fetch( status ) => File
- * @method fetch
- * @param {String} status [文件状态值](#WebUploader:File:File.Status)
- * @return {File} [File](#WebUploader:File)
- */
- fetch: function( status ) {
- var len = this._queue.length,
- i, file;
-
- status = status || STATUS.QUEUED;
-
- for ( i = 0; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( status === file.getStatus() ) {
- return file;
- }
- }
-
- return null;
- },
-
- /**
- * 对队列进行排序,能够控制文件上传顺序。
- * @grammar sort( fn ) => undefined
- * @method sort
- * @param {Function} fn 排序方法
- */
- sort: function( fn ) {
- if ( typeof fn === 'function' ) {
- this._queue.sort( fn );
- }
- },
-
- /**
- * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
- * @grammar getFiles( [status1[, status2 ...]] ) => Array
- * @method getFiles
- * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
- */
- getFiles: function() {
- var sts = [].slice.call( arguments, 0 ),
- ret = [],
- i = 0,
- len = this._queue.length,
- file;
-
- for ( ; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
- continue;
- }
-
- ret.push( file );
- }
-
- return ret;
- },
-
- /**
- * 在队列中删除文件。
- * @grammar removeFile( file ) => Array
- * @method removeFile
- * @param {File} 文件对象。
- */
- removeFile: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( existing ) {
- delete this._map[ file.id ];
- this._delFile(file);
- file.destroy();
- this.stats.numOfDeleted++;
-
- }
- },
-
- _fileAdded: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( !existing ) {
- this._map[ file.id ] = file;
-
- file.on( 'statuschange', function( cur, pre ) {
- me._onFileStatusChange( cur, pre );
- });
- }
- },
-
- _delFile : function(file){
- for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
- if(this._queue[i] == file){
- this._queue.splice(i,1);
- break;
- }
- }
- },
-
- _onFileStatusChange: function( curStatus, preStatus ) {
- var stats = this.stats;
-
- switch ( preStatus ) {
- case STATUS.PROGRESS:
- stats.numOfProgress--;
- break;
-
- case STATUS.QUEUED:
- stats.numOfQueue --;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed--;
- break;
-
- case STATUS.INVALID:
- stats.numOfInvalid--;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt--;
- break;
- }
-
- switch ( curStatus ) {
- case STATUS.QUEUED:
- stats.numOfQueue++;
- break;
-
- case STATUS.PROGRESS:
- stats.numOfProgress++;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed++;
- break;
-
- case STATUS.COMPLETE:
- stats.numOfSuccess++;
- break;
-
- case STATUS.CANCELLED:
- stats.numOfCancel++;
- break;
-
-
- case STATUS.INVALID:
- stats.numOfInvalid++;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt++;
- break;
- }
- }
-
- });
-
- Mediator.installTo( Queue.prototype );
-
- return Queue;
- });
-
- /**
- * @fileOverview 队列
- */
- define('widgets/queue',[
- 'base',
- 'uploader',
- 'queue',
- 'file',
- 'lib/file',
- 'runtime/client',
- 'widgets/widget'
- ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
-
- var $ = Base.$,
- rExt = /\.\w+$/,
- Status = WUFile.Status;
-
- return Uploader.register({
- name: 'queue',
-
- init: function( opts ) {
- var me = this,
- deferred, len, i, item, arr, accept, runtime;
-
- if ( $.isPlainObject( opts.accept ) ) {
- opts.accept = [ opts.accept ];
- }
-
- // accept中的中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
-
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].extensions;
- item && arr.push( item );
- }
-
- if ( arr.length ) {
- accept = '\\.' + arr.join(',')
- .replace( /,/g, '$|\\.' )
- .replace( /\*/g, '.*' ) + '$';
- }
-
- me.accept = new RegExp( accept, 'i' );
- }
-
- me.queue = new Queue();
- me.stats = me.queue.stats;
-
- // 如果当前不是html5运行时,那就算了。
- // 不执行后续操作
- if ( this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- // 创建一个 html5 运行时的 placeholder
- // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
- deferred = Base.Deferred();
- this.placeholder = runtime = new RuntimeClient('Placeholder');
- runtime.connectRuntime({
- runtimeOrder: 'html5'
- }, function() {
- me._ruid = runtime.getRuid();
- deferred.resolve();
- });
- return deferred.promise();
- },
-
-
- // 为了支持外部直接添加一个原生File对象。
- _wrapFile: function( file ) {
- if ( !(file instanceof WUFile) ) {
-
- if ( !(file instanceof File) ) {
- if ( !this._ruid ) {
- throw new Error('Can\'t add external files.');
- }
- file = new File( this._ruid, file );
- }
-
- file = new WUFile( file );
- }
-
- return file;
- },
-
- // 判断文件是否可以被加入队列
- acceptFile: function( file ) {
- var invalid = !file || !file.size || this.accept &&
-
- // 如果名字中有后缀,才做后缀白名单处理。
- rExt.exec( file.name ) && !this.accept.test( file.name );
-
- return !invalid;
- },
-
-
- /**
- * @event beforeFileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
- * @for Uploader
- */
-
- /**
- * @event fileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列以后触发。
- * @for Uploader
- */
-
- _addFile: function( file ) {
- var me = this;
-
- file = me._wrapFile( file );
-
- // 不过类型判断允许不允许,先派送 `beforeFileQueued`
- if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
- return;
- }
-
- // 类型不匹配,则派送错误事件,并返回。
- if ( !me.acceptFile( file ) ) {
- me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
- return;
- }
-
- me.queue.append( file );
- me.owner.trigger( 'fileQueued', file );
- return file;
- },
-
- getFile: function( fileId ) {
- return this.queue.getFile( fileId );
- },
-
- /**
- * @event filesQueued
- * @param {File} files 数组,内容为原始File(lib/File)对象。
- * @description 当一批文件添加进队列以后触发。
- * @for Uploader
- */
-
- /**
- * @property {Boolean} [auto=false]
- * @namespace options
- * @for Uploader
- * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
- *
- */
-
- /**
- * @method addFiles
- * @grammar addFiles( file ) => undefined
- * @grammar addFiles( [file1, file2 ...] ) => undefined
- * @param {Array of File or File} [files] Files 对象 数组
- * @description 添加文件到队列
- * @for Uploader
- */
- addFile: function( files ) {
- var me = this;
-
- if ( !files.length ) {
- files = [ files ];
- }
-
- files = $.map( files, function( file ) {
- return me._addFile( file );
- });
-
- if ( files.length ) {
-
- me.owner.trigger( 'filesQueued', files );
-
- if ( me.options.auto ) {
- setTimeout(function() {
- me.request('start-upload');
- }, 20 );
- }
- }
- },
-
- getStats: function() {
- return this.stats;
- },
-
- /**
- * @event fileDequeued
- * @param {File} file File对象
- * @description 当文件被移除队列后触发。
- * @for Uploader
- */
-
- /**
- * @method removeFile
- * @grammar removeFile( file ) => undefined
- * @grammar removeFile( id ) => undefined
- * @grammar removeFile( file, true ) => undefined
- * @grammar removeFile( id, true ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.removeFile( file );
- * })
- */
- removeFile: function( file, remove ) {
- var me = this;
-
- file = file.id ? file : me.queue.getFile( file );
-
- this.request( 'cancel-file', file );
-
- if ( remove ) {
- this.queue.removeFile( file );
- }
- },
-
- /**
- * @method getFiles
- * @grammar getFiles() => Array
- * @grammar getFiles( status1, status2, status... ) => Array
- * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
- * @for Uploader
- * @example
- * console.log( uploader.getFiles() ); // => all files
- * console.log( uploader.getFiles('error') ) // => all error files.
- */
- getFiles: function() {
- return this.queue.getFiles.apply( this.queue, arguments );
- },
-
- fetchFile: function() {
- return this.queue.fetch.apply( this.queue, arguments );
- },
-
- /**
- * @method retry
- * @grammar retry() => undefined
- * @grammar retry( file ) => undefined
- * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
- * @for Uploader
- * @example
- * function retry() {
- * uploader.retry();
- * }
- */
- retry: function( file, noForceStart ) {
- var me = this,
- files, i, len;
-
- if ( file ) {
- file = file.id ? file : me.queue.getFile( file );
- file.setStatus( Status.QUEUED );
- noForceStart || me.request('start-upload');
- return;
- }
-
- files = me.queue.getFiles( Status.ERROR );
- i = 0;
- len = files.length;
-
- for ( ; i < len; i++ ) {
- file = files[ i ];
- file.setStatus( Status.QUEUED );
- }
-
- me.request('start-upload');
- },
-
- /**
- * @method sort
- * @grammar sort( fn ) => undefined
- * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
- * @for Uploader
- */
- sortFiles: function() {
- return this.queue.sort.apply( this.queue, arguments );
- },
-
- /**
- * @event reset
- * @description 当 uploader 被重置的时候触发。
- * @for Uploader
- */
-
- /**
- * @method reset
- * @grammar reset() => undefined
- * @description 重置uploader。目前只重置了队列。
- * @for Uploader
- * @example
- * uploader.reset();
- */
- reset: function() {
- this.owner.trigger('reset');
- this.queue = new Queue();
- this.stats = this.queue.stats;
- },
-
- destroy: function() {
- this.reset();
- this.placeholder && this.placeholder.destroy();
- }
- });
-
- });
- /**
- * @fileOverview 添加获取Runtime相关信息的方法。
- */
- define('widgets/runtime',[
- 'uploader',
- 'runtime/runtime',
- 'widgets/widget'
- ], function( Uploader, Runtime ) {
-
- Uploader.support = function() {
- return Runtime.hasRuntime.apply( Runtime, arguments );
- };
-
- /**
- * @property {Object} [runtimeOrder=html5,flash]
- * @namespace options
- * @for Uploader
- * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
- *
- * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
- */
-
- return Uploader.register({
- name: 'runtime',
-
- init: function() {
- if ( !this.predictRuntimeType() ) {
- throw Error('Runtime Error');
- }
- },
-
- /**
- * 预测Uploader将采用哪个`Runtime`
- * @grammar predictRuntimeType() => String
- * @method predictRuntimeType
- * @for Uploader
- */
- predictRuntimeType: function() {
- var orders = this.options.runtimeOrder || Runtime.orders,
- type = this.type,
- i, len;
-
- if ( !type ) {
- orders = orders.split( /\s*,\s*/g );
-
- for ( i = 0, len = orders.length; i < len; i++ ) {
- if ( Runtime.hasRuntime( orders[ i ] ) ) {
- this.type = type = orders[ i ];
- break;
- }
- }
- }
-
- return type;
- }
- });
- });
- /**
- * @fileOverview Transport
- */
- define('lib/transport',[
- 'base',
- 'runtime/client',
- 'mediator'
- ], function( Base, RuntimeClient, Mediator ) {
-
- var $ = Base.$;
-
- function Transport( opts ) {
- var me = this;
-
- opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
- RuntimeClient.call( this, 'Transport' );
-
- this._blob = null;
- this._formData = opts.formData || {};
- this._headers = opts.headers || {};
-
- this.on( 'progress', this._timeout );
- this.on( 'load error', function() {
- me.trigger( 'progress', 1 );
- clearTimeout( me._timer );
- });
- }
-
- Transport.options = {
- server: '',
- method: 'POST',
-
- // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
- withCredentials: false,
- fileVal: 'file',
- timeout: 2 * 60 * 1000, // 2分钟
- formData: {},
- headers: {},
- sendAsBinary: false
- };
-
- $.extend( Transport.prototype, {
-
- // 添加Blob, 只能添加一次,最后一次有效。
- appendBlob: function( key, blob, filename ) {
- var me = this,
- opts = me.options;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- });
-
- me._blob = blob;
- opts.fileVal = key || opts.fileVal;
- opts.filename = filename || opts.filename;
- },
-
- // 添加其他字段
- append: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._formData, key );
- } else {
- this._formData[ key ] = value;
- }
- },
-
- setRequestHeader: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._headers, key );
- } else {
- this._headers[ key ] = value;
- }
- },
-
- send: function( method ) {
- this.exec( 'send', method );
- this._timeout();
- },
-
- abort: function() {
- clearTimeout( this._timer );
- return this.exec('abort');
- },
-
- destroy: function() {
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- },
-
- getResponseHeaders: function() {
- return this.exec('getResponseHeaders');
- },
-
- getResponse: function() {
- return this.exec('getResponse');
- },
-
- getResponseAsJson: function() {
- return this.exec('getResponseAsJson');
- },
-
- getStatus: function() {
- return this.exec('getStatus');
- },
-
- _timeout: function() {
- var me = this,
- duration = me.options.timeout;
-
- if ( !duration ) {
- return;
- }
-
- clearTimeout( me._timer );
- me._timer = setTimeout(function() {
- me.abort();
- me.trigger( 'error', 'timeout' );
- }, duration );
- }
-
- });
-
- // 让Transport具备事件功能。
- Mediator.installTo( Transport.prototype );
-
- return Transport;
+ /**
+ * @fileOverview 添加获取Runtime相关信息的方法。
+ */
+ define('widgets/runtime',[
+ 'uploader',
+ 'runtime/runtime',
+ 'widgets/widget'
+ ], function( Uploader, Runtime ) {
+
+ Uploader.support = function() {
+ return Runtime.hasRuntime.apply( Runtime, arguments );
+ };
+
+ /**
+ * @property {Object} [runtimeOrder=html5,flash]
+ * @namespace options
+ * @for Uploader
+ * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
+ *
+ * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
+ */
+
+ return Uploader.register({
+ name: 'runtime',
+
+ init: function() {
+ if ( !this.predictRuntimeType() ) {
+ throw Error('Runtime Error');
+ }
+ },
+
+ /**
+ * 预测Uploader将采用哪个`Runtime`
+ * @grammar predictRuntimeType() => String
+ * @method predictRuntimeType
+ * @for Uploader
+ */
+ predictRuntimeType: function() {
+ var orders = this.options.runtimeOrder || Runtime.orders,
+ type = this.type,
+ i, len;
+
+ if ( !type ) {
+ orders = orders.split( /\s*,\s*/g );
+
+ for ( i = 0, len = orders.length; i < len; i++ ) {
+ if ( Runtime.hasRuntime( orders[ i ] ) ) {
+ this.type = type = orders[ i ];
+ break;
+ }
+ }
+ }
+
+ return type;
+ }
+ });
});
+ /**
+ * @fileOverview Transport
+ */
+ define('lib/transport',[
+ 'base',
+ 'runtime/client',
+ 'mediator'
+ ], function( Base, RuntimeClient, Mediator ) {
+
+ var $ = Base.$;
+
+ function Transport( opts ) {
+ var me = this;
+
+ opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
+ RuntimeClient.call( this, 'Transport' );
+
+ this._blob = null;
+ this._formData = opts.formData || {};
+ this._headers = opts.headers || {};
+
+ this.on( 'progress', this._timeout );
+ this.on( 'load error', function() {
+ me.trigger( 'progress', 1 );
+ clearTimeout( me._timer );
+ });
+ }
+
+ Transport.options = {
+ server: '',
+ method: 'POST',
+
+ // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
+ withCredentials: false,
+ fileVal: 'file',
+ timeout: 2 * 60 * 1000, // 2分钟
+ formData: {},
+ headers: {},
+ sendAsBinary: false
+ };
+
+ $.extend( Transport.prototype, {
+
+ // 添加Blob, 只能添加一次,最后一次有效。
+ appendBlob: function( key, blob, filename ) {
+ var me = this,
+ opts = me.options;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ });
+
+ me._blob = blob;
+ opts.fileVal = key || opts.fileVal;
+ opts.filename = filename || opts.filename;
+ },
+
+ // 添加其他字段
+ append: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._formData, key );
+ } else {
+ this._formData[ key ] = value;
+ }
+ },
+
+ setRequestHeader: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._headers, key );
+ } else {
+ this._headers[ key ] = value;
+ }
+ },
+
+ send: function( method ) {
+ this.exec( 'send', method );
+ this._timeout();
+ },
+
+ abort: function() {
+ clearTimeout( this._timer );
+ return this.exec('abort');
+ },
+
+ destroy: function() {
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ },
+
+ getResponseHeaders: function() {
+ return this.exec('getResponseHeaders');
+ },
+
+ getResponse: function() {
+ return this.exec('getResponse');
+ },
+
+ getResponseAsJson: function() {
+ return this.exec('getResponseAsJson');
+ },
+
+ getStatus: function() {
+ return this.exec('getStatus');
+ },
+
+ _timeout: function() {
+ var me = this,
+ duration = me.options.timeout;
+
+ if ( !duration ) {
+ return;
+ }
+
+ clearTimeout( me._timer );
+ me._timer = setTimeout(function() {
+ me.abort();
+ me.trigger( 'error', 'timeout' );
+ }, duration );
+ }
+
+ });
+
+ // 让Transport具备事件功能。
+ Mediator.installTo( Transport.prototype );
+
+ return Transport;
+ });
- /**
- * @fileOverview 负责文件上传相关。
- */
- define('widgets/upload',[
- 'base',
- 'uploader',
- 'file',
- 'lib/transport',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile, Transport ) {
-
- var $ = Base.$,
- isPromise = Base.isPromise,
- Status = WUFile.Status;
-
- // 添加默认配置项
- $.extend( Uploader.options, {
-
-
- /**
- * @property {Boolean} [prepareNextFile=false]
- * @namespace options
- * @for Uploader
- * @description 是否允许在文件传输时提前把下一个文件准备好。
- * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
- * 如果能提前在当前文件传输期处理,可以节省总体耗时。
- */
- prepareNextFile: false,
-
- /**
- * @property {Boolean} [chunked=false]
- * @namespace options
- * @for Uploader
- * @description 是否要分片处理大文件上传。
- */
- chunked: false,
-
- /**
- * @property {Boolean} [chunkSize=5242880]
- * @namespace options
- * @for Uploader
- * @description 如果要分片,分多大一片? 默认大小为5M.
- */
- chunkSize: 5 * 1024 * 1024,
-
- /**
- * @property {Boolean} [chunkRetry=2]
- * @namespace options
- * @for Uploader
- * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
- */
- chunkRetry: 2,
-
- /**
- * @property {Number} [chunkRetryDelay=1000]
- * @namespace options
- * @for Uploader
- * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
- */
- chunkRetryDelay: 1000,
-
- /**
- * @property {Boolean} [threads=3]
- * @namespace options
- * @for Uploader
- * @description 上传并发数。允许同时最大上传进程数。
- */
- threads: 3,
-
-
- /**
- * @property {Object} [formData={}]
- * @namespace options
- * @for Uploader
- * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
- */
- formData: {}
-
- /**
- * @property {Object} [fileVal='file']
- * @namespace options
- * @for Uploader
- * @description 设置文件上传域的name。
- */
-
- /**
- * @property {Object} [method=POST]
- * @namespace options
- * @for Uploader
- * @description 文件上传方式,`POST` 或者 `GET`。
- */
-
- /**
- * @property {Object} [sendAsBinary=false]
- * @namespace options
- * @for Uploader
- * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
- * 其他参数在$_GET数组中。
- */
- });
-
- // 负责将文件切片。
- function CuteFile( file, chunkSize ) {
- var pending = [],
- blob = file.source,
- total = blob.size,
- chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
- start = 0,
- index = 0,
- len, api;
-
- api = {
- file: file,
-
- has: function() {
- return !!pending.length;
- },
-
- shift: function() {
- return pending.shift();
- },
-
- unshift: function( block ) {
- pending.unshift( block );
- }
- };
-
- while ( index < chunks ) {
- len = Math.min( chunkSize, total - start );
-
- pending.push({
- file: file,
- start: start,
- end: chunkSize ? (start + len) : total,
- total: total,
- chunks: chunks,
- chunk: index++,
- cuted: api
- });
- start += len;
- }
-
- file.blocks = pending.concat();
- file.remaning = pending.length;
-
- return api;
- }
-
- Uploader.register({
- name: 'upload',
-
- init: function() {
- var owner = this.owner,
- me = this;
-
- this.runing = false;
- this.progress = false;
-
- owner
- .on( 'startUpload', function() {
- me.progress = true;
- })
- .on( 'uploadFinished', function() {
- me.progress = false;
- });
-
- // 记录当前正在传的数据,跟threads相关
- this.pool = [];
-
- // 缓存分好片的文件。
- this.stack = [];
-
- // 缓存即将上传的文件。
- this.pending = [];
-
- // 跟踪还有多少分片在上传中但是没有完成上传。
- this.remaning = 0;
- this.__tick = Base.bindFn( this._tick, this );
-
- // 销毁上传相关的属性。
- owner.on( 'uploadComplete', function( file ) {
-
- // 把其他块取消了。
- file.blocks && $.each( file.blocks, function( _, v ) {
- v.transport && (v.transport.abort(), v.transport.destroy());
- delete v.transport;
- });
-
- delete file.blocks;
- delete file.remaning;
- });
- },
-
- reset: function() {
- this.request( 'stop-upload', true );
- this.runing = false;
- this.pool = [];
- this.stack = [];
- this.pending = [];
- this.remaning = 0;
- this._trigged = false;
- this._promise = null;
- },
-
- /**
- * @event startUpload
- * @description 当开始上传流程时触发。
- * @for Uploader
- */
-
- /**
- * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
- *
- * 可以指定开始某一个文件。
- * @grammar upload() => undefined
- * @grammar upload( file | fileId) => undefined
- * @method upload
- * @for Uploader
- */
- startUpload: function(file) {
- var me = this;
-
- // 移出invalid的文件
- $.each( me.request( 'get-files', Status.INVALID ), function() {
- me.request( 'remove-file', this );
- });
-
- // 如果指定了开始某个文件,则只开始指定的文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if (file.getStatus() === Status.INTERRUPT) {
- file.setStatus( Status.QUEUED );
-
- $.each( me.pool, function( _, v ) {
-
- // 之前暂停过。
- if (v.file !== file) {
- return;
- }
-
- v.transport && v.transport.send();
- file.setStatus( Status.PROGRESS );
- });
-
-
- } else if (file.getStatus() !== Status.PROGRESS) {
- file.setStatus( Status.QUEUED );
- }
- } else {
- $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
- this.setStatus( Status.QUEUED );
- });
- }
-
- if ( me.runing ) {
- me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
- return Base.nextTick( me.__tick );
- }
-
- me.runing = true;
- var files = [];
-
- // 如果有暂停的,则续传
- file || $.each( me.pool, function( _, v ) {
- var file = v.file;
-
- if ( file.getStatus() === Status.INTERRUPT ) {
- me._trigged = false;
- files.push(file);
-
- if (v.waiting) {
- return;
- }
-
- // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
- v.transport ? v.transport.send() : me._doSend(v);
- }
- });
-
- $.each(files, function() {
- this.setStatus( Status.PROGRESS );
- });
-
- file || $.each( me.request( 'get-files',
- Status.INTERRUPT ), function() {
- this.setStatus( Status.PROGRESS );
- });
-
- me._trigged = false;
- Base.nextTick( me.__tick );
- me.owner.trigger('startUpload');
- },
-
- /**
- * @event stopUpload
- * @description 当开始上传流程暂停时触发。
- * @for Uploader
- */
-
- /**
- * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
- *
- * 如果第一个参数是文件,则只暂停指定文件。
- * @grammar stop() => undefined
- * @grammar stop( true ) => undefined
- * @grammar stop( file ) => undefined
- * @method stop
- * @for Uploader
- */
- stopUpload: function( file, interrupt ) {
- var me = this;
-
- if (file === true) {
- interrupt = file;
- file = null;
- }
-
- if ( me.runing === false ) {
- return;
- }
-
- // 如果只是暂停某个文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if ( file.getStatus() !== Status.PROGRESS &&
- file.getStatus() !== Status.QUEUED ) {
- return;
- }
-
- file.setStatus( Status.INTERRUPT );
-
-
- $.each( me.pool, function( _, v ) {
-
- // 只 abort 指定的文件,每一个分片。
- if (v.file === file) {
- v.transport && v.transport.abort();
-
- if (interrupt) {
- me._putback(v);
- me._popBlock(v);
- }
- }
- });
-
- me.owner.trigger('stopUpload', file);// 暂停,trigger event
-
- return Base.nextTick( me.__tick );
- }
-
- me.runing = false;
-
- // 正在准备中的文件。
- if (this._promise && this._promise.file) {
- this._promise.file.setStatus( Status.INTERRUPT );
- }
-
- interrupt && $.each( me.pool, function( _, v ) {
- v.transport && v.transport.abort();
- v.file.setStatus( Status.INTERRUPT );
- });
-
- me.owner.trigger('stopUpload');
- },
-
- /**
- * @method cancelFile
- * @grammar cancelFile( file ) => undefined
- * @grammar cancelFile( id ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 标记文件状态为已取消, 同时将中断文件传输。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.cancelFile( file );
- * })
- */
- cancelFile: function( file ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- file.setStatus( Status.CANCELLED );
- this.owner.trigger( 'fileDequeued', file );
- },
-
- /**
- * 判断`Uploader`是否正在上传中。
- * @grammar isInProgress() => Boolean
- * @method isInProgress
- * @for Uploader
- */
- isInProgress: function() {
- return !!this.progress;
- },
-
- _getStats: function() {
- return this.request('get-stats');
- },
-
- /**
- * 跳过一个文件上传,直接标记指定文件为已上传状态。
- * @grammar skipFile( file ) => undefined
- * @method skipFile
- * @for Uploader
- */
- skipFile: function( file, status ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- file.setStatus( status || Status.COMPLETE );
- file.skipped = true;
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- this.owner.trigger( 'uploadSkip', file );
- },
-
- /**
- * @event uploadFinished
- * @description 当所有文件上传结束时触发。
- * @for Uploader
- */
- _tick: function() {
- var me = this,
- opts = me.options,
- fn, val;
-
- // 上一个promise还没有结束,则等待完成后再执行。
- if ( me._promise ) {
- return me._promise.always( me.__tick );
- }
-
- // 还有位置,且还有文件要处理的话。
- if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
- me._trigged = false;
-
- fn = function( val ) {
- me._promise = null;
-
- // 有可能是reject过来的,所以要检测val的类型。
- val && val.file && me._startSend( val );
- Base.nextTick( me.__tick );
- };
-
- me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
-
- // 没有要上传的了,且没有正在传输的了。
- } else if ( !me.remaning && !me._getStats().numOfQueue &&
- !me._getStats().numOfInterrupt ) {
- me.runing = false;
-
- me._trigged || Base.nextTick(function() {
- me.owner.trigger('uploadFinished');
- });
- me._trigged = true;
- }
- },
-
- _putback: function(block) {
- var idx;
-
- block.cuted.unshift(block);
- idx = this.stack.indexOf(block.cuted);
-
- if (!~idx) {
- // 如果不在里面,说明移除过,需要把计数还原回去。
- this.remaning++;
- block.file.remaning++;
- this.stack.unshift(block.cuted);
- }
- },
-
- _getStack: function() {
- var i = 0,
- act;
-
- while ( (act = this.stack[ i++ ]) ) {
- if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
- return act;
- } else if (!act.has() ||
- act.file.getStatus() !== Status.PROGRESS &&
- act.file.getStatus() !== Status.INTERRUPT ) {
-
- // 把已经处理完了的,或者,状态为非 progress(上传中)、
- // interupt(暂停中) 的移除。
- this.stack.splice( --i, 1 );
- }
- }
-
- return null;
- },
-
- _nextBlock: function() {
- var me = this,
- opts = me.options,
- act, next, done, preparing;
-
- // 如果当前文件还有没有需要传输的,则直接返回剩下的。
- if ( (act = this._getStack()) ) {
-
- // 是否提前准备下一个文件
- if ( opts.prepareNextFile && !me.pending.length ) {
- me._prepareNextFile();
- }
-
- return act.shift();
-
- // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
- } else if ( me.runing ) {
-
- // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
- if ( !me.pending.length && me._getStats().numOfQueue ) {
- me._prepareNextFile();
- }
-
- next = me.pending.shift();
- done = function( file ) {
- if ( !file ) {
- return null;
- }
-
- act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
- me.stack.push(act);
- return act.shift();
- };
-
- // 文件可能还在prepare中,也有可能已经完全准备好了。
- if ( isPromise( next) ) {
- preparing = next.file;
- next = next[ next.pipe ? 'pipe' : 'then' ]( done );
- next.file = preparing;
- return next;
- }
-
- return done( next );
- }
- },
-
-
- /**
- * @event uploadStart
- * @param {File} file File对象
- * @description 某个文件开始上传前触发,一个文件只会触发一次。
- * @for Uploader
- */
- _prepareNextFile: function() {
- var me = this,
- file = me.request('fetch-file'),
- pending = me.pending,
- promise;
-
- if ( file ) {
- promise = me.request( 'before-send-file', file, function() {
-
- // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
- if ( file.getStatus() === Status.PROGRESS ||
- file.getStatus() === Status.INTERRUPT ) {
- return file;
- }
-
- return me._finishFile( file );
- });
-
- me.owner.trigger( 'uploadStart', file );
- file.setStatus( Status.PROGRESS );
-
- promise.file = file;
-
- // 如果还在pending中,则替换成文件本身。
- promise.done(function() {
- var idx = $.inArray( promise, pending );
-
- ~idx && pending.splice( idx, 1, file );
- });
-
- // befeore-send-file的钩子就有错误发生。
- promise.fail(function( reason ) {
- file.setStatus( Status.ERROR, reason );
- me.owner.trigger( 'uploadError', file, reason );
- me.owner.trigger( 'uploadComplete', file );
- });
-
- pending.push( promise );
- }
- },
-
- // 让出位置了,可以让其他分片开始上传
- _popBlock: function( block ) {
- var idx = $.inArray( block, this.pool );
-
- this.pool.splice( idx, 1 );
- block.file.remaning--;
- this.remaning--;
- },
-
- // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
- _startSend: function( block ) {
- var me = this,
- file = block.file,
- promise;
-
- // 有可能在 before-send-file 的 promise 期间改变了文件状态。
- // 如:暂停,取消
- // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
- if ( file.getStatus() !== Status.PROGRESS ) {
-
- // 如果是中断,则还需要放回去。
- if (file.getStatus() === Status.INTERRUPT) {
- me._putback(block);
- }
-
- return;
- }
-
- me.pool.push( block );
- me.remaning++;
-
- // 如果没有分片,则直接使用原始的。
- // 不会丢失content-type信息。
- block.blob = block.chunks === 1 ? file.source :
- file.source.slice( block.start, block.end );
-
- // hook, 每个分片发送之前可能要做些异步的事情。
- block.waiting = promise = me.request( 'before-send', block, function() {
- delete block.waiting;
-
- // 有可能文件已经上传出错了,所以不需要再传输了。
- if ( file.getStatus() === Status.PROGRESS ) {
- me._doSend( block );
- } else if (block.file.getStatus() !== Status.INTERRUPT) {
- me._popBlock(block);
- }
-
- Base.nextTick(me.__tick);
- });
-
- // 如果为fail了,则跳过此分片。
- promise.fail(function() {
- delete block.waiting;
-
- if ( file.remaning === 1 ) {
- me._finishFile( file ).always(function() {
- block.percentage = 1;
- me._popBlock( block );
- me.owner.trigger( 'uploadComplete', file );
- Base.nextTick( me.__tick );
- });
- } else {
- block.percentage = 1;
- me.updateFileProgress( file );
- me._popBlock( block );
- Base.nextTick( me.__tick );
- }
- });
- },
-
-
- /**
- * @event uploadBeforeSend
- * @param {Object} object
- * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
- * @param {Object} headers 可以扩展此对象来控制上传头部。
- * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
- * @for Uploader
- */
-
- /**
- * @event uploadAccept
- * @param {Object} object
- * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
- * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
- * @for Uploader
- */
-
- /**
- * @event uploadProgress
- * @param {File} file File对象
- * @param {Number} percentage 上传进度
- * @description 上传过程中触发,携带上传进度。
- * @for Uploader
- */
-
-
- /**
- * @event uploadError
- * @param {File} file File对象
- * @param {String} reason 出错的code
- * @description 当文件上传出错时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadSuccess
- * @param {File} file File对象
- * @param {Object} response 服务端返回的数据
- * @description 当文件上传成功时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadComplete
- * @param {File} [file] File对象
- * @description 不管成功或者失败,文件上传完成时触发。
- * @for Uploader
- */
-
- // 做上传操作。
- _doSend: function( block ) {
- var me = this,
- owner = me.owner,
- opts = $.extend({}, me.options, block.options),
- file = block.file,
- tr = new Transport( opts ),
- data = $.extend({}, opts.formData ),
- headers = $.extend({}, opts.headers ),
- requestAccept, ret;
-
- block.transport = tr;
-
- tr.on( 'destroy', function() {
- delete block.transport;
- me._popBlock( block );
- Base.nextTick( me.__tick );
- });
-
- // 广播上传进度。以文件为单位。
- tr.on( 'progress', function( percentage ) {
- block.percentage = percentage;
- me.updateFileProgress( file );
- });
-
- // 用来询问,是否返回的结果是有错误的。
- requestAccept = function( reject ) {
- var fn;
-
- ret = tr.getResponseAsJson() || {};
- ret._raw = tr.getResponse();
- ret._headers = tr.getResponseHeaders();
- block.response = ret;
- fn = function( value ) {
- reject = value;
- };
-
- // 服务端响应了,不代表成功了,询问是否响应正确。
- if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
- reject = reject || 'server';
- }
-
- return reject;
- };
-
- // 尝试重试,然后广播文件上传出错。
- tr.on( 'error', function( type, flag ) {
- // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
- // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
- var typeArr = type.split( '|' ), status, statusText;
- type = typeArr[0];
- status = parseFloat( typeArr[1] ),
- statusText = typeArr[2];
-
- block.retried = block.retried || 0;
-
- // 自动重试
- if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
- block.retried < opts.chunkRetry ) {
-
- block.retried++;
-
- me.retryTimer = setTimeout(function() {
- tr.send();
- }, opts.chunkRetryDelay || 1000);
-
- } else {
-
- // http status 500 ~ 600
- if ( !flag && type === 'server' ) {
- type = requestAccept( type );
- }
-
- file.setStatus( Status.ERROR, type );
- owner.trigger( 'uploadError', file, type, status, statusText );
- owner.trigger( 'uploadComplete', file );
- }
- });
-
- // 上传成功
- tr.on( 'load', function() {
- var reason;
-
- // 如果非预期,转向上传出错。
- if ( (reason = requestAccept()) ) {
- tr.trigger( 'error', reason, true );
- return;
- }
-
- // 全部上传完成。
- if ( file.remaning === 1 ) {
- me._finishFile( file, ret );
- } else {
- tr.destroy();
- }
- });
-
- // 配置默认的上传字段。
- data = $.extend( data, {
- id: file.id,
- name: file.name,
- type: file.type,
- lastModifiedDate: file.lastModifiedDate,
- size: file.size
- });
-
- block.chunks > 1 && $.extend( data, {
- chunks: block.chunks,
- chunk: block.chunk
- });
-
- // 在发送之间可以添加字段什么的。。。
- // 如果默认的字段不够使用,可以通过监听此事件来扩展
- owner.trigger( 'uploadBeforeSend', block, data, headers );
-
- // 开始发送。
- tr.appendBlob( opts.fileVal, block.blob, file.name );
- tr.append( data );
- tr.setRequestHeader( headers );
- tr.send();
- },
-
- // 完成上传。
- _finishFile: function( file, ret, hds ) {
- var owner = this.owner;
-
- return owner
- .request( 'after-send-file', arguments, function() {
- file.setStatus( Status.COMPLETE );
- owner.trigger( 'uploadSuccess', file, ret, hds );
- })
- .fail(function( reason ) {
-
- // 如果外部已经标记为invalid什么的,不再改状态。
- if ( file.getStatus() === Status.PROGRESS ) {
- file.setStatus( Status.ERROR, reason );
- }
-
- owner.trigger( 'uploadError', file, reason );
- })
- .always(function() {
- owner.trigger( 'uploadComplete', file );
- });
- },
-
- updateFileProgress: function(file) {
- var totalPercent = 0,
- uploaded = 0;
-
- if (!file.blocks) {
- return;
- }
-
- $.each( file.blocks, function( _, v ) {
- uploaded += (v.percentage || 0) * (v.end - v.start);
- });
-
- totalPercent = uploaded / file.size;
- this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
- },
-
- destroy: function() {
- clearTimeout(this.retryTimer);
- }
-
- });
- });
-
- /**
- * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
- */
-
- define('widgets/validator',[
- 'base',
- 'uploader',
- 'file',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile ) {
-
- var $ = Base.$,
- validators = {},
- api;
-
- /**
- * @event error
- * @param {String} type 错误类型。
- * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
- *
- * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
- * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
- * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
- * @for Uploader
- */
-
- // 暴露给外面的api
- api = {
-
- // 添加验证器
- addValidator: function( type, cb ) {
- validators[ type ] = cb;
- },
-
- // 移除验证器
- removeValidator: function( type ) {
- delete validators[ type ];
- }
- };
-
- // 在Uploader初始化的时候启动Validators的初始化
- Uploader.register({
- name: 'validator',
-
- init: function() {
- var me = this;
- Base.nextTick(function() {
- $.each( validators, function() {
- this.call( me.owner );
- });
- });
- }
- });
-
- /**
- * @property {int} [fileNumLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总数量, 超出则不允许加入队列。
- */
- api.addValidator( 'fileNumLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileNumLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
- if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
- return false;
- }
- if ( count >= max && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return count >= max ? false : true;
- });
-
- uploader.on( 'fileQueued', function() {
- count++;
- });
-
- uploader.on( 'fileDequeued', function() {
- count--;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
-
- /**
- * @property {int} [fileSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileSizeLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var invalid = count + file.size > max;
-
- if ( invalid && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return invalid ? false : true;
- });
-
- uploader.on( 'fileQueued', function( file ) {
- count += file.size;
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- count -= file.size;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
- /**
- * @property {int} [fileSingleSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSingleSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- max = opts.fileSingleSizeLimit;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
-
- if ( file.size > max ) {
- file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
- this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
- return false;
- }
-
- });
-
- });
-
- /**
- * @property {Boolean} [duplicate=undefined]
- * @namespace options
- * @for Uploader
- * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
- */
- api.addValidator( 'duplicate', function() {
- var uploader = this,
- opts = uploader.options,
- mapping = {};
-
- if ( opts.duplicate ) {
- return;
- }
-
- function hashString( str ) {
- var hash = 0,
- i = 0,
- len = str.length,
- _char;
-
- for ( ; i < len; i++ ) {
- _char = str.charCodeAt( i );
- hash = _char + (hash << 6) + (hash << 16) - hash;
- }
-
- return hash;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var hash = file.__hash || (file.__hash = hashString( file.name +
- file.size + file.lastModifiedDate ));
-
- // 已经重复了
- if ( mapping[ hash ] ) {
- this.trigger( 'error', 'F_DUPLICATE', file );
- return false;
- }
- });
-
- uploader.on( 'fileQueued', function( file ) {
- var hash = file.__hash;
-
- hash && (mapping[ hash ] = true);
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- var hash = file.__hash;
-
- hash && (delete mapping[ hash ]);
- });
-
- uploader.on( 'reset', function() {
- mapping = {};
- });
- });
-
- return api;
- });
-
- /**
- * @fileOverview Md5
- */
- define('lib/md5',[
- 'runtime/client',
- 'mediator'
- ], function( RuntimeClient, Mediator ) {
-
- function Md5() {
- RuntimeClient.call( this, 'Md5' );
- }
-
- // 让 Md5 具备事件功能。
- Mediator.installTo( Md5.prototype );
-
- Md5.prototype.loadFromBlob = function( blob ) {
- var me = this;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- me.exec( 'loadFromBlob', blob );
- });
- };
-
- Md5.prototype.getResult = function() {
- return this.exec('getResult');
- };
-
- return Md5;
- });
- /**
- * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
- */
- define('widgets/md5',[
- 'base',
- 'uploader',
- 'lib/md5',
- 'lib/blob',
- 'widgets/widget'
- ], function( Base, Uploader, Md5, Blob ) {
-
- return Uploader.register({
- name: 'md5',
-
-
- /**
- * 计算文件 md5 值,返回一个 promise 对象,可以监听 progress 进度。
- *
- *
- * @method md5File
- * @grammar md5File( file[, start[, end]] ) => promise
- * @for Uploader
- * @example
- *
- * uploader.on( 'fileQueued', function( file ) {
- * var $li = ...;
- *
- * uploader.md5File( file )
- *
- * // 及时显示进度
- * .progress(function(percentage) {
- * console.log('Percentage:', percentage);
- * })
- *
- * // 完成
- * .then(function(val) {
- * console.log('md5 result:', val);
- * });
- *
- * });
- */
- md5File: function( file, start, end ) {
- var md5 = new Md5(),
- deferred = Base.Deferred(),
- blob = (file instanceof Blob) ? file :
- this.request( 'get-file', file ).source;
-
- md5.on( 'progress load', function( e ) {
- e = e || {};
- deferred.notify( e.total ? e.loaded / e.total : 1 );
- });
-
- md5.on( 'complete', function() {
- deferred.resolve( md5.getResult() );
- });
-
- md5.on( 'error', function( reason ) {
- deferred.reject( reason );
- });
-
- if ( arguments.length > 1 ) {
- start = start || 0;
- end = end || 0;
- start < 0 && (start = blob.size + start);
- end < 0 && (end = blob.size + end);
- end = Math.min( end, blob.size );
- blob = blob.slice( start, end );
- }
-
- md5.loadFromBlob( blob );
-
- return deferred.promise();
- }
- });
- });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/compbase',[],function() {
-
- function CompBase( owner, runtime ) {
-
- this.owner = owner;
- this.options = owner.options;
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.getRuid = function() {
- return runtime.uid;
- };
-
- this.trigger = function() {
- return owner.trigger.apply( owner, arguments );
- };
- }
-
- return CompBase;
- });
- /**
- * @fileOverview Html5Runtime
- */
- define('runtime/html5/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var type = 'html5',
- components = {};
-
- function Html5Runtime() {
- var pool = {},
- me = this,
- destroy = this.destroy;
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- if ( components[ comp ] ) {
- instance = pool[ uid ] = pool[ uid ] ||
- new components[ comp ]( client, me );
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
- };
-
- me.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
- }
-
- Base.inherits( Runtime, {
- constructor: Html5Runtime,
-
- // 不需要连接其他程序,直接执行callback
- init: function() {
- var me = this;
- setTimeout(function() {
- me.trigger('ready');
- }, 1 );
- }
-
- });
-
- // 注册Components
- Html5Runtime.register = function( name, component ) {
- var klass = components[ name ] = Base.inherits( CompBase, component );
- return klass;
- };
-
- // 注册html5运行时。
- // 只有在支持的前提下注册。
- if ( window.Blob && window.FileReader && window.DataView ) {
- Runtime.addRuntime( type, Html5Runtime );
- }
-
- return Html5Runtime;
- });
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/html5/blob',[
- 'runtime/html5/runtime',
- 'lib/blob'
- ], function( Html5Runtime, Blob ) {
-
- return Html5Runtime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.owner.source,
- slice = blob.slice || blob.webkitSlice || blob.mozSlice;
-
- blob = slice.call( blob, start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
- });
/**
- * @fileOverview FilePaste
+ * @fileOverview 负责文件上传相关。
*/
- define('runtime/html5/dnd',[
+ define('widgets/upload',[
'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ 'uploader',
+ 'file',
+ 'lib/transport',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile, Transport ) {
var $ = Base.$,
- prefix = 'webuploader-dnd-';
+ isPromise = Base.isPromise,
+ Status = WUFile.Status;
- return Html5Runtime.register( 'DragAndDrop', {
- init: function() {
- var elem = this.elem = this.options.container;
+ // 添加默认配置项
+ $.extend( Uploader.options, {
- this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
- this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
- this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
- this.dropHandler = Base.bindFn( this._dropHandler, this );
- this.dndOver = false;
- elem.on( 'dragenter', this.dragEnterHandler );
- elem.on( 'dragover', this.dragOverHandler );
- elem.on( 'dragleave', this.dragLeaveHandler );
- elem.on( 'drop', this.dropHandler );
+ /**
+ * @property {Boolean} [prepareNextFile=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否允许在文件传输时提前把下一个文件准备好。
+ * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
+ * 如果能提前在当前文件传输期处理,可以节省总体耗时。
+ */
+ prepareNextFile: false,
- if ( this.options.disableGlobalDnd ) {
- $( document ).on( 'dragover', this.dragOverHandler );
- $( document ).on( 'drop', this.dropHandler );
- }
- },
+ /**
+ * @property {Boolean} [chunked=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否要分片处理大文件上传。
+ */
+ chunked: false,
- _dragEnterHandler: function( e ) {
- var me = this,
- denied = me._denied || false,
- items;
+ /**
+ * @property {Boolean} [chunkSize=5242880]
+ * @namespace options
+ * @for Uploader
+ * @description 如果要分片,分多大一片? 默认大小为5M.
+ */
+ chunkSize: 5 * 1024 * 1024,
- e = e.originalEvent || e;
+ /**
+ * @property {Boolean} [chunkRetry=2]
+ * @namespace options
+ * @for Uploader
+ * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
+ */
+ chunkRetry: 2,
- if ( !me.dndOver ) {
- me.dndOver = true;
+ /**
+ * @property {Number} [chunkRetryDelay=1000]
+ * @namespace options
+ * @for Uploader
+ * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
+ */
+ chunkRetryDelay: 1000,
- // 注意只有 chrome 支持。
- items = e.dataTransfer.items;
+ /**
+ * @property {Boolean} [threads=3]
+ * @namespace options
+ * @for Uploader
+ * @description 上传并发数。允许同时最大上传进程数。
+ */
+ threads: 3,
- if ( items && items.length ) {
- me._denied = denied = !me.trigger( 'accept', items );
- }
- me.elem.addClass( prefix + 'over' );
- me.elem[ denied ? 'addClass' :
- 'removeClass' ]( prefix + 'denied' );
- }
+ /**
+ * @property {Object} [formData={}]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
+ */
+ formData: {}
- e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+ /**
+ * @property {Object} [fileVal='file']
+ * @namespace options
+ * @for Uploader
+ * @description 设置文件上传域的name。
+ */
- return false;
- },
+ /**
+ * @property {Object} [method=POST]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传方式,`POST` 或者 `GET`。
+ */
- _dragOverHandler: function( e ) {
- // 只处理框内的。
- var parentElem = this.elem.parent().get( 0 );
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
+ /**
+ * @property {Object} [sendAsBinary=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
+ * 其他参数在$_GET数组中。
+ */
+ });
+
+ // 负责将文件切片。
+ function CuteFile( file, chunkSize ) {
+ var pending = [],
+ blob = file.source,
+ total = blob.size,
+ chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
+ start = 0,
+ index = 0,
+ len, api;
+
+ api = {
+ file: file,
+
+ has: function() {
+ return !!pending.length;
+ },
+
+ shift: function() {
+ return pending.shift();
+ },
+
+ unshift: function( block ) {
+ pending.unshift( block );
}
+ };
- clearTimeout( this._leaveTimer );
- this._dragEnterHandler.call( this, e );
+ while ( index < chunks ) {
+ len = Math.min( chunkSize, total - start );
- return false;
- },
+ pending.push({
+ file: file,
+ start: start,
+ end: chunkSize ? (start + len) : total,
+ total: total,
+ chunks: chunks,
+ chunk: index++,
+ cuted: api
+ });
+ start += len;
+ }
- _dragLeaveHandler: function() {
- var me = this,
- handler;
+ file.blocks = pending.concat();
+ file.remaning = pending.length;
- handler = function() {
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
- };
+ return api;
+ }
- clearTimeout( me._leaveTimer );
- me._leaveTimer = setTimeout( handler, 100 );
- return false;
- },
+ Uploader.register({
+ name: 'upload',
- _dropHandler: function( e ) {
- var me = this,
- ruid = me.getRuid(),
- parentElem = me.elem.parent().get( 0 ),
- dataTransfer, data;
+ init: function() {
+ var owner = this.owner,
+ me = this;
- // 只处理框内的。
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
- }
+ this.runing = false;
+ this.progress = false;
- e = e.originalEvent || e;
- dataTransfer = e.dataTransfer;
+ owner
+ .on( 'startUpload', function() {
+ me.progress = true;
+ })
+ .on( 'uploadFinished', function() {
+ me.progress = false;
+ });
- // 如果是页面内拖拽,还不能处理,不阻止事件。
- // 此处 ie11 下会报参数错误,
- try {
- data = dataTransfer.getData('text/html');
- } catch( err ) {
- }
+ // 记录当前正在传的数据,跟threads相关
+ this.pool = [];
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over' );
+ // 缓存分好片的文件。
+ this.stack = [];
- if ( !dataTransfer || data ) {
- return;
- }
+ // 缓存即将上传的文件。
+ this.pending = [];
- me._getTansferFiles( dataTransfer, function( results ) {
- me.trigger( 'drop', $.map( results, function( file ) {
- return new File( ruid, file );
- }) );
+ // 跟踪还有多少分片在上传中但是没有完成上传。
+ this.remaning = 0;
+ this.__tick = Base.bindFn( this._tick, this );
+
+ // 销毁上传相关的属性。
+ owner.on( 'uploadComplete', function( file ) {
+
+ // 把其他块取消了。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ v.transport && (v.transport.abort(), v.transport.destroy());
+ delete v.transport;
+ });
+
+ delete file.blocks;
+ delete file.remaning;
});
+ },
- return false;
+ reset: function() {
+ this.request( 'stop-upload', true );
+ this.runing = false;
+ this.pool = [];
+ this.stack = [];
+ this.pending = [];
+ this.remaning = 0;
+ this._trigged = false;
+ this._promise = null;
},
- // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
- _getTansferFiles: function( dataTransfer, callback ) {
- var results = [],
- promises = [],
- items, files, file, item, i, len, canAccessFolder;
+ /**
+ * @event startUpload
+ * @description 当开始上传流程时触发。
+ * @for Uploader
+ */
- items = dataTransfer.items;
- files = dataTransfer.files;
+ /**
+ * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
+ *
+ * 可以指定开始某一个文件。
+ * @grammar upload() => undefined
+ * @grammar upload( file | fileId) => undefined
+ * @method upload
+ * @for Uploader
+ */
+ startUpload: function(file) {
+ var me = this;
- canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+ // 移出invalid的文件
+ $.each( me.request( 'get-files', Status.INVALID ), function() {
+ me.request( 'remove-file', this );
+ });
- for ( i = 0, len = files.length; i < len; i++ ) {
- file = files[ i ];
- item = items && items[ i ];
+ // 如果指定了开始某个文件,则只开始指定的文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
- if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+ if (file.getStatus() === Status.INTERRUPT) {
+ file.setStatus( Status.QUEUED );
- promises.push( this._traverseDirectoryTree(
- item.webkitGetAsEntry(), results ) );
- } else {
- results.push( file );
+ $.each( me.pool, function( _, v ) {
+
+ // 之前暂停过。
+ if (v.file !== file) {
+ return;
+ }
+
+ v.transport && v.transport.send();
+ file.setStatus( Status.PROGRESS );
+ });
+
+
+ } else if (file.getStatus() !== Status.PROGRESS) {
+ file.setStatus( Status.QUEUED );
}
+ } else {
+ $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
+ this.setStatus( Status.QUEUED );
+ });
}
- Base.when.apply( Base, promises ).done(function() {
+ if ( me.runing ) {
+ me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
+ return Base.nextTick( me.__tick );
+ }
- if ( !results.length ) {
- return;
+ me.runing = true;
+ var files = [];
+
+ // 如果有暂停的,则续传
+ file || $.each( me.pool, function( _, v ) {
+ var file = v.file;
+
+ if ( file.getStatus() === Status.INTERRUPT ) {
+ me._trigged = false;
+ files.push(file);
+
+ if (v.waiting) {
+ return;
+ }
+
+ // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
+ v.transport ? v.transport.send() : me._doSend(v);
}
+ });
- callback( results );
+ $.each(files, function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ file || $.each( me.request( 'get-files',
+ Status.INTERRUPT ), function() {
+ this.setStatus( Status.PROGRESS );
});
+
+ me._trigged = false;
+ Base.nextTick( me.__tick );
+ me.owner.trigger('startUpload');
},
- _traverseDirectoryTree: function( entry, results ) {
- var deferred = Base.Deferred(),
- me = this;
+ /**
+ * @event stopUpload
+ * @description 当开始上传流程暂停时触发。
+ * @for Uploader
+ */
- if ( entry.isFile ) {
- entry.file(function( file ) {
- results.push( file );
- deferred.resolve();
- });
- } else if ( entry.isDirectory ) {
- entry.createReader().readEntries(function( entries ) {
- var len = entries.length,
- promises = [],
- arr = [], // 为了保证顺序。
- i;
+ /**
+ * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
+ *
+ * 如果第一个参数是文件,则只暂停指定文件。
+ * @grammar stop() => undefined
+ * @grammar stop( true ) => undefined
+ * @grammar stop( file ) => undefined
+ * @method stop
+ * @for Uploader
+ */
+ stopUpload: function( file, interrupt ) {
+ var me = this;
- for ( i = 0; i < len; i++ ) {
- promises.push( me._traverseDirectoryTree(
- entries[ i ], arr ) );
- }
+ if (file === true) {
+ interrupt = file;
+ file = null;
+ }
- Base.when.apply( Base, promises ).then(function() {
- results.push.apply( results, arr );
- deferred.resolve();
- }, deferred.reject );
- });
+ if ( me.runing === false ) {
+ return;
}
- return deferred.promise();
- },
+ // 如果只是暂停某个文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
- destroy: function() {
- var elem = this.elem;
+ if ( file.getStatus() !== Status.PROGRESS &&
+ file.getStatus() !== Status.QUEUED ) {
+ return;
+ }
- // 还没 init 就调用 destroy
- if (!elem) {
- return;
- }
+ file.setStatus( Status.INTERRUPT );
- elem.off( 'dragenter', this.dragEnterHandler );
- elem.off( 'dragover', this.dragOverHandler );
- elem.off( 'dragleave', this.dragLeaveHandler );
- elem.off( 'drop', this.dropHandler );
- if ( this.options.disableGlobalDnd ) {
- $( document ).off( 'dragover', this.dragOverHandler );
- $( document ).off( 'drop', this.dropHandler );
- }
- }
- });
- });
-
- /**
- * @fileOverview FilePaste
- */
- define('runtime/html5/filepaste',[
- 'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ $.each( me.pool, function( _, v ) {
- return Html5Runtime.register( 'FilePaste', {
- init: function() {
- var opts = this.options,
- elem = this.elem = opts.container,
- accept = '.*',
- arr, i, len, item;
+ // 只 abort 指定的文件,每一个分片。
+ if (v.file === file) {
+ v.transport && v.transport.abort();
- // accetp的mimeTypes中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
+ if (interrupt) {
+ me._putback(v);
+ me._popBlock(v);
+ }
+ }
+ });
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].mimeTypes;
- item && arr.push( item );
- }
+ me.owner.trigger('stopUpload', file);// 暂停,trigger event
- if ( arr.length ) {
- accept = arr.join(',');
- accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
- }
+ return Base.nextTick( me.__tick );
}
- this.accept = accept = new RegExp( accept, 'i' );
- this.hander = Base.bindFn( this._pasteHander, this );
- elem.on( 'paste', this.hander );
- },
- _pasteHander: function( e ) {
- var allowed = [],
- ruid = this.getRuid(),
- items, item, blob, i, len;
+ me.runing = false;
- e = e.originalEvent || e;
- items = e.clipboardData.items;
+ // 正在准备中的文件。
+ if (this._promise && this._promise.file) {
+ this._promise.file.setStatus( Status.INTERRUPT );
+ }
- for ( i = 0, len = items.length; i < len; i++ ) {
- item = items[ i ];
+ interrupt && $.each( me.pool, function( _, v ) {
+ v.transport && v.transport.abort();
+ v.file.setStatus( Status.INTERRUPT );
+ });
- if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
- continue;
+ me.owner.trigger('stopUpload');
+ },
+
+ /**
+ * @method cancelFile
+ * @grammar cancelFile( file ) => undefined
+ * @grammar cancelFile( id ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 标记文件状态为已取消, 同时将中断文件传输。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.cancelFile( file );
+ * })
+ */
+ cancelFile: function( file ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
}
+ });
- allowed.push( new File( ruid, blob ) );
- }
+ file.setStatus( Status.CANCELLED );
+ this.owner.trigger( 'fileDequeued', file );
+ },
- if ( allowed.length ) {
- // 不阻止非文件粘贴(文字粘贴)的事件冒泡
- e.preventDefault();
- e.stopPropagation();
- this.trigger( 'paste', allowed );
- }
+ /**
+ * 判断`Uploader`是否正在上传中。
+ * @grammar isInProgress() => Boolean
+ * @method isInProgress
+ * @for Uploader
+ */
+ isInProgress: function() {
+ return !!this.progress;
},
- destroy: function() {
- this.elem.off( 'paste', this.hander );
- }
- });
- });
-
- /**
- * @fileOverview FilePicker
- */
- define('runtime/html5/filepicker',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
+ _getStats: function() {
+ return this.request('get-stats');
+ },
- var $ = Base.$;
+ /**
+ * 跳过一个文件上传,直接标记指定文件为已上传状态。
+ * @grammar skipFile( file ) => undefined
+ * @method skipFile
+ * @for Uploader
+ */
+ skipFile: function( file, status ) {
+ file = file.id ? file : this.request( 'get-file', file );
- return Html5Runtime.register( 'FilePicker', {
- init: function() {
- var container = this.getRuntime().getContainer(),
- me = this,
- owner = me.owner,
- opts = me.options,
- label = this.label = $( document.createElement('label') ),
- input = this.input = $( document.createElement('input') ),
- arr, i, len, mouseHandler, changeHandler;
+ file.setStatus( status || Status.COMPLETE );
+ file.skipped = true;
- input.attr( 'type', 'file' );
- input.attr( 'capture', 'camera');
- input.attr( 'name', opts.name );
- input.addClass('webuploader-element-invisible');
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
- label.on( 'click', function(e) {
- input.trigger('click');
- e.stopPropagation();
- owner.trigger('dialogopen');
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
});
- label.css({
- opacity: 0,
- width: '100%',
- height: '100%',
- display: 'block',
- cursor: 'pointer',
- background: '#ffffff'
- });
+ this.owner.trigger( 'uploadSkip', file );
+ },
- if ( opts.multiple ) {
- input.attr( 'multiple', 'multiple' );
+ /**
+ * @event uploadFinished
+ * @description 当所有文件上传结束时触发。
+ * @for Uploader
+ */
+ _tick: function() {
+ var me = this,
+ opts = me.options,
+ fn, val;
+
+ // 上一个promise还没有结束,则等待完成后再执行。
+ if ( me._promise ) {
+ return me._promise.always( me.__tick );
}
- // @todo Firefox不支持单独指定后缀
- if ( opts.accept && opts.accept.length > 0 ) {
- arr = [];
+ // 还有位置,且还有文件要处理的话。
+ if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
+ me._trigged = false;
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- arr.push( opts.accept[ i ].mimeTypes );
- }
+ fn = function( val ) {
+ me._promise = null;
- input.attr( 'accept', arr.join(',') );
- }
+ // 有可能是reject过来的,所以要检测val的类型。
+ val && val.file && me._startSend( val );
+ Base.nextTick( me.__tick );
+ };
- container.append( input );
- container.append( label );
+ me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
- mouseHandler = function( e ) {
- owner.trigger( e.type );
- };
+ // 没有要上传的了,且没有正在传输的了。
+ } else if ( !me.remaning && !me._getStats().numOfQueue &&
+ !me._getStats().numOfInterrupt ) {
+ me.runing = false;
- changeHandler = function( e ) {
- var clone;
+ me._trigged || Base.nextTick(function() {
+ me.owner.trigger('uploadFinished');
+ });
+ me._trigged = true;
+ }
+ },
- // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
- if (e.target.files.length === 0){
- return false;
+ _putback: function(block) {
+ var idx;
+
+ block.cuted.unshift(block);
+ idx = this.stack.indexOf(block.cuted);
+
+ if (!~idx) {
+ // 如果不在里面,说明移除过,需要把计数还原回去。
+ this.remaning++;
+ block.file.remaning++;
+ this.stack.unshift(block.cuted);
+ }
+ },
+
+ _getStack: function() {
+ var i = 0,
+ act;
+
+ while ( (act = this.stack[ i++ ]) ) {
+ if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
+ return act;
+ } else if (!act.has() ||
+ act.file.getStatus() !== Status.PROGRESS &&
+ act.file.getStatus() !== Status.INTERRUPT ) {
+
+ // 把已经处理完了的,或者,状态为非 progress(上传中)、
+ // interupt(暂停中) 的移除。
+ this.stack.splice( --i, 1 );
}
+ }
- // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
- me.files = e.target.files;
+ return null;
+ },
+ _nextBlock: function() {
+ var me = this,
+ opts = me.options,
+ act, next, done, preparing;
- // reset input
- clone = this.cloneNode( true );
- clone.value = null;
- this.parentNode.replaceChild( clone, this );
+ // 如果当前文件还有没有需要传输的,则直接返回剩下的。
+ if ( (act = this._getStack()) ) {
- input.off();
- input = $( clone ).on( 'change', changeHandler )
- .on( 'mouseenter mouseleave', mouseHandler );
+ // 是否提前准备下一个文件
+ if ( opts.prepareNextFile && !me.pending.length ) {
+ me._prepareNextFile();
+ }
- owner.trigger('change');
+ return act.shift();
+
+ // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
+ } else if ( me.runing ) {
+
+ // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
+ if ( !me.pending.length && me._getStats().numOfQueue ) {
+ me._prepareNextFile();
+ }
+
+ next = me.pending.shift();
+ done = function( file ) {
+ if ( !file ) {
+ return null;
+ }
+
+ act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
+ me.stack.push(act);
+ return act.shift();
+ };
+
+ // 文件可能还在prepare中,也有可能已经完全准备好了。
+ if ( isPromise( next) ) {
+ preparing = next.file;
+ next = next[ next.pipe ? 'pipe' : 'then' ]( done );
+ next.file = preparing;
+ return next;
+ }
+
+ return done( next );
}
- input.on( 'change', changeHandler);
- label.on( 'mouseenter mouseleave', mouseHandler );
+ },
+
+
+ /**
+ * @event uploadStart
+ * @param {File} file File对象
+ * @description 某个文件开始上传前触发,一个文件只会触发一次。
+ * @for Uploader
+ */
+ _prepareNextFile: function() {
+ var me = this,
+ file = me.request('fetch-file'),
+ pending = me.pending,
+ promise;
+
+ if ( file ) {
+ promise = me.request( 'before-send-file', file, function() {
+
+ // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
+ if ( file.getStatus() === Status.PROGRESS ||
+ file.getStatus() === Status.INTERRUPT ) {
+ return file;
+ }
+
+ return me._finishFile( file );
+ });
+
+ me.owner.trigger( 'uploadStart', file );
+ file.setStatus( Status.PROGRESS );
+
+ promise.file = file;
+
+ // 如果还在pending中,则替换成文件本身。
+ promise.done(function() {
+ var idx = $.inArray( promise, pending );
+
+ ~idx && pending.splice( idx, 1, file );
+ });
+
+ // befeore-send-file的钩子就有错误发生。
+ promise.fail(function( reason ) {
+ file.setStatus( Status.ERROR, reason );
+ me.owner.trigger( 'uploadError', file, reason );
+ me.owner.trigger( 'uploadComplete', file );
+ });
+ pending.push( promise );
+ }
},
+ // 让出位置了,可以让其他分片开始上传
+ _popBlock: function( block ) {
+ var idx = $.inArray( block, this.pool );
- getFiles: function() {
- return this.files;
+ this.pool.splice( idx, 1 );
+ block.file.remaning--;
+ this.remaning--;
+ },
+
+ // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
+ _startSend: function( block ) {
+ var me = this,
+ file = block.file,
+ promise;
+
+ // 有可能在 before-send-file 的 promise 期间改变了文件状态。
+ // 如:暂停,取消
+ // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
+ if ( file.getStatus() !== Status.PROGRESS ) {
+
+ // 如果是中断,则还需要放回去。
+ if (file.getStatus() === Status.INTERRUPT) {
+ me._putback(block);
+ }
+
+ return;
+ }
+
+ me.pool.push( block );
+ me.remaning++;
+
+ // 如果没有分片,则直接使用原始的。
+ // 不会丢失content-type信息。
+ block.blob = block.chunks === 1 ? file.source :
+ file.source.slice( block.start, block.end );
+
+ // hook, 每个分片发送之前可能要做些异步的事情。
+ block.waiting = promise = me.request( 'before-send', block, function() {
+ delete block.waiting;
+
+ // 有可能文件已经上传出错了,所以不需要再传输了。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ me._doSend( block );
+ } else if (block.file.getStatus() !== Status.INTERRUPT) {
+ me._popBlock(block);
+ }
+
+ Base.nextTick(me.__tick);
+ });
+
+ // 如果为fail了,则跳过此分片。
+ promise.fail(function() {
+ delete block.waiting;
+
+ if ( file.remaning === 1 ) {
+ me._finishFile( file ).always(function() {
+ block.percentage = 1;
+ me._popBlock( block );
+ me.owner.trigger( 'uploadComplete', file );
+ Base.nextTick( me.__tick );
+ });
+ } else {
+ block.percentage = 1;
+ me.updateFileProgress( file );
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ }
+ });
+ },
+
+
+ /**
+ * @event uploadBeforeSend
+ * @param {Object} object
+ * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
+ * @param {Object} headers 可以扩展此对象来控制上传头部。
+ * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadAccept
+ * @param {Object} object
+ * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
+ * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadProgress
+ * @param {File} file File对象
+ * @param {Number} percentage 上传进度
+ * @description 上传过程中触发,携带上传进度。
+ * @for Uploader
+ */
+
+
+ /**
+ * @event uploadError
+ * @param {File} file File对象
+ * @param {String} reason 出错的code
+ * @description 当文件上传出错时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadSuccess
+ * @param {File} file File对象
+ * @param {Object} response 服务端返回的数据
+ * @description 当文件上传成功时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadComplete
+ * @param {File} [file] File对象
+ * @description 不管成功或者失败,文件上传完成时触发。
+ * @for Uploader
+ */
+
+ // 做上传操作。
+ _doSend: function( block ) {
+ var me = this,
+ owner = me.owner,
+ opts = $.extend({}, me.options, block.options),
+ file = block.file,
+ tr = new Transport( opts ),
+ data = $.extend({}, opts.formData ),
+ headers = $.extend({}, opts.headers ),
+ requestAccept, ret;
+
+ block.transport = tr;
+
+ tr.on( 'destroy', function() {
+ delete block.transport;
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ });
+
+ // 广播上传进度。以文件为单位。
+ tr.on( 'progress', function( percentage ) {
+ block.percentage = percentage;
+ me.updateFileProgress( file );
+ });
+
+ // 用来询问,是否返回的结果是有错误的。
+ requestAccept = function( reject ) {
+ var fn;
+
+ ret = tr.getResponseAsJson() || {};
+ ret._raw = tr.getResponse();
+ ret._headers = tr.getResponseHeaders();
+ block.response = ret;
+ fn = function( value ) {
+ reject = value;
+ };
+
+ // 服务端响应了,不代表成功了,询问是否响应正确。
+ if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
+ reject = reject || 'server';
+ }
+
+ return reject;
+ };
+
+ // 尝试重试,然后广播文件上传出错。
+ tr.on( 'error', function( type, flag ) {
+ // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
+ // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
+ var typeArr = type.split( '|' ), status, statusText;
+ type = typeArr[0];
+ status = parseFloat( typeArr[1] ),
+ statusText = typeArr[2];
+
+ block.retried = block.retried || 0;
+
+ // 自动重试
+ if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
+ block.retried < opts.chunkRetry ) {
+
+ block.retried++;
+
+ me.retryTimer = setTimeout(function() {
+ tr.send();
+ }, opts.chunkRetryDelay || 1000);
+
+ } else {
+
+ // http status 500 ~ 600
+ if ( !flag && type === 'server' ) {
+ type = requestAccept( type );
+ }
+
+ file.setStatus( Status.ERROR, type );
+ owner.trigger( 'uploadError', file, type, status, statusText );
+ owner.trigger( 'uploadComplete', file );
+ }
+ });
+
+ // 上传成功
+ tr.on( 'load', function() {
+ var reason;
+
+ // 如果非预期,转向上传出错。
+ if ( (reason = requestAccept()) ) {
+ tr.trigger( 'error', reason, true );
+ return;
+ }
+
+ // 全部上传完成。
+ if ( file.remaning === 1 ) {
+ me._finishFile( file, ret );
+ } else {
+ tr.destroy();
+ }
+ });
+
+ // 配置默认的上传字段。
+ data = $.extend( data, {
+ id: file.id,
+ name: file.name,
+ type: file.type,
+ lastModifiedDate: file.lastModifiedDate,
+ size: file.size
+ });
+
+ block.chunks > 1 && $.extend( data, {
+ chunks: block.chunks,
+ chunk: block.chunk
+ });
+
+ // 在发送之间可以添加字段什么的。。。
+ // 如果默认的字段不够使用,可以通过监听此事件来扩展
+ owner.trigger( 'uploadBeforeSend', block, data, headers );
+
+ // 开始发送。
+ tr.appendBlob( opts.fileVal, block.blob, file.name );
+ tr.append( data );
+ tr.setRequestHeader( headers );
+ tr.send();
+ },
+
+ // 完成上传。
+ _finishFile: function( file, ret, hds ) {
+ var owner = this.owner;
+
+ return owner
+ .request( 'after-send-file', arguments, function() {
+ file.setStatus( Status.COMPLETE );
+ owner.trigger( 'uploadSuccess', file, ret, hds );
+ })
+ .fail(function( reason ) {
+
+ // 如果外部已经标记为invalid什么的,不再改状态。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ file.setStatus( Status.ERROR, reason );
+ }
+
+ owner.trigger( 'uploadError', file, reason );
+ })
+ .always(function() {
+ owner.trigger( 'uploadComplete', file );
+ });
+ },
+
+ updateFileProgress: function(file) {
+ var totalPercent = 0,
+ uploaded = 0;
+
+ if (!file.blocks) {
+ return;
+ }
+
+ $.each( file.blocks, function( _, v ) {
+ uploaded += (v.percentage || 0) * (v.end - v.start);
+ });
+
+ totalPercent = uploaded / file.size;
+ this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
},
destroy: function() {
- this.input.off();
- this.label.off();
+ clearTimeout(this.retryTimer);
}
+
});
});
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/util',[
- 'base'
- ], function( Base ) {
-
- var urlAPI = window.createObjectURL && window ||
- window.URL && URL.revokeObjectURL && URL ||
- window.webkitURL,
- createObjectURL = Base.noop,
- revokeObjectURL = createObjectURL;
-
- if ( urlAPI ) {
-
- // 更安全的方式调用,比如android里面就能把context改成其他的对象。
- createObjectURL = function() {
- return urlAPI.createObjectURL.apply( urlAPI, arguments );
- };
-
- revokeObjectURL = function() {
- return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
- };
- }
-
- return {
- createObjectURL: createObjectURL,
- revokeObjectURL: revokeObjectURL,
-
- dataURL2Blob: function( dataURI ) {
- var byteStr, intArray, ab, i, mimetype, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- ab = new ArrayBuffer( byteStr.length );
- intArray = new Uint8Array( ab );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
-
- return this.arrayBufferToBlob( ab, mimetype );
- },
-
- dataURL2ArrayBuffer: function( dataURI ) {
- var byteStr, intArray, i, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- intArray = new Uint8Array( byteStr.length );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- return intArray.buffer;
- },
-
- arrayBufferToBlob: function( buffer, type ) {
- var builder = window.BlobBuilder || window.WebKitBlobBuilder,
- bb;
-
- // android不支持直接new Blob, 只能借助blobbuilder.
- if ( builder ) {
- bb = new builder();
- bb.append( buffer );
- return bb.getBlob( type );
- }
-
- return new Blob([ buffer ], type ? { type: type } : {} );
- },
-
- // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
- // 你得到的结果是png.
- canvasToDataUrl: function( canvas, type, quality ) {
- return canvas.toDataURL( type, quality / 100 );
- },
-
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- parseMeta: function( blob, callback ) {
- callback( false, {});
- },
+ /**
+ * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
+ */
+
+ define('widgets/validator',[
+ 'base',
+ 'uploader',
+ 'file',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile ) {
+
+ var $ = Base.$,
+ validators = {},
+ api;
+
+ /**
+ * @event error
+ * @param {String} type 错误类型。
+ * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
+ *
+ * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
+ * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
+ * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
+ * @for Uploader
+ */
+
+ // 暴露给外面的api
+ api = {
+
+ // 添加验证器
+ addValidator: function( type, cb ) {
+ validators[ type ] = cb;
+ },
+
+ // 移除验证器
+ removeValidator: function( type ) {
+ delete validators[ type ];
+ }
+ };
+
+ // 在Uploader初始化的时候启动Validators的初始化
+ Uploader.register({
+ name: 'validator',
+
+ init: function() {
+ var me = this;
+ Base.nextTick(function() {
+ $.each( validators, function() {
+ this.call( me.owner );
+ });
+ });
+ }
+ });
+
+ /**
+ * @property {int} [fileNumLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总数量, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileNumLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileNumLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
+ if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
+ return false;
+ }
+ if ( count >= max && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return count >= max ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function() {
+ count++;
+ });
+
+ uploader.on( 'fileDequeued', function() {
+ count--;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+
+ /**
+ * @property {int} [fileSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileSizeLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var invalid = count + file.size > max;
+
+ if ( invalid && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return invalid ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ count += file.size;
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ count -= file.size;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+ /**
+ * @property {int} [fileSingleSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSingleSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ max = opts.fileSingleSizeLimit;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+
+ if ( file.size > max ) {
+ file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
+ this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
+ return false;
+ }
+
+ });
+
+ });
+
+ /**
+ * @property {Boolean} [duplicate=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
+ */
+ api.addValidator( 'duplicate', function() {
+ var uploader = this,
+ opts = uploader.options,
+ mapping = {};
+
+ if ( opts.duplicate ) {
+ return;
+ }
+
+ function hashString( str ) {
+ var hash = 0,
+ i = 0,
+ len = str.length,
+ _char;
+
+ for ( ; i < len; i++ ) {
+ _char = str.charCodeAt( i );
+ hash = _char + (hash << 6) + (hash << 16) - hash;
+ }
+
+ return hash;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var hash = file.__hash || (file.__hash = hashString( file.name +
+ file.size + file.lastModifiedDate ));
+
+ // 已经重复了
+ if ( mapping[ hash ] ) {
+ this.trigger( 'error', 'F_DUPLICATE', file );
+ return false;
+ }
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (mapping[ hash ] = true);
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (delete mapping[ hash ]);
+ });
+
+ uploader.on( 'reset', function() {
+ mapping = {};
+ });
+ });
+
+ return api;
+ });
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- updateImageHead: function( data ) {
- return data;
- }
- };
+ /**
+ * @fileOverview Md5
+ */
+ define('lib/md5',[
+ 'runtime/client',
+ 'mediator'
+ ], function( RuntimeClient, Mediator ) {
+
+ function Md5() {
+ RuntimeClient.call( this, 'Md5' );
+ }
+
+ // 让 Md5 具备事件功能。
+ Mediator.installTo( Md5.prototype );
+
+ Md5.prototype.loadFromBlob = function( blob ) {
+ var me = this;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ me.exec( 'loadFromBlob', blob );
+ });
+ };
+
+ Md5.prototype.getResult = function() {
+ return this.exec('getResult');
+ };
+
+ return Md5;
});
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/imagemeta',[
- 'runtime/html5/util'
- ], function( Util ) {
-
- var api;
-
- api = {
- parsers: {
- 0xffe1: []
- },
-
- maxMetaDataSize: 262144,
-
- parse: function( blob, cb ) {
- var me = this,
- fr = new FileReader();
-
- fr.onload = function() {
- cb( false, me._parse( this.result ) );
- fr = fr.onload = fr.onerror = null;
- };
-
- fr.onerror = function( e ) {
- cb( e.message );
- fr = fr.onload = fr.onerror = null;
- };
-
- blob = blob.slice( 0, me.maxMetaDataSize );
- fr.readAsArrayBuffer( blob.getSource() );
- },
-
- _parse: function( buffer, noParse ) {
- if ( buffer.byteLength < 6 ) {
- return;
- }
-
- var dataview = new DataView( buffer ),
- offset = 2,
- maxOffset = dataview.byteLength - 4,
- headLength = offset,
- ret = {},
- markerBytes, markerLength, parsers, i;
-
- if ( dataview.getUint16( 0 ) === 0xffd8 ) {
-
- while ( offset < maxOffset ) {
- markerBytes = dataview.getUint16( offset );
-
- if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
- markerBytes === 0xfffe ) {
-
- markerLength = dataview.getUint16( offset + 2 ) + 2;
-
- if ( offset + markerLength > dataview.byteLength ) {
- break;
- }
-
- parsers = api.parsers[ markerBytes ];
-
- if ( !noParse && parsers ) {
- for ( i = 0; i < parsers.length; i += 1 ) {
- parsers[ i ].call( api, dataview, offset,
- markerLength, ret );
- }
- }
-
- offset += markerLength;
- headLength = offset;
- } else {
- break;
- }
- }
-
- if ( headLength > 6 ) {
- if ( buffer.slice ) {
- ret.imageHead = buffer.slice( 2, headLength );
- } else {
- // Workaround for IE10, which does not yet
- // support ArrayBuffer.slice:
- ret.imageHead = new Uint8Array( buffer )
- .subarray( 2, headLength );
- }
- }
- }
-
- return ret;
- },
-
- updateImageHead: function( buffer, head ) {
- var data = this._parse( buffer, true ),
- buf1, buf2, bodyoffset;
-
-
- bodyoffset = 2;
- if ( data.imageHead ) {
- bodyoffset = 2 + data.imageHead.byteLength;
- }
-
- if ( buffer.slice ) {
- buf2 = buffer.slice( bodyoffset );
- } else {
- buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
- }
-
- buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
-
- buf1[ 0 ] = 0xFF;
- buf1[ 1 ] = 0xD8;
- buf1.set( new Uint8Array( head ), 2 );
- buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
-
- return buf1.buffer;
- }
- };
-
- Util.parseMeta = function() {
- return api.parse.apply( api, arguments );
- };
-
- Util.updateImageHead = function() {
- return api.updateImageHead.apply( api, arguments );
- };
-
- return api;
+ /**
+ * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
+ */
+ define('widgets/md5',[
+ 'base',
+ 'uploader',
+ 'lib/md5',
+ 'lib/blob',
+ 'widgets/widget'
+ ], function( Base, Uploader, Md5, Blob ) {
+
+ return Uploader.register({
+ name: 'md5',
+
+
+ /**
+ * 计算文件 md5 值,返回一个 promise 对象,可以监听 progress 进度。
+ *
+ *
+ * @method md5File
+ * @grammar md5File( file[, start[, end]] ) => promise
+ * @for Uploader
+ * @example
+ *
+ * uploader.on( 'fileQueued', function( file ) {
+ * var $li = ...;
+ *
+ * uploader.md5File( file )
+ *
+ * // 及时显示进度
+ * .progress(function(percentage) {
+ * console.log('Percentage:', percentage);
+ * })
+ *
+ * // 完成
+ * .then(function(val) {
+ * console.log('md5 result:', val);
+ * });
+ *
+ * });
+ */
+ md5File: function( file, start, end ) {
+ var md5 = new Md5(),
+ deferred = Base.Deferred(),
+ blob = (file instanceof Blob) ? file :
+ this.request( 'get-file', file ).source;
+
+ md5.on( 'progress load', function( e ) {
+ e = e || {};
+ deferred.notify( e.total ? e.loaded / e.total : 1 );
+ });
+
+ md5.on( 'complete', function() {
+ deferred.resolve( md5.getResult() );
+ });
+
+ md5.on( 'error', function( reason ) {
+ deferred.reject( reason );
+ });
+
+ if ( arguments.length > 1 ) {
+ start = start || 0;
+ end = end || 0;
+ start < 0 && (start = blob.size + start);
+ end < 0 && (end = blob.size + end);
+ end = Math.min( end, blob.size );
+ blob = blob.slice( start, end );
+ }
+
+ md5.loadFromBlob( blob );
+
+ return deferred.promise();
+ }
+ });
});
- /**
- * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
- * 暂时项目中只用了orientation.
- *
- * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
- * @fileOverview EXIF解析
- */
-
- // Sample
- // ====================================
- // Make : Apple
- // Model : iPhone 4S
- // Orientation : 1
- // XResolution : 72 [72/1]
- // YResolution : 72 [72/1]
- // ResolutionUnit : 2
- // Software : QuickTime 7.7.1
- // DateTime : 2013:09:01 22:53:55
- // ExifIFDPointer : 190
- // ExposureTime : 0.058823529411764705 [1/17]
- // FNumber : 2.4 [12/5]
- // ExposureProgram : Normal program
- // ISOSpeedRatings : 800
- // ExifVersion : 0220
- // DateTimeOriginal : 2013:09:01 22:52:51
- // DateTimeDigitized : 2013:09:01 22:52:51
- // ComponentsConfiguration : YCbCr
- // ShutterSpeedValue : 4.058893515764426
- // ApertureValue : 2.5260688216892597 [4845/1918]
- // BrightnessValue : -0.3126686601998395
- // MeteringMode : Pattern
- // Flash : Flash did not fire, compulsory flash mode
- // FocalLength : 4.28 [107/25]
- // SubjectArea : [4 values]
- // FlashpixVersion : 0100
- // ColorSpace : 1
- // PixelXDimension : 2448
- // PixelYDimension : 3264
- // SensingMethod : One-chip color area sensor
- // ExposureMode : 0
- // WhiteBalance : Auto white balance
- // FocalLengthIn35mmFilm : 35
- // SceneCaptureType : Standard
- define('runtime/html5/imagemeta/exif',[
- 'base',
- 'runtime/html5/imagemeta'
- ], function( Base, ImageMeta ) {
-
- var EXIF = {};
-
- EXIF.ExifMap = function() {
- return this;
- };
-
- EXIF.ExifMap.prototype.map = {
- 'Orientation': 0x0112
- };
-
- EXIF.ExifMap.prototype.get = function( id ) {
- return this[ id ] || this[ this.map[ id ] ];
- };
-
- EXIF.exifTagTypes = {
- // byte, 8-bit unsigned int:
- 1: {
- getValue: function( dataView, dataOffset ) {
- return dataView.getUint8( dataOffset );
- },
- size: 1
- },
-
- // ascii, 8-bit byte:
- 2: {
- getValue: function( dataView, dataOffset ) {
- return String.fromCharCode( dataView.getUint8( dataOffset ) );
- },
- size: 1,
- ascii: true
- },
-
- // short, 16 bit int:
- 3: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint16( dataOffset, littleEndian );
- },
- size: 2
- },
-
- // long, 32 bit int:
- 4: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // rational = two long values,
- // first is numerator, second is denominator:
- 5: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian ) /
- dataView.getUint32( dataOffset + 4, littleEndian );
- },
- size: 8
- },
-
- // slong, 32 bit signed int:
- 9: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // srational, two slongs, first is numerator, second is denominator:
- 10: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian ) /
- dataView.getInt32( dataOffset + 4, littleEndian );
- },
- size: 8
- }
- };
-
- // undefined, 8-bit byte, value depending on field:
- EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
-
- EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
- littleEndian ) {
-
- var tagType = EXIF.exifTagTypes[ type ],
- tagSize, dataOffset, values, i, str, c;
-
- if ( !tagType ) {
- Base.log('Invalid Exif data: Invalid tag type.');
- return;
- }
-
- tagSize = tagType.size * length;
-
- // Determine if the value is contained in the dataOffset bytes,
- // or if the value at the dataOffset is a pointer to the actual data:
- dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
- littleEndian ) : (offset + 8);
-
- if ( dataOffset + tagSize > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid data offset.');
- return;
- }
-
- if ( length === 1 ) {
- return tagType.getValue( dataView, dataOffset, littleEndian );
- }
-
- values = [];
-
- for ( i = 0; i < length; i += 1 ) {
- values[ i ] = tagType.getValue( dataView,
- dataOffset + i * tagType.size, littleEndian );
- }
-
- if ( tagType.ascii ) {
- str = '';
-
- // Concatenate the chars:
- for ( i = 0; i < values.length; i += 1 ) {
- c = values[ i ];
-
- // Ignore the terminating NULL byte(s):
- if ( c === '\u0000' ) {
- break;
- }
- str += c;
- }
-
- return str;
- }
- return values;
- };
-
- EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
- data ) {
-
- var tag = dataView.getUint16( offset, littleEndian );
- data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
- dataView.getUint16( offset + 2, littleEndian ), // tag type
- dataView.getUint32( offset + 4, littleEndian ), // tag length
- littleEndian );
- };
-
- EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
- littleEndian, data ) {
-
- var tagsNumber, dirEndOffset, i;
-
- if ( dirOffset + 6 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory offset.');
- return;
- }
-
- tagsNumber = dataView.getUint16( dirOffset, littleEndian );
- dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
-
- if ( dirEndOffset + 4 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory size.');
- return;
- }
-
- for ( i = 0; i < tagsNumber; i += 1 ) {
- this.parseExifTag( dataView, tiffOffset,
- dirOffset + 2 + 12 * i, // tag offset
- littleEndian, data );
- }
-
- // Return the offset to the next directory:
- return dataView.getUint32( dirEndOffset, littleEndian );
- };
-
- // EXIF.getExifThumbnail = function(dataView, offset, length) {
- // var hexData,
- // i,
- // b;
- // if (!length || offset + length > dataView.byteLength) {
- // Base.log('Invalid Exif data: Invalid thumbnail data.');
- // return;
- // }
- // hexData = [];
- // for (i = 0; i < length; i += 1) {
- // b = dataView.getUint8(offset + i);
- // hexData.push((b < 16 ? '0' : '') + b.toString(16));
- // }
- // return 'data:image/jpeg,%' + hexData.join('%');
- // };
-
- EXIF.parseExifData = function( dataView, offset, length, data ) {
-
- var tiffOffset = offset + 10,
- littleEndian, dirOffset;
-
- // Check for the ASCII code for "Exif" (0x45786966):
- if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
- // No Exif data, might be XMP data instead
- return;
- }
- if ( tiffOffset + 8 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid segment size.');
- return;
- }
-
- // Check for the two null bytes:
- if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
- Base.log('Invalid Exif data: Missing byte alignment offset.');
- return;
- }
-
- // Check the byte alignment:
- switch ( dataView.getUint16( tiffOffset ) ) {
- case 0x4949:
- littleEndian = true;
- break;
-
- case 0x4D4D:
- littleEndian = false;
- break;
-
- default:
- Base.log('Invalid Exif data: Invalid byte alignment marker.');
- return;
- }
-
- // Check for the TIFF tag marker (0x002A):
- if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
- Base.log('Invalid Exif data: Missing TIFF marker.');
- return;
- }
-
- // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
- dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
- // Create the exif object to store the tags:
- data.exif = new EXIF.ExifMap();
- // Parse the tags of the main image directory and retrieve the
- // offset to the next directory, usually the thumbnail directory:
- dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
- tiffOffset + dirOffset, littleEndian, data );
-
- // 尝试读取缩略图
- // if ( dirOffset ) {
- // thumbnailData = {exif: {}};
- // dirOffset = EXIF.parseExifTags(
- // dataView,
- // tiffOffset,
- // tiffOffset + dirOffset,
- // littleEndian,
- // thumbnailData
- // );
-
- // // Check for JPEG Thumbnail offset:
- // if (thumbnailData.exif[0x0201]) {
- // data.exif.Thumbnail = EXIF.getExifThumbnail(
- // dataView,
- // tiffOffset + thumbnailData.exif[0x0201],
- // thumbnailData.exif[0x0202] // Thumbnail data length
- // );
- // }
- // }
- };
-
- ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
- return EXIF;
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/compbase',[],function() {
+
+ function CompBase( owner, runtime ) {
+
+ this.owner = owner;
+ this.options = owner.options;
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.getRuid = function() {
+ return runtime.uid;
+ };
+
+ this.trigger = function() {
+ return owner.trigger.apply( owner, arguments );
+ };
+ }
+
+ return CompBase;
});
- /**
- * 这个方式性能不行,但是可以解决android里面的toDataUrl的bug
- * android里面toDataUrl('image/jpege')得到的结果却是png.
- *
- * 所以这里没辙,只能借助这个工具
- * @fileOverview jpeg encoder
- */
- define('runtime/html5/jpegencoder',[], function( require, exports, module ) {
-
- /*
- Copyright (c) 2008, Adobe Systems Incorporated
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
- * Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- * Neither the name of Adobe Systems Incorporated nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /*
- JPEG encoder ported to JavaScript and optimized by Andreas Ritter, www.bytestrom.eu, 11/2009
-
- Basic GUI blocking jpeg encoder
- */
-
- function JPEGEncoder(quality) {
- var self = this;
- var fround = Math.round;
- var ffloor = Math.floor;
- var YTable = new Array(64);
- var UVTable = new Array(64);
- var fdtbl_Y = new Array(64);
- var fdtbl_UV = new Array(64);
- var YDC_HT;
- var UVDC_HT;
- var YAC_HT;
- var UVAC_HT;
-
- var bitcode = new Array(65535);
- var category = new Array(65535);
- var outputfDCTQuant = new Array(64);
- var DU = new Array(64);
- var byteout = [];
- var bytenew = 0;
- var bytepos = 7;
-
- var YDU = new Array(64);
- var UDU = new Array(64);
- var VDU = new Array(64);
- var clt = new Array(256);
- var RGB_YUV_TABLE = new Array(2048);
- var currentQuality;
-
- var ZigZag = [
- 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
- ];
-
- var std_dc_luminance_nrcodes = [0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0];
- var std_dc_luminance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
- var std_ac_luminance_nrcodes = [0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d];
- var std_ac_luminance_values = [
- 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,
- 0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,
- 0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08,
- 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,
- 0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,
- 0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28,
- 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,
- 0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,
- 0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,
- 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,
- 0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,
- 0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89,
- 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,
- 0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,
- 0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,
- 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,
- 0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,
- 0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2,
- 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,
- 0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
- 0xf9,0xfa
- ];
-
- var std_dc_chrominance_nrcodes = [0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0];
- var std_dc_chrominance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
- var std_ac_chrominance_nrcodes = [0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77];
- var std_ac_chrominance_values = [
- 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,
- 0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,
- 0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91,
- 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,
- 0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,
- 0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,
- 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,
- 0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,
- 0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,
- 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,
- 0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,
- 0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,
- 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,
- 0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
- 0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,
- 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
- 0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,
- 0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
- 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,
- 0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
- 0xf9,0xfa
- ];
-
- function initQuantTables(sf){
- var YQT = [
- 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
- ];
-
- for (var i = 0; i < 64; i++) {
- var t = ffloor((YQT[i]*sf+50)/100);
- if (t < 1) {
- t = 1;
- } else if (t > 255) {
- t = 255;
- }
- YTable[ZigZag[i]] = t;
- }
- var UVQT = [
- 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
- ];
- for (var j = 0; j < 64; j++) {
- var u = ffloor((UVQT[j]*sf+50)/100);
- if (u < 1) {
- u = 1;
- } else if (u > 255) {
- u = 255;
- }
- UVTable[ZigZag[j]] = u;
- }
- var aasf = [
- 1.0, 1.387039845, 1.306562965, 1.175875602,
- 1.0, 0.785694958, 0.541196100, 0.275899379
- ];
- var k = 0;
- for (var row = 0; row < 8; row++)
- {
- for (var col = 0; col < 8; col++)
- {
- fdtbl_Y[k] = (1.0 / (YTable [ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
- fdtbl_UV[k] = (1.0 / (UVTable[ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
- k++;
- }
- }
- }
-
- function computeHuffmanTbl(nrcodes, std_table){
- var codevalue = 0;
- var pos_in_table = 0;
- var HT = new Array();
- for (var k = 1; k <= 16; k++) {
- for (var j = 1; j <= nrcodes[k]; j++) {
- HT[std_table[pos_in_table]] = [];
- HT[std_table[pos_in_table]][0] = codevalue;
- HT[std_table[pos_in_table]][1] = k;
- pos_in_table++;
- codevalue++;
- }
- codevalue*=2;
- }
- return HT;
- }
-
- function initHuffmanTbl()
- {
- YDC_HT = computeHuffmanTbl(std_dc_luminance_nrcodes,std_dc_luminance_values);
- UVDC_HT = computeHuffmanTbl(std_dc_chrominance_nrcodes,std_dc_chrominance_values);
- YAC_HT = computeHuffmanTbl(std_ac_luminance_nrcodes,std_ac_luminance_values);
- UVAC_HT = computeHuffmanTbl(std_ac_chrominance_nrcodes,std_ac_chrominance_values);
- }
-
- function initCategoryNumber()
- {
- var nrlower = 1;
- var nrupper = 2;
- for (var cat = 1; cat <= 15; cat++) {
- //Positive numbers
- for (var nr = nrlower; nr>0] = 38470 * i;
- RGB_YUV_TABLE[(i+ 512)>>0] = 7471 * i + 0x8000;
- RGB_YUV_TABLE[(i+ 768)>>0] = -11059 * i;
- RGB_YUV_TABLE[(i+1024)>>0] = -21709 * i;
- RGB_YUV_TABLE[(i+1280)>>0] = 32768 * i + 0x807FFF;
- RGB_YUV_TABLE[(i+1536)>>0] = -27439 * i;
- RGB_YUV_TABLE[(i+1792)>>0] = - 5329 * i;
- }
- }
-
- // IO functions
- function writeBits(bs)
- {
- var value = bs[0];
- var posval = bs[1]-1;
- while ( posval >= 0 ) {
- if (value & (1 << posval) ) {
- bytenew |= (1 << bytepos);
- }
- posval--;
- bytepos--;
- if (bytepos < 0) {
- if (bytenew == 0xFF) {
- writeByte(0xFF);
- writeByte(0);
- }
- else {
- writeByte(bytenew);
- }
- bytepos=7;
- bytenew=0;
- }
- }
- }
-
- function writeByte(value)
- {
- byteout.push(clt[value]); // write char directly instead of converting later
- }
-
- function writeWord(value)
- {
- writeByte((value>>8)&0xFF);
- writeByte((value )&0xFF);
- }
-
- // DCT & quantization core
- function fDCTQuant(data, fdtbl)
- {
- var d0, d1, d2, d3, d4, d5, d6, d7;
- /* Pass 1: process rows. */
- var dataOff=0;
- var i;
- var I8 = 8;
- var I64 = 64;
- for (i=0; i 0.0) ? ((fDCTQuant + 0.5)|0) : ((fDCTQuant - 0.5)|0);
- //outputfDCTQuant[i] = fround(fDCTQuant);
-
- }
- return outputfDCTQuant;
- }
-
- function writeAPP0()
- {
- writeWord(0xFFE0); // marker
- writeWord(16); // length
- writeByte(0x4A); // J
- writeByte(0x46); // F
- writeByte(0x49); // I
- writeByte(0x46); // F
- writeByte(0); // = "JFIF",'\0'
- writeByte(1); // versionhi
- writeByte(1); // versionlo
- writeByte(0); // xyunits
- writeWord(1); // xdensity
- writeWord(1); // ydensity
- writeByte(0); // thumbnwidth
- writeByte(0); // thumbnheight
- }
-
- function writeSOF0(width, height)
- {
- writeWord(0xFFC0); // marker
- writeWord(17); // length, truecolor YUV JPG
- writeByte(8); // precision
- writeWord(height);
- writeWord(width);
- writeByte(3); // nrofcomponents
- writeByte(1); // IdY
- writeByte(0x11); // HVY
- writeByte(0); // QTY
- writeByte(2); // IdU
- writeByte(0x11); // HVU
- writeByte(1); // QTU
- writeByte(3); // IdV
- writeByte(0x11); // HVV
- writeByte(1); // QTV
- }
-
- function writeDQT()
- {
- writeWord(0xFFDB); // marker
- writeWord(132); // length
- writeByte(0);
- for (var i=0; i<64; i++) {
- writeByte(YTable[i]);
- }
- writeByte(1);
- for (var j=0; j<64; j++) {
- writeByte(UVTable[j]);
- }
- }
-
- function writeDHT()
- {
- writeWord(0xFFC4); // marker
- writeWord(0x01A2); // length
-
- writeByte(0); // HTYDCinfo
- for (var i=0; i<16; i++) {
- writeByte(std_dc_luminance_nrcodes[i+1]);
- }
- for (var j=0; j<=11; j++) {
- writeByte(std_dc_luminance_values[j]);
- }
-
- writeByte(0x10); // HTYACinfo
- for (var k=0; k<16; k++) {
- writeByte(std_ac_luminance_nrcodes[k+1]);
- }
- for (var l=0; l<=161; l++) {
- writeByte(std_ac_luminance_values[l]);
- }
-
- writeByte(1); // HTUDCinfo
- for (var m=0; m<16; m++) {
- writeByte(std_dc_chrominance_nrcodes[m+1]);
- }
- for (var n=0; n<=11; n++) {
- writeByte(std_dc_chrominance_values[n]);
- }
-
- writeByte(0x11); // HTUACinfo
- for (var o=0; o<16; o++) {
- writeByte(std_ac_chrominance_nrcodes[o+1]);
- }
- for (var p=0; p<=161; p++) {
- writeByte(std_ac_chrominance_values[p]);
- }
- }
-
- function writeSOS()
- {
- writeWord(0xFFDA); // marker
- writeWord(12); // length
- writeByte(3); // nrofcomponents
- writeByte(1); // IdY
- writeByte(0); // HTY
- writeByte(2); // IdU
- writeByte(0x11); // HTU
- writeByte(3); // IdV
- writeByte(0x11); // HTV
- writeByte(0); // Ss
- writeByte(0x3f); // Se
- writeByte(0); // Bf
- }
-
- function processDU(CDU, fdtbl, DC, HTDC, HTAC){
- var EOB = HTAC[0x00];
- var M16zeroes = HTAC[0xF0];
- var pos;
- var I16 = 16;
- var I63 = 63;
- var I64 = 64;
- var DU_DCT = fDCTQuant(CDU, fdtbl);
- //ZigZag reorder
- for (var j=0;j0)&&(DU[end0pos]==0); end0pos--) {};
- //end0pos = first element in reverse order !=0
- if ( end0pos == 0) {
- writeBits(EOB);
- return DC;
- }
- var i = 1;
- var lng;
- while ( i <= end0pos ) {
- var startpos = i;
- for (; (DU[i]==0) && (i<=end0pos); ++i) {}
- var nrzeroes = i-startpos;
- if ( nrzeroes >= I16 ) {
- lng = nrzeroes>>4;
- for (var nrmarker=1; nrmarker <= lng; ++nrmarker)
- writeBits(M16zeroes);
- nrzeroes = nrzeroes&0xF;
- }
- pos = 32767+DU[i];
- writeBits(HTAC[(nrzeroes<<4)+category[pos]]);
- writeBits(bitcode[pos]);
- i++;
- }
- if ( end0pos != I63 ) {
- writeBits(EOB);
- }
- return DC;
- }
-
- function initCharLookupTable(){
- var sfcc = String.fromCharCode;
- for(var i=0; i < 256; i++){ ///// ACHTUNG // 255
- clt[i] = sfcc(i);
- }
- }
-
- this.encode = function(image,quality) // image data object
- {
- // var time_start = new Date().getTime();
-
- if(quality) setQuality(quality);
-
- // Initialize bit writer
- byteout = new Array();
- bytenew=0;
- bytepos=7;
-
- // Add JPEG headers
- writeWord(0xFFD8); // SOI
- writeAPP0();
- writeDQT();
- writeSOF0(image.width,image.height);
- writeDHT();
- writeSOS();
-
-
- // Encode 8x8 macroblocks
- var DCY=0;
- var DCU=0;
- var DCV=0;
-
- bytenew=0;
- bytepos=7;
-
-
- this.encode.displayName = "_encode_";
-
- var imageData = image.data;
- var width = image.width;
- var height = image.height;
-
- var quadWidth = width*4;
- var tripleWidth = width*3;
-
- var x, y = 0;
- var r, g, b;
- var start,p, col,row,pos;
- while(y < height){
- x = 0;
- while(x < quadWidth){
- start = quadWidth * y + x;
- p = start;
- col = -1;
- row = 0;
-
- for(pos=0; pos < 64; pos++){
- row = pos >> 3;// /8
- col = ( pos & 7 ) * 4; // %8
- p = start + ( row * quadWidth ) + col;
-
- if(y+row >= height){ // padding bottom
- p-= (quadWidth*(y+1+row-height));
- }
-
- if(x+col >= quadWidth){ // padding right
- p-= ((x+col) - quadWidth +4)
- }
-
- r = imageData[ p++ ];
- g = imageData[ p++ ];
- b = imageData[ p++ ];
-
-
- /* // calculate YUV values dynamically
- YDU[pos]=((( 0.29900)*r+( 0.58700)*g+( 0.11400)*b))-128; //-0x80
- UDU[pos]=(((-0.16874)*r+(-0.33126)*g+( 0.50000)*b));
- VDU[pos]=((( 0.50000)*r+(-0.41869)*g+(-0.08131)*b));
- */
-
- // use lookup table (slightly faster)
- YDU[pos] = ((RGB_YUV_TABLE[r] + RGB_YUV_TABLE[(g + 256)>>0] + RGB_YUV_TABLE[(b + 512)>>0]) >> 16)-128;
- UDU[pos] = ((RGB_YUV_TABLE[(r + 768)>>0] + RGB_YUV_TABLE[(g + 1024)>>0] + RGB_YUV_TABLE[(b + 1280)>>0]) >> 16)-128;
- VDU[pos] = ((RGB_YUV_TABLE[(r + 1280)>>0] + RGB_YUV_TABLE[(g + 1536)>>0] + RGB_YUV_TABLE[(b + 1792)>>0]) >> 16)-128;
-
- }
-
- DCY = processDU(YDU, fdtbl_Y, DCY, YDC_HT, YAC_HT);
- DCU = processDU(UDU, fdtbl_UV, DCU, UVDC_HT, UVAC_HT);
- DCV = processDU(VDU, fdtbl_UV, DCV, UVDC_HT, UVAC_HT);
- x+=32;
- }
- y+=8;
- }
-
-
- ////////////////////////////////////////////////////////////////
-
- // Do the bit alignment of the EOI marker
- if ( bytepos >= 0 ) {
- var fillbits = [];
- fillbits[1] = bytepos+1;
- fillbits[0] = (1<<(bytepos+1))-1;
- writeBits(fillbits);
- }
-
- writeWord(0xFFD9); //EOI
-
- var jpegDataUri = 'data:image/jpeg;base64,' + btoa(byteout.join(''));
-
- byteout = [];
-
- // benchmarking
- // var duration = new Date().getTime() - time_start;
- // console.log('Encoding time: '+ currentQuality + 'ms');
- //
-
- return jpegDataUri
- }
-
- function setQuality(quality){
- if (quality <= 0) {
- quality = 1;
- }
- if (quality > 100) {
- quality = 100;
- }
-
- if(currentQuality == quality) return // don't recalc if unchanged
-
- var sf = 0;
- if (quality < 50) {
- sf = Math.floor(5000 / quality);
- } else {
- sf = Math.floor(200 - quality*2);
- }
-
- initQuantTables(sf);
- currentQuality = quality;
- // console.log('Quality set to: '+quality +'%');
- }
-
- function init(){
- // var time_start = new Date().getTime();
- if(!quality) quality = 50;
- // Create tables
- initCharLookupTable()
- initHuffmanTbl();
- initCategoryNumber();
- initRGBYUVTable();
-
- setQuality(quality);
- // var duration = new Date().getTime() - time_start;
- // console.log('Initialization '+ duration + 'ms');
- }
-
- init();
-
- };
-
- JPEGEncoder.encode = function( data, quality ) {
- var encoder = new JPEGEncoder( quality );
-
- return encoder.encode( data );
- }
-
- return JPEGEncoder;
+ /**
+ * @fileOverview Html5Runtime
+ */
+ define('runtime/html5/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var type = 'html5',
+ components = {};
+
+ function Html5Runtime() {
+ var pool = {},
+ me = this,
+ destroy = this.destroy;
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ if ( components[ comp ] ) {
+ instance = pool[ uid ] = pool[ uid ] ||
+ new components[ comp ]( client, me );
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+ };
+
+ me.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+ }
+
+ Base.inherits( Runtime, {
+ constructor: Html5Runtime,
+
+ // 不需要连接其他程序,直接执行callback
+ init: function() {
+ var me = this;
+ setTimeout(function() {
+ me.trigger('ready');
+ }, 1 );
+ }
+
+ });
+
+ // 注册Components
+ Html5Runtime.register = function( name, component ) {
+ var klass = components[ name ] = Base.inherits( CompBase, component );
+ return klass;
+ };
+
+ // 注册html5运行时。
+ // 只有在支持的前提下注册。
+ if ( window.Blob && window.FileReader && window.DataView ) {
+ Runtime.addRuntime( type, Html5Runtime );
+ }
+
+ return Html5Runtime;
});
- /**
- * @fileOverview Fix android canvas.toDataUrl bug.
- */
- define('runtime/html5/androidpatch',[
- 'runtime/html5/util',
- 'runtime/html5/jpegencoder',
- 'base'
- ], function( Util, encoder, Base ) {
- var origin = Util.canvasToDataUrl,
- supportJpeg;
-
- Util.canvasToDataUrl = function( canvas, type, quality ) {
- var ctx, w, h, fragement, parts;
-
- // 非android手机直接跳过。
- if ( !Base.os.android ) {
- return origin.apply( null, arguments );
- }
-
- // 检测是否canvas支持jpeg导出,根据数据格式来判断。
- // JPEG 前两位分别是:255, 216
- if ( type === 'image/jpeg' && typeof supportJpeg === 'undefined' ) {
- fragement = origin.apply( null, arguments );
-
- parts = fragement.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- fragement = atob( parts[ 1 ] );
- } else {
- fragement = decodeURIComponent( parts[ 1 ] );
- }
-
- fragement = fragement.substring( 0, 2 );
-
- supportJpeg = fragement.charCodeAt( 0 ) === 255 &&
- fragement.charCodeAt( 1 ) === 216;
- }
-
- // 只有在android环境下才修复
- if ( type === 'image/jpeg' && !supportJpeg ) {
- w = canvas.width;
- h = canvas.height;
- ctx = canvas.getContext('2d');
-
- return encoder.encode( ctx.getImageData( 0, 0, w, h ), quality );
- }
-
- return origin.apply( null, arguments );
- };
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/html5/blob',[
+ 'runtime/html5/runtime',
+ 'lib/blob'
+ ], function( Html5Runtime, Blob ) {
+
+ return Html5Runtime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.owner.source,
+ slice = blob.slice || blob.webkitSlice || blob.mozSlice;
+
+ blob = slice.call( blob, start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
});
- /**
- * @fileOverview Image
- */
- define('runtime/html5/image',[
- 'base',
- 'runtime/html5/runtime',
- 'runtime/html5/util'
- ], function( Base, Html5Runtime, Util ) {
-
- var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
-
- return Html5Runtime.register( 'Image', {
-
- // flag: 标记是否被修改过。
- modified: false,
-
- init: function() {
- var me = this,
- img = new Image();
-
- img.onload = function() {
-
- me._info = {
- type: me.type,
- width: this.width,
- height: this.height
- };
-
- //debugger;
-
- // 读取meta信息。
- if ( !me._metas && 'image/jpeg' === me.type ) {
- Util.parseMeta( me._blob, function( error, ret ) {
- me._metas = ret;
- me.owner.trigger('load');
- });
- } else {
- me.owner.trigger('load');
- }
- };
-
- img.onerror = function() {
- me.owner.trigger('error');
- };
-
- me._img = img;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- img = me._img;
-
- me._blob = blob;
- me.type = blob.type;
- img.src = Util.createObjectURL( blob.getSource() );
- me.owner.once( 'load', function() {
- Util.revokeObjectURL( img.src );
- });
- },
-
- resize: function( width, height ) {
- var canvas = this._canvas ||
- (this._canvas = document.createElement('canvas'));
-
- this._resize( this._img, canvas, width, height );
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'resize' );
- },
-
- crop: function( x, y, w, h, s ) {
- var cvs = this._canvas ||
- (this._canvas = document.createElement('canvas')),
- opts = this.options,
- img = this._img,
- iw = img.naturalWidth,
- ih = img.naturalHeight,
- orientation = this.getOrientation();
-
- s = s || 1;
-
- // todo 解决 orientation 的问题。
- // values that require 90 degree rotation
- // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // switch ( orientation ) {
- // case 6:
- // tmp = x;
- // x = y;
- // y = iw * s - tmp - w;
- // console.log(ih * s, tmp, w)
- // break;
- // }
-
- // (w ^= h, h ^= w, w ^= h);
- // }
-
- cvs.width = w;
- cvs.height = h;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
- this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
-
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'crop' );
- },
-
- getAsBlob: function( type ) {
- var blob = this._blob,
- opts = this.options,
- canvas;
-
- type = type || this.type;
-
- // blob需要重新生成。
- if ( this.modified || this.type !== type ) {
- canvas = this._canvas;
-
- if ( type === 'image/jpeg' ) {
-
- blob = Util.canvasToDataUrl( canvas, type, opts.quality );
-
- if ( opts.preserveHeaders && this._metas &&
- this._metas.imageHead ) {
-
- blob = Util.dataURL2ArrayBuffer( blob );
- blob = Util.updateImageHead( blob,
- this._metas.imageHead );
- blob = Util.arrayBufferToBlob( blob, type );
- return blob;
- }
- } else {
- blob = Util.canvasToDataUrl( canvas, type );
- }
-
- blob = Util.dataURL2Blob( blob );
- }
-
- return blob;
- },
-
- getAsDataUrl: function( type ) {
- var opts = this.options;
-
- type = type || this.type;
-
- if ( type === 'image/jpeg' ) {
- return Util.canvasToDataUrl( this._canvas, type, opts.quality );
- } else {
- return this._canvas.toDataURL( type );
- }
- },
-
- getOrientation: function() {
- return this._metas && this._metas.exif &&
- this._metas.exif.get('Orientation') || 1;
- },
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._metas = val;
- return this;
- }
-
- // getter
- return this._metas;
- },
-
- destroy: function() {
- var canvas = this._canvas;
- this._img.onload = null;
-
- if ( canvas ) {
- canvas.getContext('2d')
- .clearRect( 0, 0, canvas.width, canvas.height );
- canvas.width = canvas.height = 0;
- this._canvas = null;
- }
-
- // 释放内存。非常重要,否则释放不了image的内存。
- this._img.src = BLANK;
- this._img = this._blob = null;
- },
-
- _resize: function( img, cvs, width, height ) {
- var opts = this.options,
- naturalWidth = img.width,
- naturalHeight = img.height,
- orientation = this.getOrientation(),
- scale, w, h, x, y;
-
- // values that require 90 degree rotation
- if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // 交换width, height的值。
- width ^= height;
- height ^= width;
- width ^= height;
- }
-
- scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
- height / naturalHeight );
-
- // 不允许放大。
- opts.allowMagnify || (scale = Math.min( 1, scale ));
-
- w = naturalWidth * scale;
- h = naturalHeight * scale;
-
- if ( opts.crop ) {
- cvs.width = width;
- cvs.height = height;
- } else {
- cvs.width = w;
- cvs.height = h;
- }
-
- x = (cvs.width - w) / 2;
- y = (cvs.height - h) / 2;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
-
- this._renderImageToCanvas( cvs, img, x, y, w, h );
- },
-
- _rotate2Orientaion: function( canvas, orientation ) {
- var width = canvas.width,
- height = canvas.height,
- ctx = canvas.getContext('2d');
-
- switch ( orientation ) {
- case 5:
- case 6:
- case 7:
- case 8:
- canvas.width = height;
- canvas.height = width;
- break;
- }
-
- switch ( orientation ) {
- case 2: // horizontal flip
- ctx.translate( width, 0 );
- ctx.scale( -1, 1 );
- break;
-
- case 3: // 180 rotate left
- ctx.translate( width, height );
- ctx.rotate( Math.PI );
- break;
-
- case 4: // vertical flip
- ctx.translate( 0, height );
- ctx.scale( 1, -1 );
- break;
-
- case 5: // vertical flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.scale( 1, -1 );
- break;
-
- case 6: // 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( 0, -height );
- break;
-
- case 7: // horizontal flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( width, -height );
- ctx.scale( -1, 1 );
- break;
-
- case 8: // 90 rotate left
- ctx.rotate( -0.5 * Math.PI );
- ctx.translate( -width, 0 );
- break;
- }
- },
-
- // https://github.com/stomita/ios-imagefile-megapixel/
- // blob/master/src/megapix-image.js
- _renderImageToCanvas: (function() {
-
- // 如果不是ios, 不需要这么复杂!
- if ( !Base.os.ios ) {
- return function( canvas ) {
- var args = Base.slice( arguments, 1 ),
- ctx = canvas.getContext('2d');
-
- ctx.drawImage.apply( ctx, args );
- };
- }
-
- /**
- * Detecting vertical squash in loaded image.
- * Fixes a bug which squash image vertically while drawing into
- * canvas for some images.
- */
- function detectVerticalSquash( img, iw, ih ) {
- var canvas = document.createElement('canvas'),
- ctx = canvas.getContext('2d'),
- sy = 0,
- ey = ih,
- py = ih,
- data, alpha, ratio;
-
-
- canvas.width = 1;
- canvas.height = ih;
- ctx.drawImage( img, 0, 0 );
- data = ctx.getImageData( 0, 0, 1, ih ).data;
-
- // search image edge pixel position in case
- // it is squashed vertically.
- while ( py > sy ) {
- alpha = data[ (py - 1) * 4 + 3 ];
-
- if ( alpha === 0 ) {
- ey = py;
- } else {
- sy = py;
- }
-
- py = (ey + sy) >> 1;
- }
-
- ratio = (py / ih);
- return (ratio === 0) ? 1 : ratio;
- }
-
- // fix ie7 bug
- // http://stackoverflow.com/questions/11929099/
- // html5-canvas-drawimage-ratio-bug-ios
- if ( Base.os.ios >= 7 ) {
- return function( canvas, img, x, y, w, h ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- vertSquashRatio = detectVerticalSquash( img, iw, ih );
-
- return canvas.getContext('2d').drawImage( img, 0, 0,
- iw * vertSquashRatio, ih * vertSquashRatio,
- x, y, w, h );
- };
- }
-
- /**
- * Detect subsampling in loaded image.
- * In iOS, larger images than 2M pixels may be
- * subsampled in rendering.
- */
- function detectSubsampling( img ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- canvas, ctx;
-
- // subsampling may happen overmegapixel image
- if ( iw * ih > 1024 * 1024 ) {
- canvas = document.createElement('canvas');
- canvas.width = canvas.height = 1;
- ctx = canvas.getContext('2d');
- ctx.drawImage( img, -iw + 1, 0 );
-
- // subsampled image becomes half smaller in rendering size.
- // check alpha channel value to confirm image is covering
- // edge pixel or not. if alpha value is 0
- // image is not covering, hence subsampled.
- return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
- } else {
- return false;
- }
- }
-
-
- return function( canvas, img, x, y, width, height ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- ctx = canvas.getContext('2d'),
- subsampled = detectSubsampling( img ),
- doSquash = this.type === 'image/jpeg',
- d = 1024,
- sy = 0,
- dy = 0,
- tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
-
- if ( subsampled ) {
- iw /= 2;
- ih /= 2;
- }
-
- ctx.save();
- tmpCanvas = document.createElement('canvas');
- tmpCanvas.width = tmpCanvas.height = d;
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/dnd',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ var $ = Base.$,
+ prefix = 'webuploader-dnd-';
+
+ return Html5Runtime.register( 'DragAndDrop', {
+ init: function() {
+ var elem = this.elem = this.options.container;
+
+ this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
+ this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
+ this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
+ this.dropHandler = Base.bindFn( this._dropHandler, this );
+ this.dndOver = false;
+
+ elem.on( 'dragenter', this.dragEnterHandler );
+ elem.on( 'dragover', this.dragOverHandler );
+ elem.on( 'dragleave', this.dragLeaveHandler );
+ elem.on( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).on( 'dragover', this.dragOverHandler );
+ $( document ).on( 'drop', this.dropHandler );
+ }
+ },
+
+ _dragEnterHandler: function( e ) {
+ var me = this,
+ denied = me._denied || false,
+ items;
+
+ e = e.originalEvent || e;
+
+ if ( !me.dndOver ) {
+ me.dndOver = true;
+
+ // 注意只有 chrome 支持。
+ items = e.dataTransfer.items;
+
+ if ( items && items.length ) {
+ me._denied = denied = !me.trigger( 'accept', items );
+ }
+
+ me.elem.addClass( prefix + 'over' );
+ me.elem[ denied ? 'addClass' :
+ 'removeClass' ]( prefix + 'denied' );
+ }
+
+ e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+
+ return false;
+ },
+
+ _dragOverHandler: function( e ) {
+ // 只处理框内的。
+ var parentElem = this.elem.parent().get( 0 );
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ clearTimeout( this._leaveTimer );
+ this._dragEnterHandler.call( this, e );
+
+ return false;
+ },
+
+ _dragLeaveHandler: function() {
+ var me = this,
+ handler;
+
+ handler = function() {
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
+ };
+
+ clearTimeout( me._leaveTimer );
+ me._leaveTimer = setTimeout( handler, 100 );
+ return false;
+ },
+
+ _dropHandler: function( e ) {
+ var me = this,
+ ruid = me.getRuid(),
+ parentElem = me.elem.parent().get( 0 ),
+ dataTransfer, data;
+
+ // 只处理框内的。
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ e = e.originalEvent || e;
+ dataTransfer = e.dataTransfer;
+
+ // 如果是页面内拖拽,还不能处理,不阻止事件。
+ // 此处 ie11 下会报参数错误,
+ try {
+ data = dataTransfer.getData('text/html');
+ } catch( err ) {
+ }
+
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over' );
+
+ if ( !dataTransfer || data ) {
+ return;
+ }
+
+ me._getTansferFiles( dataTransfer, function( results ) {
+ me.trigger( 'drop', $.map( results, function( file ) {
+ return new File( ruid, file );
+ }) );
+ });
+
+ return false;
+ },
+
+ // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
+ _getTansferFiles: function( dataTransfer, callback ) {
+ var results = [],
+ promises = [],
+ items, files, file, item, i, len, canAccessFolder;
+
+ items = dataTransfer.items;
+ files = dataTransfer.files;
+
+ canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+
+ for ( i = 0, len = files.length; i < len; i++ ) {
+ file = files[ i ];
+ item = items && items[ i ];
+
+ if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+
+ promises.push( this._traverseDirectoryTree(
+ item.webkitGetAsEntry(), results ) );
+ } else {
+ results.push( file );
+ }
+ }
+
+ Base.when.apply( Base, promises ).done(function() {
+
+ if ( !results.length ) {
+ return;
+ }
+
+ callback( results );
+ });
+ },
+
+ _traverseDirectoryTree: function( entry, results ) {
+ var deferred = Base.Deferred(),
+ me = this;
+
+ if ( entry.isFile ) {
+ entry.file(function( file ) {
+ results.push( file );
+ deferred.resolve();
+ });
+ } else if ( entry.isDirectory ) {
+ entry.createReader().readEntries(function( entries ) {
+ var len = entries.length,
+ promises = [],
+ arr = [], // 为了保证顺序。
+ i;
+
+ for ( i = 0; i < len; i++ ) {
+ promises.push( me._traverseDirectoryTree(
+ entries[ i ], arr ) );
+ }
+
+ Base.when.apply( Base, promises ).then(function() {
+ results.push.apply( results, arr );
+ deferred.resolve();
+ }, deferred.reject );
+ });
+ }
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ var elem = this.elem;
+
+ // 还没 init 就调用 destroy
+ if (!elem) {
+ return;
+ }
+
+ elem.off( 'dragenter', this.dragEnterHandler );
+ elem.off( 'dragover', this.dragOverHandler );
+ elem.off( 'dragleave', this.dragLeaveHandler );
+ elem.off( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).off( 'dragover', this.dragOverHandler );
+ $( document ).off( 'drop', this.dropHandler );
+ }
+ }
+ });
+ });
- tmpCtx = tmpCanvas.getContext('2d');
- vertSquashRatio = doSquash ?
- detectVerticalSquash( img, iw, ih ) : 1;
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/filepaste',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ return Html5Runtime.register( 'FilePaste', {
+ init: function() {
+ var opts = this.options,
+ elem = this.elem = opts.container,
+ accept = '.*',
+ arr, i, len, item;
+
+ // accetp的mimeTypes中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].mimeTypes;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = arr.join(',');
+ accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
+ }
+ }
+ this.accept = accept = new RegExp( accept, 'i' );
+ this.hander = Base.bindFn( this._pasteHander, this );
+ elem.on( 'paste', this.hander );
+ },
+
+ _pasteHander: function( e ) {
+ var allowed = [],
+ ruid = this.getRuid(),
+ items, item, blob, i, len;
+
+ e = e.originalEvent || e;
+ items = e.clipboardData.items;
+
+ for ( i = 0, len = items.length; i < len; i++ ) {
+ item = items[ i ];
+
+ if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
+ continue;
+ }
+
+ allowed.push( new File( ruid, blob ) );
+ }
+
+ if ( allowed.length ) {
+ // 不阻止非文件粘贴(文字粘贴)的事件冒泡
+ e.preventDefault();
+ e.stopPropagation();
+ this.trigger( 'paste', allowed );
+ }
+ },
+
+ destroy: function() {
+ this.elem.off( 'paste', this.hander );
+ }
+ });
+ });
- dw = Math.ceil( d * width / iw );
- dh = Math.ceil( d * height / ih / vertSquashRatio );
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/html5/filepicker',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var $ = Base.$;
+
+ return Html5Runtime.register( 'FilePicker', {
+ init: function() {
+ var container = this.getRuntime().getContainer(),
+ me = this,
+ owner = me.owner,
+ opts = me.options,
+ label = this.label = $( document.createElement('label') ),
+ input = this.input = $( document.createElement('input') ),
+ arr, i, len, mouseHandler, changeHandler;
+
+ input.attr( 'type', 'file' );
+ // input.attr( 'capture', 'camera');
+ input.attr( 'name', opts.name );
+ input.addClass('webuploader-element-invisible');
+
+ label.on( 'click', function(e) {
+ input.trigger('click');
+ e.stopPropagation();
+ owner.trigger('dialogopen');
+ });
+
+ label.css({
+ opacity: 0,
+ width: '100%',
+ height: '100%',
+ display: 'block',
+ cursor: 'pointer',
+ background: '#ffffff'
+ });
+
+ if ( opts.multiple ) {
+ input.attr( 'multiple', 'multiple' );
+ }
+
+ // @todo Firefox不支持单独指定后缀
+ if ( opts.accept && opts.accept.length > 0 ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ arr.push( opts.accept[ i ].mimeTypes );
+ }
+
+ input.attr( 'accept', arr.join(',') );
+ }
+
+ container.append( input );
+ container.append( label );
+
+ mouseHandler = function( e ) {
+ owner.trigger( e.type );
+ };
+
+ changeHandler = function( e ) {
+ var clone;
+
+ // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
+ if (e.target.files.length === 0){
+ return false;
+ }
+
+ // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
+ me.files = e.target.files;
+
+
+ // reset input
+ clone = this.cloneNode( true );
+ clone.value = null;
+ this.parentNode.replaceChild( clone, this );
+
+ input.off();
+ input = $( clone ).on( 'change', changeHandler )
+ .on( 'mouseenter mouseleave', mouseHandler );
+
+ owner.trigger('change');
+ }
+ input.on( 'change', changeHandler);
+ label.on( 'mouseenter mouseleave', mouseHandler );
+
+ },
+
+
+ getFiles: function() {
+ return this.files;
+ },
+
+ destroy: function() {
+ this.input.off();
+ this.label.off();
+ }
+ });
+ });
- while ( sy < ih ) {
- sx = 0;
- dx = 0;
- while ( sx < iw ) {
- tmpCtx.clearRect( 0, 0, d, d );
- tmpCtx.drawImage( img, -sx, -sy );
- ctx.drawImage( tmpCanvas, 0, 0, d, d,
- x + dx, y + dy, dw, dh );
- sx += d;
- dx += dw;
- }
- sy += d;
- dy += dh;
- }
- ctx.restore();
- tmpCanvas = tmpCtx = null;
- };
- })()
- });
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/util',[
+ 'base'
+ ], function( Base ) {
+
+ var urlAPI = window.createObjectURL && window ||
+ window.URL && URL.revokeObjectURL && URL ||
+ window.webkitURL,
+ createObjectURL = Base.noop,
+ revokeObjectURL = createObjectURL;
+
+ if ( urlAPI ) {
+
+ // 更安全的方式调用,比如android里面就能把context改成其他的对象。
+ createObjectURL = function() {
+ return urlAPI.createObjectURL.apply( urlAPI, arguments );
+ };
+
+ revokeObjectURL = function() {
+ return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
+ };
+ }
+
+ return {
+ createObjectURL: createObjectURL,
+ revokeObjectURL: revokeObjectURL,
+
+ dataURL2Blob: function( dataURI ) {
+ var byteStr, intArray, ab, i, mimetype, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ ab = new ArrayBuffer( byteStr.length );
+ intArray = new Uint8Array( ab );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
+
+ return this.arrayBufferToBlob( ab, mimetype );
+ },
+
+ dataURL2ArrayBuffer: function( dataURI ) {
+ var byteStr, intArray, i, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ intArray = new Uint8Array( byteStr.length );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ return intArray.buffer;
+ },
+
+ arrayBufferToBlob: function( buffer, type ) {
+ var builder = window.BlobBuilder || window.WebKitBlobBuilder,
+ bb;
+
+ // android不支持直接new Blob, 只能借助blobbuilder.
+ if ( builder ) {
+ bb = new builder();
+ bb.append( buffer );
+ return bb.getBlob( type );
+ }
+
+ return new Blob([ buffer ], type ? { type: type } : {} );
+ },
+
+ // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
+ // 你得到的结果是png.
+ canvasToDataUrl: function( canvas, type, quality ) {
+ return canvas.toDataURL( type, quality / 100 );
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ parseMeta: function( blob, callback ) {
+ callback( false, {});
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ updateImageHead: function( data ) {
+ return data;
+ }
+ };
+ });
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/imagemeta',[
+ 'runtime/html5/util'
+ ], function( Util ) {
+
+ var api;
+
+ api = {
+ parsers: {
+ 0xffe1: []
+ },
+
+ maxMetaDataSize: 262144,
+
+ parse: function( blob, cb ) {
+ var me = this,
+ fr = new FileReader();
+
+ fr.onload = function() {
+ cb( false, me._parse( this.result ) );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ fr.onerror = function( e ) {
+ cb( e.message );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ blob = blob.slice( 0, me.maxMetaDataSize );
+ fr.readAsArrayBuffer( blob.getSource() );
+ },
+
+ _parse: function( buffer, noParse ) {
+ if ( buffer.byteLength < 6 ) {
+ return;
+ }
+
+ var dataview = new DataView( buffer ),
+ offset = 2,
+ maxOffset = dataview.byteLength - 4,
+ headLength = offset,
+ ret = {},
+ markerBytes, markerLength, parsers, i;
+
+ if ( dataview.getUint16( 0 ) === 0xffd8 ) {
+
+ while ( offset < maxOffset ) {
+ markerBytes = dataview.getUint16( offset );
+
+ if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
+ markerBytes === 0xfffe ) {
+
+ markerLength = dataview.getUint16( offset + 2 ) + 2;
+
+ if ( offset + markerLength > dataview.byteLength ) {
+ break;
+ }
+
+ parsers = api.parsers[ markerBytes ];
+
+ if ( !noParse && parsers ) {
+ for ( i = 0; i < parsers.length; i += 1 ) {
+ parsers[ i ].call( api, dataview, offset,
+ markerLength, ret );
+ }
+ }
+
+ offset += markerLength;
+ headLength = offset;
+ } else {
+ break;
+ }
+ }
+
+ if ( headLength > 6 ) {
+ if ( buffer.slice ) {
+ ret.imageHead = buffer.slice( 2, headLength );
+ } else {
+ // Workaround for IE10, which does not yet
+ // support ArrayBuffer.slice:
+ ret.imageHead = new Uint8Array( buffer )
+ .subarray( 2, headLength );
+ }
+ }
+ }
+
+ return ret;
+ },
+
+ updateImageHead: function( buffer, head ) {
+ var data = this._parse( buffer, true ),
+ buf1, buf2, bodyoffset;
+
+
+ bodyoffset = 2;
+ if ( data.imageHead ) {
+ bodyoffset = 2 + data.imageHead.byteLength;
+ }
+
+ if ( buffer.slice ) {
+ buf2 = buffer.slice( bodyoffset );
+ } else {
+ buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
+ }
+
+ buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
+
+ buf1[ 0 ] = 0xFF;
+ buf1[ 1 ] = 0xD8;
+ buf1.set( new Uint8Array( head ), 2 );
+ buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
+
+ return buf1.buffer;
+ }
+ };
+
+ Util.parseMeta = function() {
+ return api.parse.apply( api, arguments );
+ };
+
+ Util.updateImageHead = function() {
+ return api.updateImageHead.apply( api, arguments );
+ };
+
+ return api;
});
-
- /**
- * @fileOverview Transport
- * @todo 支持chunked传输,优势:
- * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
- * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
- */
- define('runtime/html5/transport',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
-
- var noop = Base.noop,
- $ = Base.$;
-
- return Html5Runtime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- formData, binary, fr;
-
- if ( opts.sendAsBinary ) {
- server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData )) : '';
-
- binary = blob.getSource();
- } else {
- formData = new FormData();
- $.each( owner._formData, function( k, v ) {
- formData.append( k, v );
- });
-
- formData.append( opts.fileVal, blob.getSource(),
- opts.filename || owner._formData.name || '' );
- }
-
- if ( opts.withCredentials && 'withCredentials' in xhr ) {
- xhr.open( opts.method, server, true );
- xhr.withCredentials = true;
- } else {
- xhr.open( opts.method, server );
- }
-
- this._setRequestHeader( xhr, opts.headers );
-
- if ( binary ) {
- // 强制设置成 content-type 为文件流。
- xhr.overrideMimeType &&
- xhr.overrideMimeType('application/octet-stream');
-
- // android直接发送blob会导致服务端接收到的是空文件。
- // bug详情。
- // https://code.google.com/p/android/issues/detail?id=39882
- // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
- if ( Base.os.android ) {
- fr = new FileReader();
-
- fr.onload = function() {
- xhr.send( this.result );
- fr = fr.onload = null;
- };
-
- fr.readAsArrayBuffer( binary );
- } else {
- xhr.send( binary );
- }
- } else {
- xhr.send( formData );
- }
- },
-
- getResponse: function() {
- return this._response;
- },
-
- getResponseAsJson: function() {
- return this._parseJson( this._response );
- },
-
- getResponseHeaders: function() {
- return this._headers;
- },
-
- getStatus: function() {
- return this._status;
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- xhr.abort();
-
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _parseHeader: function(raw) {
- var ret = {};
-
- raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
- ret[key.trim()] = value.trim();
- });
-
- return ret;
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new XMLHttpRequest(),
- opts = this.options;
-
- if ( opts.withCredentials && !('withCredentials' in xhr) &&
- typeof XDomainRequest !== 'undefined' ) {
- xhr = new XDomainRequest();
- }
-
- xhr.upload.onprogress = function( e ) {
- var percentage = 0;
-
- if ( e.lengthComputable ) {
- percentage = e.loaded / e.total;
- }
-
- return me.trigger( 'progress', percentage );
- };
-
- xhr.onreadystatechange = function() {
-
- if ( xhr.readyState !== 4 ) {
- return;
- }
-
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- me._xhr = null;
- me._status = xhr.status;
-
- var separator = '|', // 分隔符
- // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
- status = separator + xhr.status +
- separator + xhr.statusText;
-
- if ( xhr.status >= 200 && xhr.status < 300 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger('load');
- } else if ( xhr.status >= 500 && xhr.status < 600 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger( 'error', 'server' + status );
- }
-
-
- return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
- };
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.setRequestHeader( key, val );
- });
- },
-
- _parseJson: function( str ) {
- var json;
-
- try {
- json = JSON.parse( str );
- } catch ( ex ) {
- json = {};
- }
-
- return json;
- }
- });
+ /**
+ * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
+ * 暂时项目中只用了orientation.
+ *
+ * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
+ * @fileOverview EXIF解析
+ */
+
+ // Sample
+ // ====================================
+ // Make : Apple
+ // Model : iPhone 4S
+ // Orientation : 1
+ // XResolution : 72 [72/1]
+ // YResolution : 72 [72/1]
+ // ResolutionUnit : 2
+ // Software : QuickTime 7.7.1
+ // DateTime : 2013:09:01 22:53:55
+ // ExifIFDPointer : 190
+ // ExposureTime : 0.058823529411764705 [1/17]
+ // FNumber : 2.4 [12/5]
+ // ExposureProgram : Normal program
+ // ISOSpeedRatings : 800
+ // ExifVersion : 0220
+ // DateTimeOriginal : 2013:09:01 22:52:51
+ // DateTimeDigitized : 2013:09:01 22:52:51
+ // ComponentsConfiguration : YCbCr
+ // ShutterSpeedValue : 4.058893515764426
+ // ApertureValue : 2.5260688216892597 [4845/1918]
+ // BrightnessValue : -0.3126686601998395
+ // MeteringMode : Pattern
+ // Flash : Flash did not fire, compulsory flash mode
+ // FocalLength : 4.28 [107/25]
+ // SubjectArea : [4 values]
+ // FlashpixVersion : 0100
+ // ColorSpace : 1
+ // PixelXDimension : 2448
+ // PixelYDimension : 3264
+ // SensingMethod : One-chip color area sensor
+ // ExposureMode : 0
+ // WhiteBalance : Auto white balance
+ // FocalLengthIn35mmFilm : 35
+ // SceneCaptureType : Standard
+ define('runtime/html5/imagemeta/exif',[
+ 'base',
+ 'runtime/html5/imagemeta'
+ ], function( Base, ImageMeta ) {
+
+ var EXIF = {};
+
+ EXIF.ExifMap = function() {
+ return this;
+ };
+
+ EXIF.ExifMap.prototype.map = {
+ 'Orientation': 0x0112
+ };
+
+ EXIF.ExifMap.prototype.get = function( id ) {
+ return this[ id ] || this[ this.map[ id ] ];
+ };
+
+ EXIF.exifTagTypes = {
+ // byte, 8-bit unsigned int:
+ 1: {
+ getValue: function( dataView, dataOffset ) {
+ return dataView.getUint8( dataOffset );
+ },
+ size: 1
+ },
+
+ // ascii, 8-bit byte:
+ 2: {
+ getValue: function( dataView, dataOffset ) {
+ return String.fromCharCode( dataView.getUint8( dataOffset ) );
+ },
+ size: 1,
+ ascii: true
+ },
+
+ // short, 16 bit int:
+ 3: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint16( dataOffset, littleEndian );
+ },
+ size: 2
+ },
+
+ // long, 32 bit int:
+ 4: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // rational = two long values,
+ // first is numerator, second is denominator:
+ 5: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian ) /
+ dataView.getUint32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ },
+
+ // slong, 32 bit signed int:
+ 9: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // srational, two slongs, first is numerator, second is denominator:
+ 10: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian ) /
+ dataView.getInt32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ }
+ };
+
+ // undefined, 8-bit byte, value depending on field:
+ EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
+
+ EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
+ littleEndian ) {
+
+ var tagType = EXIF.exifTagTypes[ type ],
+ tagSize, dataOffset, values, i, str, c;
+
+ if ( !tagType ) {
+ Base.log('Invalid Exif data: Invalid tag type.');
+ return;
+ }
+
+ tagSize = tagType.size * length;
+
+ // Determine if the value is contained in the dataOffset bytes,
+ // or if the value at the dataOffset is a pointer to the actual data:
+ dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
+ littleEndian ) : (offset + 8);
+
+ if ( dataOffset + tagSize > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid data offset.');
+ return;
+ }
+
+ if ( length === 1 ) {
+ return tagType.getValue( dataView, dataOffset, littleEndian );
+ }
+
+ values = [];
+
+ for ( i = 0; i < length; i += 1 ) {
+ values[ i ] = tagType.getValue( dataView,
+ dataOffset + i * tagType.size, littleEndian );
+ }
+
+ if ( tagType.ascii ) {
+ str = '';
+
+ // Concatenate the chars:
+ for ( i = 0; i < values.length; i += 1 ) {
+ c = values[ i ];
+
+ // Ignore the terminating NULL byte(s):
+ if ( c === '\u0000' ) {
+ break;
+ }
+ str += c;
+ }
+
+ return str;
+ }
+ return values;
+ };
+
+ EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
+ data ) {
+
+ var tag = dataView.getUint16( offset, littleEndian );
+ data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
+ dataView.getUint16( offset + 2, littleEndian ), // tag type
+ dataView.getUint32( offset + 4, littleEndian ), // tag length
+ littleEndian );
+ };
+
+ EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
+ littleEndian, data ) {
+
+ var tagsNumber, dirEndOffset, i;
+
+ if ( dirOffset + 6 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory offset.');
+ return;
+ }
+
+ tagsNumber = dataView.getUint16( dirOffset, littleEndian );
+ dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
+
+ if ( dirEndOffset + 4 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory size.');
+ return;
+ }
+
+ for ( i = 0; i < tagsNumber; i += 1 ) {
+ this.parseExifTag( dataView, tiffOffset,
+ dirOffset + 2 + 12 * i, // tag offset
+ littleEndian, data );
+ }
+
+ // Return the offset to the next directory:
+ return dataView.getUint32( dirEndOffset, littleEndian );
+ };
+
+ // EXIF.getExifThumbnail = function(dataView, offset, length) {
+ // var hexData,
+ // i,
+ // b;
+ // if (!length || offset + length > dataView.byteLength) {
+ // Base.log('Invalid Exif data: Invalid thumbnail data.');
+ // return;
+ // }
+ // hexData = [];
+ // for (i = 0; i < length; i += 1) {
+ // b = dataView.getUint8(offset + i);
+ // hexData.push((b < 16 ? '0' : '') + b.toString(16));
+ // }
+ // return 'data:image/jpeg,%' + hexData.join('%');
+ // };
+
+ EXIF.parseExifData = function( dataView, offset, length, data ) {
+
+ var tiffOffset = offset + 10,
+ littleEndian, dirOffset;
+
+ // Check for the ASCII code for "Exif" (0x45786966):
+ if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
+ // No Exif data, might be XMP data instead
+ return;
+ }
+ if ( tiffOffset + 8 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid segment size.');
+ return;
+ }
+
+ // Check for the two null bytes:
+ if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
+ Base.log('Invalid Exif data: Missing byte alignment offset.');
+ return;
+ }
+
+ // Check the byte alignment:
+ switch ( dataView.getUint16( tiffOffset ) ) {
+ case 0x4949:
+ littleEndian = true;
+ break;
+
+ case 0x4D4D:
+ littleEndian = false;
+ break;
+
+ default:
+ Base.log('Invalid Exif data: Invalid byte alignment marker.');
+ return;
+ }
+
+ // Check for the TIFF tag marker (0x002A):
+ if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
+ Base.log('Invalid Exif data: Missing TIFF marker.');
+ return;
+ }
+
+ // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
+ dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
+ // Create the exif object to store the tags:
+ data.exif = new EXIF.ExifMap();
+ // Parse the tags of the main image directory and retrieve the
+ // offset to the next directory, usually the thumbnail directory:
+ dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
+ tiffOffset + dirOffset, littleEndian, data );
+
+ // 尝试读取缩略图
+ // if ( dirOffset ) {
+ // thumbnailData = {exif: {}};
+ // dirOffset = EXIF.parseExifTags(
+ // dataView,
+ // tiffOffset,
+ // tiffOffset + dirOffset,
+ // littleEndian,
+ // thumbnailData
+ // );
+
+ // // Check for JPEG Thumbnail offset:
+ // if (thumbnailData.exif[0x0201]) {
+ // data.exif.Thumbnail = EXIF.getExifThumbnail(
+ // dataView,
+ // tiffOffset + thumbnailData.exif[0x0201],
+ // thumbnailData.exif[0x0202] // Thumbnail data length
+ // );
+ // }
+ // }
+ };
+
+ ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
+ return EXIF;
});
-
- /**
- * @fileOverview Transport flash实现
- */
- define('runtime/html5/md5',[
- 'runtime/html5/runtime'
- ], function( FlashRuntime ) {
-
- /*
- * Fastest md5 implementation around (JKM md5)
- * Credits: Joseph Myers
- *
- * @see http://www.myersdaily.org/joseph/javascript/md5-text.html
- * @see http://jsperf.com/md5-shootout/7
- */
-
- /* this function is much faster,
- so if possible we use it. Some IEs
- are the only ones I know of that
- need the idiotic second function,
- generated by an if clause. */
- var add32 = function (a, b) {
- return (a + b) & 0xFFFFFFFF;
- },
-
- cmn = function (q, a, b, x, s, t) {
- a = add32(add32(a, q), add32(x, t));
- return add32((a << s) | (a >>> (32 - s)), b);
- },
-
- ff = function (a, b, c, d, x, s, t) {
- return cmn((b & c) | ((~b) & d), a, b, x, s, t);
- },
-
- gg = function (a, b, c, d, x, s, t) {
- return cmn((b & d) | (c & (~d)), a, b, x, s, t);
- },
-
- hh = function (a, b, c, d, x, s, t) {
- return cmn(b ^ c ^ d, a, b, x, s, t);
- },
-
- ii = function (a, b, c, d, x, s, t) {
- return cmn(c ^ (b | (~d)), a, b, x, s, t);
- },
-
- md5cycle = function (x, k) {
- var a = x[0],
- b = x[1],
- c = x[2],
- d = x[3];
-
- a = ff(a, b, c, d, k[0], 7, -680876936);
- d = ff(d, a, b, c, k[1], 12, -389564586);
- c = ff(c, d, a, b, k[2], 17, 606105819);
- b = ff(b, c, d, a, k[3], 22, -1044525330);
- a = ff(a, b, c, d, k[4], 7, -176418897);
- d = ff(d, a, b, c, k[5], 12, 1200080426);
- c = ff(c, d, a, b, k[6], 17, -1473231341);
- b = ff(b, c, d, a, k[7], 22, -45705983);
- a = ff(a, b, c, d, k[8], 7, 1770035416);
- d = ff(d, a, b, c, k[9], 12, -1958414417);
- c = ff(c, d, a, b, k[10], 17, -42063);
- b = ff(b, c, d, a, k[11], 22, -1990404162);
- a = ff(a, b, c, d, k[12], 7, 1804603682);
- d = ff(d, a, b, c, k[13], 12, -40341101);
- c = ff(c, d, a, b, k[14], 17, -1502002290);
- b = ff(b, c, d, a, k[15], 22, 1236535329);
-
- a = gg(a, b, c, d, k[1], 5, -165796510);
- d = gg(d, a, b, c, k[6], 9, -1069501632);
- c = gg(c, d, a, b, k[11], 14, 643717713);
- b = gg(b, c, d, a, k[0], 20, -373897302);
- a = gg(a, b, c, d, k[5], 5, -701558691);
- d = gg(d, a, b, c, k[10], 9, 38016083);
- c = gg(c, d, a, b, k[15], 14, -660478335);
- b = gg(b, c, d, a, k[4], 20, -405537848);
- a = gg(a, b, c, d, k[9], 5, 568446438);
- d = gg(d, a, b, c, k[14], 9, -1019803690);
- c = gg(c, d, a, b, k[3], 14, -187363961);
- b = gg(b, c, d, a, k[8], 20, 1163531501);
- a = gg(a, b, c, d, k[13], 5, -1444681467);
- d = gg(d, a, b, c, k[2], 9, -51403784);
- c = gg(c, d, a, b, k[7], 14, 1735328473);
- b = gg(b, c, d, a, k[12], 20, -1926607734);
-
- a = hh(a, b, c, d, k[5], 4, -378558);
- d = hh(d, a, b, c, k[8], 11, -2022574463);
- c = hh(c, d, a, b, k[11], 16, 1839030562);
- b = hh(b, c, d, a, k[14], 23, -35309556);
- a = hh(a, b, c, d, k[1], 4, -1530992060);
- d = hh(d, a, b, c, k[4], 11, 1272893353);
- c = hh(c, d, a, b, k[7], 16, -155497632);
- b = hh(b, c, d, a, k[10], 23, -1094730640);
- a = hh(a, b, c, d, k[13], 4, 681279174);
- d = hh(d, a, b, c, k[0], 11, -358537222);
- c = hh(c, d, a, b, k[3], 16, -722521979);
- b = hh(b, c, d, a, k[6], 23, 76029189);
- a = hh(a, b, c, d, k[9], 4, -640364487);
- d = hh(d, a, b, c, k[12], 11, -421815835);
- c = hh(c, d, a, b, k[15], 16, 530742520);
- b = hh(b, c, d, a, k[2], 23, -995338651);
-
- a = ii(a, b, c, d, k[0], 6, -198630844);
- d = ii(d, a, b, c, k[7], 10, 1126891415);
- c = ii(c, d, a, b, k[14], 15, -1416354905);
- b = ii(b, c, d, a, k[5], 21, -57434055);
- a = ii(a, b, c, d, k[12], 6, 1700485571);
- d = ii(d, a, b, c, k[3], 10, -1894986606);
- c = ii(c, d, a, b, k[10], 15, -1051523);
- b = ii(b, c, d, a, k[1], 21, -2054922799);
- a = ii(a, b, c, d, k[8], 6, 1873313359);
- d = ii(d, a, b, c, k[15], 10, -30611744);
- c = ii(c, d, a, b, k[6], 15, -1560198380);
- b = ii(b, c, d, a, k[13], 21, 1309151649);
- a = ii(a, b, c, d, k[4], 6, -145523070);
- d = ii(d, a, b, c, k[11], 10, -1120210379);
- c = ii(c, d, a, b, k[2], 15, 718787259);
- b = ii(b, c, d, a, k[9], 21, -343485551);
-
- x[0] = add32(a, x[0]);
- x[1] = add32(b, x[1]);
- x[2] = add32(c, x[2]);
- x[3] = add32(d, x[3]);
- },
-
- /* there needs to be support for Unicode here,
- * unless we pretend that we can redefine the MD-5
- * algorithm for multi-byte characters (perhaps
- * by adding every four 16-bit characters and
- * shortening the sum to 32 bits). Otherwise
- * I suggest performing MD-5 as if every character
- * was two bytes--e.g., 0040 0025 = @%--but then
- * how will an ordinary MD-5 sum be matched?
- * There is no way to standardize text to something
- * like UTF-8 before transformation; speed cost is
- * utterly prohibitive. The JavaScript standard
- * itself needs to look at this: it should start
- * providing access to strings as preformed UTF-8
- * 8-bit unsigned value arrays.
- */
- md5blk = function (s) {
- var md5blks = [],
- i; /* Andy King said do it this way. */
-
- for (i = 0; i < 64; i += 4) {
- md5blks[i >> 2] = s.charCodeAt(i) + (s.charCodeAt(i + 1) << 8) + (s.charCodeAt(i + 2) << 16) + (s.charCodeAt(i + 3) << 24);
- }
- return md5blks;
- },
-
- md5blk_array = function (a) {
- var md5blks = [],
- i; /* Andy King said do it this way. */
-
- for (i = 0; i < 64; i += 4) {
- md5blks[i >> 2] = a[i] + (a[i + 1] << 8) + (a[i + 2] << 16) + (a[i + 3] << 24);
- }
- return md5blks;
- },
-
- md51 = function (s) {
- var n = s.length,
- state = [1732584193, -271733879, -1732584194, 271733878],
- i,
- length,
- tail,
- tmp,
- lo,
- hi;
-
- for (i = 64; i <= n; i += 64) {
- md5cycle(state, md5blk(s.substring(i - 64, i)));
- }
- s = s.substring(i - 64);
- length = s.length;
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= s.charCodeAt(i) << ((i % 4) << 3);
- }
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Beware that the final length might not fit in 32 bits so we take care of that
- tmp = n * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
-
- md5cycle(state, tail);
- return state;
- },
-
- md51_array = function (a) {
- var n = a.length,
- state = [1732584193, -271733879, -1732584194, 271733878],
- i,
- length,
- tail,
- tmp,
- lo,
- hi;
-
- for (i = 64; i <= n; i += 64) {
- md5cycle(state, md5blk_array(a.subarray(i - 64, i)));
- }
-
- // Not sure if it is a bug, however IE10 will always produce a sub array of length 1
- // containing the last element of the parent array if the sub array specified starts
- // beyond the length of the parent array - weird.
- // https://connect.microsoft.com/IE/feedback/details/771452/typed-array-subarray-issue
- a = (i - 64) < n ? a.subarray(i - 64) : new Uint8Array(0);
-
- length = a.length;
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= a[i] << ((i % 4) << 3);
- }
-
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Beware that the final length might not fit in 32 bits so we take care of that
- tmp = n * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
-
- md5cycle(state, tail);
-
- return state;
- },
-
- hex_chr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'],
-
- rhex = function (n) {
- var s = '',
- j;
- for (j = 0; j < 4; j += 1) {
- s += hex_chr[(n >> (j * 8 + 4)) & 0x0F] + hex_chr[(n >> (j * 8)) & 0x0F];
- }
- return s;
- },
-
- hex = function (x) {
- var i;
- for (i = 0; i < x.length; i += 1) {
- x[i] = rhex(x[i]);
- }
- return x.join('');
- },
-
- md5 = function (s) {
- return hex(md51(s));
- },
-
-
-
- ////////////////////////////////////////////////////////////////////////////
-
- /**
- * SparkMD5 OOP implementation.
- *
- * Use this class to perform an incremental md5, otherwise use the
- * static methods instead.
- */
- SparkMD5 = function () {
- // call reset to init the instance
- this.reset();
- };
-
-
- // In some cases the fast add32 function cannot be used..
- if (md5('hello') !== '5d41402abc4b2a76b9719d911017c592') {
- add32 = function (x, y) {
- var lsw = (x & 0xFFFF) + (y & 0xFFFF),
- msw = (x >> 16) + (y >> 16) + (lsw >> 16);
- return (msw << 16) | (lsw & 0xFFFF);
- };
- }
-
-
- /**
- * Appends a string.
- * A conversion will be applied if an utf8 string is detected.
- *
- * @param {String} str The string to be appended
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.append = function (str) {
- // converts the string to utf8 bytes if necessary
- if (/[\u0080-\uFFFF]/.test(str)) {
- str = unescape(encodeURIComponent(str));
- }
-
- // then append as binary
- this.appendBinary(str);
-
- return this;
- };
-
- /**
- * Appends a binary string.
- *
- * @param {String} contents The binary string to be appended
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.appendBinary = function (contents) {
- this._buff += contents;
- this._length += contents.length;
-
- var length = this._buff.length,
- i;
-
- for (i = 64; i <= length; i += 64) {
- md5cycle(this._state, md5blk(this._buff.substring(i - 64, i)));
- }
-
- this._buff = this._buff.substr(i - 64);
-
- return this;
- };
-
- /**
- * Finishes the incremental computation, reseting the internal state and
- * returning the result.
- * Use the raw parameter to obtain the raw result instead of the hex one.
- *
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.prototype.end = function (raw) {
- var buff = this._buff,
- length = buff.length,
- i,
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- ret;
-
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= buff.charCodeAt(i) << ((i % 4) << 3);
- }
-
- this._finish(tail, length);
- ret = !!raw ? this._state : hex(this._state);
-
- this.reset();
-
- return ret;
- };
-
- /**
- * Finish the final calculation based on the tail.
- *
- * @param {Array} tail The tail (will be modified)
- * @param {Number} length The length of the remaining buffer
- */
- SparkMD5.prototype._finish = function (tail, length) {
- var i = length,
- tmp,
- lo,
- hi;
-
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(this._state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Do the final computation based on the tail and length
- // Beware that the final length may not fit in 32 bits so we take care of that
- tmp = this._length * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
- md5cycle(this._state, tail);
- };
-
- /**
- * Resets the internal state of the computation.
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.reset = function () {
- this._buff = "";
- this._length = 0;
- this._state = [1732584193, -271733879, -1732584194, 271733878];
-
- return this;
- };
-
- /**
- * Releases memory used by the incremental buffer and other aditional
- * resources. If you plan to use the instance again, use reset instead.
- */
- SparkMD5.prototype.destroy = function () {
- delete this._state;
- delete this._buff;
- delete this._length;
- };
-
-
- /**
- * Performs the md5 hash on a string.
- * A conversion will be applied if utf8 string is detected.
- *
- * @param {String} str The string
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.hash = function (str, raw) {
- // converts the string to utf8 bytes if necessary
- if (/[\u0080-\uFFFF]/.test(str)) {
- str = unescape(encodeURIComponent(str));
- }
-
- var hash = md51(str);
-
- return !!raw ? hash : hex(hash);
- };
-
- /**
- * Performs the md5 hash on a binary string.
- *
- * @param {String} content The binary string
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.hashBinary = function (content, raw) {
- var hash = md51(content);
-
- return !!raw ? hash : hex(hash);
- };
-
- /**
- * SparkMD5 OOP implementation for array buffers.
- *
- * Use this class to perform an incremental md5 ONLY for array buffers.
- */
- SparkMD5.ArrayBuffer = function () {
- // call reset to init the instance
- this.reset();
- };
-
- ////////////////////////////////////////////////////////////////////////////
-
- /**
- * Appends an array buffer.
- *
- * @param {ArrayBuffer} arr The array to be appended
- *
- * @return {SparkMD5.ArrayBuffer} The instance itself
- */
- SparkMD5.ArrayBuffer.prototype.append = function (arr) {
- // TODO: we could avoid the concatenation here but the algorithm would be more complex
- // if you find yourself needing extra performance, please make a PR.
- var buff = this._concatArrayBuffer(this._buff, arr),
- length = buff.length,
- i;
-
- this._length += arr.byteLength;
-
- for (i = 64; i <= length; i += 64) {
- md5cycle(this._state, md5blk_array(buff.subarray(i - 64, i)));
- }
-
- // Avoids IE10 weirdness (documented above)
- this._buff = (i - 64) < length ? buff.subarray(i - 64) : new Uint8Array(0);
-
- return this;
- };
-
- /**
- * Finishes the incremental computation, reseting the internal state and
- * returning the result.
- * Use the raw parameter to obtain the raw result instead of the hex one.
- *
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.ArrayBuffer.prototype.end = function (raw) {
- var buff = this._buff,
- length = buff.length,
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- i,
- ret;
-
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= buff[i] << ((i % 4) << 3);
- }
-
- this._finish(tail, length);
- ret = !!raw ? this._state : hex(this._state);
-
- this.reset();
-
- return ret;
- };
-
- SparkMD5.ArrayBuffer.prototype._finish = SparkMD5.prototype._finish;
-
- /**
- * Resets the internal state of the computation.
- *
- * @return {SparkMD5.ArrayBuffer} The instance itself
- */
- SparkMD5.ArrayBuffer.prototype.reset = function () {
- this._buff = new Uint8Array(0);
- this._length = 0;
- this._state = [1732584193, -271733879, -1732584194, 271733878];
-
- return this;
- };
-
- /**
- * Releases memory used by the incremental buffer and other aditional
- * resources. If you plan to use the instance again, use reset instead.
- */
- SparkMD5.ArrayBuffer.prototype.destroy = SparkMD5.prototype.destroy;
-
- /**
- * Concats two array buffers, returning a new one.
- *
- * @param {ArrayBuffer} first The first array buffer
- * @param {ArrayBuffer} second The second array buffer
- *
- * @return {ArrayBuffer} The new array buffer
- */
- SparkMD5.ArrayBuffer.prototype._concatArrayBuffer = function (first, second) {
- var firstLength = first.length,
- result = new Uint8Array(firstLength + second.byteLength);
-
- result.set(first);
- result.set(new Uint8Array(second), firstLength);
-
- return result;
- };
-
- /**
- * Performs the md5 hash on an array buffer.
- *
- * @param {ArrayBuffer} arr The array buffer
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.ArrayBuffer.hash = function (arr, raw) {
- var hash = md51_array(new Uint8Array(arr));
-
- return !!raw ? hash : hex(hash);
- };
-
- return FlashRuntime.register( 'Md5', {
- init: function() {
- // do nothing.
- },
-
- loadFromBlob: function( file ) {
- var blob = file.getSource(),
- chunkSize = 2 * 1024 * 1024,
- chunks = Math.ceil( blob.size / chunkSize ),
- chunk = 0,
- owner = this.owner,
- spark = new SparkMD5.ArrayBuffer(),
- me = this,
- blobSlice = blob.mozSlice || blob.webkitSlice || blob.slice,
- loadNext, fr;
-
- fr = new FileReader();
-
- loadNext = function() {
- var start, end;
-
- start = chunk * chunkSize;
- end = Math.min( start + chunkSize, blob.size );
-
- fr.onload = function( e ) {
- spark.append( e.target.result );
- owner.trigger( 'progress', {
- total: file.size,
- loaded: end
- });
- };
-
- fr.onloadend = function() {
- fr.onloadend = fr.onload = null;
-
- if ( ++chunk < chunks ) {
- setTimeout( loadNext, 1 );
- } else {
- setTimeout(function(){
- owner.trigger('load');
- me.result = spark.end();
- loadNext = file = blob = spark = null;
- owner.trigger('complete');
- }, 50 );
- }
- };
-
- fr.readAsArrayBuffer( blobSlice.call( blob, start, end ) );
- };
-
- loadNext();
- },
-
- getResult: function() {
- return this.result;
- }
- });
+ /**
+ * 这个方式性能不行,但是可以解决android里面的toDataUrl的bug
+ * android里面toDataUrl('image/jpege')得到的结果却是png.
+ *
+ * 所以这里没辙,只能借助这个工具
+ * @fileOverview jpeg encoder
+ */
+ define('runtime/html5/jpegencoder',[], function( require, exports, module ) {
+
+ /*
+ Copyright (c) 2008, Adobe Systems Incorporated
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of Adobe Systems Incorporated nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+ /*
+ JPEG encoder ported to JavaScript and optimized by Andreas Ritter, www.bytestrom.eu, 11/2009
+
+ Basic GUI blocking jpeg encoder
+ */
+
+ function JPEGEncoder(quality) {
+ var self = this;
+ var fround = Math.round;
+ var ffloor = Math.floor;
+ var YTable = new Array(64);
+ var UVTable = new Array(64);
+ var fdtbl_Y = new Array(64);
+ var fdtbl_UV = new Array(64);
+ var YDC_HT;
+ var UVDC_HT;
+ var YAC_HT;
+ var UVAC_HT;
+
+ var bitcode = new Array(65535);
+ var category = new Array(65535);
+ var outputfDCTQuant = new Array(64);
+ var DU = new Array(64);
+ var byteout = [];
+ var bytenew = 0;
+ var bytepos = 7;
+
+ var YDU = new Array(64);
+ var UDU = new Array(64);
+ var VDU = new Array(64);
+ var clt = new Array(256);
+ var RGB_YUV_TABLE = new Array(2048);
+ var currentQuality;
+
+ var ZigZag = [
+ 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
+ ];
+
+ var std_dc_luminance_nrcodes = [0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0];
+ var std_dc_luminance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
+ var std_ac_luminance_nrcodes = [0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d];
+ var std_ac_luminance_values = [
+ 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,
+ 0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,
+ 0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08,
+ 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,
+ 0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,
+ 0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28,
+ 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,
+ 0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,
+ 0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,
+ 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,
+ 0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,
+ 0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89,
+ 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,
+ 0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,
+ 0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,
+ 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,
+ 0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,
+ 0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2,
+ 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,
+ 0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
+ 0xf9,0xfa
+ ];
+
+ var std_dc_chrominance_nrcodes = [0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0];
+ var std_dc_chrominance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
+ var std_ac_chrominance_nrcodes = [0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77];
+ var std_ac_chrominance_values = [
+ 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,
+ 0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,
+ 0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91,
+ 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,
+ 0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,
+ 0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,
+ 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,
+ 0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,
+ 0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,
+ 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,
+ 0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,
+ 0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,
+ 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,
+ 0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
+ 0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,
+ 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
+ 0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,
+ 0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
+ 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,
+ 0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
+ 0xf9,0xfa
+ ];
+
+ function initQuantTables(sf){
+ var YQT = [
+ 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
+ ];
+
+ for (var i = 0; i < 64; i++) {
+ var t = ffloor((YQT[i]*sf+50)/100);
+ if (t < 1) {
+ t = 1;
+ } else if (t > 255) {
+ t = 255;
+ }
+ YTable[ZigZag[i]] = t;
+ }
+ var UVQT = [
+ 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
+ ];
+ for (var j = 0; j < 64; j++) {
+ var u = ffloor((UVQT[j]*sf+50)/100);
+ if (u < 1) {
+ u = 1;
+ } else if (u > 255) {
+ u = 255;
+ }
+ UVTable[ZigZag[j]] = u;
+ }
+ var aasf = [
+ 1.0, 1.387039845, 1.306562965, 1.175875602,
+ 1.0, 0.785694958, 0.541196100, 0.275899379
+ ];
+ var k = 0;
+ for (var row = 0; row < 8; row++)
+ {
+ for (var col = 0; col < 8; col++)
+ {
+ fdtbl_Y[k] = (1.0 / (YTable [ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
+ fdtbl_UV[k] = (1.0 / (UVTable[ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
+ k++;
+ }
+ }
+ }
+
+ function computeHuffmanTbl(nrcodes, std_table){
+ var codevalue = 0;
+ var pos_in_table = 0;
+ var HT = new Array();
+ for (var k = 1; k <= 16; k++) {
+ for (var j = 1; j <= nrcodes[k]; j++) {
+ HT[std_table[pos_in_table]] = [];
+ HT[std_table[pos_in_table]][0] = codevalue;
+ HT[std_table[pos_in_table]][1] = k;
+ pos_in_table++;
+ codevalue++;
+ }
+ codevalue*=2;
+ }
+ return HT;
+ }
+
+ function initHuffmanTbl()
+ {
+ YDC_HT = computeHuffmanTbl(std_dc_luminance_nrcodes,std_dc_luminance_values);
+ UVDC_HT = computeHuffmanTbl(std_dc_chrominance_nrcodes,std_dc_chrominance_values);
+ YAC_HT = computeHuffmanTbl(std_ac_luminance_nrcodes,std_ac_luminance_values);
+ UVAC_HT = computeHuffmanTbl(std_ac_chrominance_nrcodes,std_ac_chrominance_values);
+ }
+
+ function initCategoryNumber()
+ {
+ var nrlower = 1;
+ var nrupper = 2;
+ for (var cat = 1; cat <= 15; cat++) {
+ //Positive numbers
+ for (var nr = nrlower; nr>0] = 38470 * i;
+ RGB_YUV_TABLE[(i+ 512)>>0] = 7471 * i + 0x8000;
+ RGB_YUV_TABLE[(i+ 768)>>0] = -11059 * i;
+ RGB_YUV_TABLE[(i+1024)>>0] = -21709 * i;
+ RGB_YUV_TABLE[(i+1280)>>0] = 32768 * i + 0x807FFF;
+ RGB_YUV_TABLE[(i+1536)>>0] = -27439 * i;
+ RGB_YUV_TABLE[(i+1792)>>0] = - 5329 * i;
+ }
+ }
+
+ // IO functions
+ function writeBits(bs)
+ {
+ var value = bs[0];
+ var posval = bs[1]-1;
+ while ( posval >= 0 ) {
+ if (value & (1 << posval) ) {
+ bytenew |= (1 << bytepos);
+ }
+ posval--;
+ bytepos--;
+ if (bytepos < 0) {
+ if (bytenew == 0xFF) {
+ writeByte(0xFF);
+ writeByte(0);
+ }
+ else {
+ writeByte(bytenew);
+ }
+ bytepos=7;
+ bytenew=0;
+ }
+ }
+ }
+
+ function writeByte(value)
+ {
+ byteout.push(clt[value]); // write char directly instead of converting later
+ }
+
+ function writeWord(value)
+ {
+ writeByte((value>>8)&0xFF);
+ writeByte((value )&0xFF);
+ }
+
+ // DCT & quantization core
+ function fDCTQuant(data, fdtbl)
+ {
+ var d0, d1, d2, d3, d4, d5, d6, d7;
+ /* Pass 1: process rows. */
+ var dataOff=0;
+ var i;
+ var I8 = 8;
+ var I64 = 64;
+ for (i=0; i 0.0) ? ((fDCTQuant + 0.5)|0) : ((fDCTQuant - 0.5)|0);
+ //outputfDCTQuant[i] = fround(fDCTQuant);
+
+ }
+ return outputfDCTQuant;
+ }
+
+ function writeAPP0()
+ {
+ writeWord(0xFFE0); // marker
+ writeWord(16); // length
+ writeByte(0x4A); // J
+ writeByte(0x46); // F
+ writeByte(0x49); // I
+ writeByte(0x46); // F
+ writeByte(0); // = "JFIF",'\0'
+ writeByte(1); // versionhi
+ writeByte(1); // versionlo
+ writeByte(0); // xyunits
+ writeWord(1); // xdensity
+ writeWord(1); // ydensity
+ writeByte(0); // thumbnwidth
+ writeByte(0); // thumbnheight
+ }
+
+ function writeSOF0(width, height)
+ {
+ writeWord(0xFFC0); // marker
+ writeWord(17); // length, truecolor YUV JPG
+ writeByte(8); // precision
+ writeWord(height);
+ writeWord(width);
+ writeByte(3); // nrofcomponents
+ writeByte(1); // IdY
+ writeByte(0x11); // HVY
+ writeByte(0); // QTY
+ writeByte(2); // IdU
+ writeByte(0x11); // HVU
+ writeByte(1); // QTU
+ writeByte(3); // IdV
+ writeByte(0x11); // HVV
+ writeByte(1); // QTV
+ }
+
+ function writeDQT()
+ {
+ writeWord(0xFFDB); // marker
+ writeWord(132); // length
+ writeByte(0);
+ for (var i=0; i<64; i++) {
+ writeByte(YTable[i]);
+ }
+ writeByte(1);
+ for (var j=0; j<64; j++) {
+ writeByte(UVTable[j]);
+ }
+ }
+
+ function writeDHT()
+ {
+ writeWord(0xFFC4); // marker
+ writeWord(0x01A2); // length
+
+ writeByte(0); // HTYDCinfo
+ for (var i=0; i<16; i++) {
+ writeByte(std_dc_luminance_nrcodes[i+1]);
+ }
+ for (var j=0; j<=11; j++) {
+ writeByte(std_dc_luminance_values[j]);
+ }
+
+ writeByte(0x10); // HTYACinfo
+ for (var k=0; k<16; k++) {
+ writeByte(std_ac_luminance_nrcodes[k+1]);
+ }
+ for (var l=0; l<=161; l++) {
+ writeByte(std_ac_luminance_values[l]);
+ }
+
+ writeByte(1); // HTUDCinfo
+ for (var m=0; m<16; m++) {
+ writeByte(std_dc_chrominance_nrcodes[m+1]);
+ }
+ for (var n=0; n<=11; n++) {
+ writeByte(std_dc_chrominance_values[n]);
+ }
+
+ writeByte(0x11); // HTUACinfo
+ for (var o=0; o<16; o++) {
+ writeByte(std_ac_chrominance_nrcodes[o+1]);
+ }
+ for (var p=0; p<=161; p++) {
+ writeByte(std_ac_chrominance_values[p]);
+ }
+ }
+
+ function writeSOS()
+ {
+ writeWord(0xFFDA); // marker
+ writeWord(12); // length
+ writeByte(3); // nrofcomponents
+ writeByte(1); // IdY
+ writeByte(0); // HTY
+ writeByte(2); // IdU
+ writeByte(0x11); // HTU
+ writeByte(3); // IdV
+ writeByte(0x11); // HTV
+ writeByte(0); // Ss
+ writeByte(0x3f); // Se
+ writeByte(0); // Bf
+ }
+
+ function processDU(CDU, fdtbl, DC, HTDC, HTAC){
+ var EOB = HTAC[0x00];
+ var M16zeroes = HTAC[0xF0];
+ var pos;
+ var I16 = 16;
+ var I63 = 63;
+ var I64 = 64;
+ var DU_DCT = fDCTQuant(CDU, fdtbl);
+ //ZigZag reorder
+ for (var j=0;j0)&&(DU[end0pos]==0); end0pos--) {};
+ //end0pos = first element in reverse order !=0
+ if ( end0pos == 0) {
+ writeBits(EOB);
+ return DC;
+ }
+ var i = 1;
+ var lng;
+ while ( i <= end0pos ) {
+ var startpos = i;
+ for (; (DU[i]==0) && (i<=end0pos); ++i) {}
+ var nrzeroes = i-startpos;
+ if ( nrzeroes >= I16 ) {
+ lng = nrzeroes>>4;
+ for (var nrmarker=1; nrmarker <= lng; ++nrmarker)
+ writeBits(M16zeroes);
+ nrzeroes = nrzeroes&0xF;
+ }
+ pos = 32767+DU[i];
+ writeBits(HTAC[(nrzeroes<<4)+category[pos]]);
+ writeBits(bitcode[pos]);
+ i++;
+ }
+ if ( end0pos != I63 ) {
+ writeBits(EOB);
+ }
+ return DC;
+ }
+
+ function initCharLookupTable(){
+ var sfcc = String.fromCharCode;
+ for(var i=0; i < 256; i++){ ///// ACHTUNG // 255
+ clt[i] = sfcc(i);
+ }
+ }
+
+ this.encode = function(image,quality) // image data object
+ {
+ // var time_start = new Date().getTime();
+
+ if(quality) setQuality(quality);
+
+ // Initialize bit writer
+ byteout = new Array();
+ bytenew=0;
+ bytepos=7;
+
+ // Add JPEG headers
+ writeWord(0xFFD8); // SOI
+ writeAPP0();
+ writeDQT();
+ writeSOF0(image.width,image.height);
+ writeDHT();
+ writeSOS();
+
+
+ // Encode 8x8 macroblocks
+ var DCY=0;
+ var DCU=0;
+ var DCV=0;
+
+ bytenew=0;
+ bytepos=7;
+
+
+ this.encode.displayName = "_encode_";
+
+ var imageData = image.data;
+ var width = image.width;
+ var height = image.height;
+
+ var quadWidth = width*4;
+ var tripleWidth = width*3;
+
+ var x, y = 0;
+ var r, g, b;
+ var start,p, col,row,pos;
+ while(y < height){
+ x = 0;
+ while(x < quadWidth){
+ start = quadWidth * y + x;
+ p = start;
+ col = -1;
+ row = 0;
+
+ for(pos=0; pos < 64; pos++){
+ row = pos >> 3;// /8
+ col = ( pos & 7 ) * 4; // %8
+ p = start + ( row * quadWidth ) + col;
+
+ if(y+row >= height){ // padding bottom
+ p-= (quadWidth*(y+1+row-height));
+ }
+
+ if(x+col >= quadWidth){ // padding right
+ p-= ((x+col) - quadWidth +4)
+ }
+
+ r = imageData[ p++ ];
+ g = imageData[ p++ ];
+ b = imageData[ p++ ];
+
+
+ /* // calculate YUV values dynamically
+ YDU[pos]=((( 0.29900)*r+( 0.58700)*g+( 0.11400)*b))-128; //-0x80
+ UDU[pos]=(((-0.16874)*r+(-0.33126)*g+( 0.50000)*b));
+ VDU[pos]=((( 0.50000)*r+(-0.41869)*g+(-0.08131)*b));
+ */
+
+ // use lookup table (slightly faster)
+ YDU[pos] = ((RGB_YUV_TABLE[r] + RGB_YUV_TABLE[(g + 256)>>0] + RGB_YUV_TABLE[(b + 512)>>0]) >> 16)-128;
+ UDU[pos] = ((RGB_YUV_TABLE[(r + 768)>>0] + RGB_YUV_TABLE[(g + 1024)>>0] + RGB_YUV_TABLE[(b + 1280)>>0]) >> 16)-128;
+ VDU[pos] = ((RGB_YUV_TABLE[(r + 1280)>>0] + RGB_YUV_TABLE[(g + 1536)>>0] + RGB_YUV_TABLE[(b + 1792)>>0]) >> 16)-128;
+
+ }
+
+ DCY = processDU(YDU, fdtbl_Y, DCY, YDC_HT, YAC_HT);
+ DCU = processDU(UDU, fdtbl_UV, DCU, UVDC_HT, UVAC_HT);
+ DCV = processDU(VDU, fdtbl_UV, DCV, UVDC_HT, UVAC_HT);
+ x+=32;
+ }
+ y+=8;
+ }
+
+
+ ////////////////////////////////////////////////////////////////
+
+ // Do the bit alignment of the EOI marker
+ if ( bytepos >= 0 ) {
+ var fillbits = [];
+ fillbits[1] = bytepos+1;
+ fillbits[0] = (1<<(bytepos+1))-1;
+ writeBits(fillbits);
+ }
+
+ writeWord(0xFFD9); //EOI
+
+ var jpegDataUri = 'data:image/jpeg;base64,' + btoa(byteout.join(''));
+
+ byteout = [];
+
+ // benchmarking
+ // var duration = new Date().getTime() - time_start;
+ // console.log('Encoding time: '+ currentQuality + 'ms');
+ //
+
+ return jpegDataUri
+ }
+
+ function setQuality(quality){
+ if (quality <= 0) {
+ quality = 1;
+ }
+ if (quality > 100) {
+ quality = 100;
+ }
+
+ if(currentQuality == quality) return // don't recalc if unchanged
+
+ var sf = 0;
+ if (quality < 50) {
+ sf = Math.floor(5000 / quality);
+ } else {
+ sf = Math.floor(200 - quality*2);
+ }
+
+ initQuantTables(sf);
+ currentQuality = quality;
+ // console.log('Quality set to: '+quality +'%');
+ }
+
+ function init(){
+ // var time_start = new Date().getTime();
+ if(!quality) quality = 50;
+ // Create tables
+ initCharLookupTable()
+ initHuffmanTbl();
+ initCategoryNumber();
+ initRGBYUVTable();
+
+ setQuality(quality);
+ // var duration = new Date().getTime() - time_start;
+ // console.log('Initialization '+ duration + 'ms');
+ }
+
+ init();
+
+ };
+
+ JPEGEncoder.encode = function( data, quality ) {
+ var encoder = new JPEGEncoder( quality );
+
+ return encoder.encode( data );
+ }
+
+ return JPEGEncoder;
});
- /**
- * @fileOverview FlashRuntime
- */
- define('runtime/flash/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var $ = Base.$,
- type = 'flash',
- components = {};
-
-
- function getFlashVersion() {
- var version;
-
- try {
- version = navigator.plugins[ 'Shockwave Flash' ];
- version = version.description;
- } catch ( ex ) {
- try {
- version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash')
- .GetVariable('$version');
- } catch ( ex2 ) {
- version = '0.0';
- }
- }
- version = version.match( /\d+/g );
- return parseFloat( version[ 0 ] + '.' + version[ 1 ], 10 );
- }
-
- function FlashRuntime() {
- var pool = {},
- clients = {},
- destroy = this.destroy,
- me = this,
- jsreciver = Base.guid('webuploader_');
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/ ) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- clients[ uid ] = client;
-
- if ( components[ comp ] ) {
- if ( !pool[ uid ] ) {
- pool[ uid ] = new components[ comp ]( client, me );
- }
-
- instance = pool[ uid ];
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
-
- return me.flashExec.apply( client, arguments );
- };
-
- function handler( evt, obj ) {
- var type = evt.type || evt,
- parts, uid;
-
- parts = type.split('::');
- uid = parts[ 0 ];
- type = parts[ 1 ];
-
- // console.log.apply( console, arguments );
-
- if ( type === 'Ready' && uid === me.uid ) {
- me.trigger('ready');
- } else if ( clients[ uid ] ) {
- clients[ uid ].trigger( type.toLowerCase(), evt, obj );
- }
-
- // Base.log( evt, obj );
- }
-
- // flash的接受器。
- window[ jsreciver ] = function() {
- var args = arguments;
-
- // 为了能捕获得到。
- setTimeout(function() {
- handler.apply( null, args );
- }, 1 );
- };
-
- this.jsreciver = jsreciver;
-
- this.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
-
- this.flashExec = function( comp, fn ) {
- var flash = me.getFlash(),
- args = Base.slice( arguments, 2 );
-
- return flash.exec( this.uid, comp, fn, args );
- };
-
- // @todo
- }
-
- Base.inherits( Runtime, {
- constructor: FlashRuntime,
-
- init: function() {
- var container = this.getContainer(),
- opts = this.options,
- html;
-
- // if not the minimal height, shims are not initialized
- // in older browsers (e.g FF3.6, IE6,7,8, Safari 4.0,5.0, etc)
- container.css({
- position: 'absolute',
- top: '-8px',
- left: '-8px',
- width: '9px',
- height: '9px',
- overflow: 'hidden'
- });
-
- // insert flash object
- html = '';
-
- container.html( html );
- },
-
- getFlash: function() {
- if ( this._flash ) {
- return this._flash;
- }
-
- this._flash = $( '#' + this.uid ).get( 0 );
- return this._flash;
- }
-
- });
-
- FlashRuntime.register = function( name, component ) {
- component = components[ name ] = Base.inherits( CompBase, $.extend({
-
- // @todo fix this later
- flashExec: function() {
- var owner = this.owner,
- runtime = this.getRuntime();
-
- return runtime.flashExec.apply( owner, arguments );
- }
- }, component ) );
-
- return component;
- };
-
- if ( getFlashVersion() >= 11.4 ) {
- Runtime.addRuntime( type, FlashRuntime );
- }
-
- return FlashRuntime;
+ /**
+ * @fileOverview Fix android canvas.toDataUrl bug.
+ */
+ define('runtime/html5/androidpatch',[
+ 'runtime/html5/util',
+ 'runtime/html5/jpegencoder',
+ 'base'
+ ], function( Util, encoder, Base ) {
+ var origin = Util.canvasToDataUrl,
+ supportJpeg;
+
+ Util.canvasToDataUrl = function( canvas, type, quality ) {
+ var ctx, w, h, fragement, parts;
+
+ // 非android手机直接跳过。
+ if ( !Base.os.android ) {
+ return origin.apply( null, arguments );
+ }
+
+ // 检测是否canvas支持jpeg导出,根据数据格式来判断。
+ // JPEG 前两位分别是:255, 216
+ if ( type === 'image/jpeg' && typeof supportJpeg === 'undefined' ) {
+ fragement = origin.apply( null, arguments );
+
+ parts = fragement.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ fragement = atob( parts[ 1 ] );
+ } else {
+ fragement = decodeURIComponent( parts[ 1 ] );
+ }
+
+ fragement = fragement.substring( 0, 2 );
+
+ supportJpeg = fragement.charCodeAt( 0 ) === 255 &&
+ fragement.charCodeAt( 1 ) === 216;
+ }
+
+ // 只有在android环境下才修复
+ if ( type === 'image/jpeg' && !supportJpeg ) {
+ w = canvas.width;
+ h = canvas.height;
+ ctx = canvas.getContext('2d');
+
+ return encoder.encode( ctx.getImageData( 0, 0, w, h ), quality );
+ }
+
+ return origin.apply( null, arguments );
+ };
});
- /**
- * @fileOverview FilePicker
- */
- define('runtime/flash/filepicker',[
- 'base',
- 'runtime/flash/runtime'
- ], function( Base, FlashRuntime ) {
- var $ = Base.$;
-
- return FlashRuntime.register( 'FilePicker', {
- init: function( opts ) {
- var copy = $.extend({}, opts ),
- len, i;
-
- // 修复Flash再没有设置title的情况下无法弹出flash文件选择框的bug.
- len = copy.accept && copy.accept.length;
- for ( i = 0; i < len; i++ ) {
- if ( !copy.accept[ i ].title ) {
- copy.accept[ i ].title = 'Files';
- }
- }
-
- delete copy.button;
- delete copy.id;
- delete copy.container;
+ /**
+ * @fileOverview Image
+ */
+ define('runtime/html5/image',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'runtime/html5/util'
+ ], function( Base, Html5Runtime, Util ) {
+
+ var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
+
+ return Html5Runtime.register( 'Image', {
+
+ // flag: 标记是否被修改过。
+ modified: false,
+
+ init: function() {
+ var me = this,
+ img = new Image();
+
+ img.onload = function() {
+
+ me._info = {
+ type: me.type,
+ width: this.width,
+ height: this.height
+ };
+
+ //debugger;
+
+ // 读取meta信息。
+ if ( !me._metas && 'image/jpeg' === me.type ) {
+ Util.parseMeta( me._blob, function( error, ret ) {
+ me._metas = ret;
+ me.owner.trigger('load');
+ });
+ } else {
+ me.owner.trigger('load');
+ }
+ };
+
+ img.onerror = function() {
+ me.owner.trigger('error');
+ };
+
+ me._img = img;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ img = me._img;
+
+ me._blob = blob;
+ me.type = blob.type;
+ img.src = Util.createObjectURL( blob.getSource() );
+ me.owner.once( 'load', function() {
+ Util.revokeObjectURL( img.src );
+ });
+ },
+
+ resize: function( width, height ) {
+ var canvas = this._canvas ||
+ (this._canvas = document.createElement('canvas'));
+
+ this._resize( this._img, canvas, width, height );
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'resize' );
+ },
+
+ crop: function( x, y, w, h, s ) {
+ var cvs = this._canvas ||
+ (this._canvas = document.createElement('canvas')),
+ opts = this.options,
+ img = this._img,
+ iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ orientation = this.getOrientation();
+
+ s = s || 1;
+
+ // todo 解决 orientation 的问题。
+ // values that require 90 degree rotation
+ // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // switch ( orientation ) {
+ // case 6:
+ // tmp = x;
+ // x = y;
+ // y = iw * s - tmp - w;
+ // console.log(ih * s, tmp, w)
+ // break;
+ // }
+
+ // (w ^= h, h ^= w, w ^= h);
+ // }
+
+ cvs.width = w;
+ cvs.height = h;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+ this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
+
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'crop' );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this._blob,
+ opts = this.options,
+ canvas;
+
+ type = type || this.type;
+
+ // blob需要重新生成。
+ if ( this.modified || this.type !== type ) {
+ canvas = this._canvas;
+
+ if ( type === 'image/jpeg' ) {
+
+ blob = Util.canvasToDataUrl( canvas, type, opts.quality );
+
+ if ( opts.preserveHeaders && this._metas &&
+ this._metas.imageHead ) {
+
+ blob = Util.dataURL2ArrayBuffer( blob );
+ blob = Util.updateImageHead( blob,
+ this._metas.imageHead );
+ blob = Util.arrayBufferToBlob( blob, type );
+ return blob;
+ }
+ } else {
+ blob = Util.canvasToDataUrl( canvas, type );
+ }
+
+ blob = Util.dataURL2Blob( blob );
+ }
+
+ return blob;
+ },
+
+ getAsDataUrl: function( type ) {
+ var opts = this.options;
+
+ type = type || this.type;
+
+ if ( type === 'image/jpeg' ) {
+ return Util.canvasToDataUrl( this._canvas, type, opts.quality );
+ } else {
+ return this._canvas.toDataURL( type );
+ }
+ },
+
+ getOrientation: function() {
+ return this._metas && this._metas.exif &&
+ this._metas.exif.get('Orientation') || 1;
+ },
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._metas = val;
+ return this;
+ }
+
+ // getter
+ return this._metas;
+ },
+
+ destroy: function() {
+ var canvas = this._canvas;
+ this._img.onload = null;
+
+ if ( canvas ) {
+ canvas.getContext('2d')
+ .clearRect( 0, 0, canvas.width, canvas.height );
+ canvas.width = canvas.height = 0;
+ this._canvas = null;
+ }
+
+ // 释放内存。非常重要,否则释放不了image的内存。
+ this._img.src = BLANK;
+ this._img = this._blob = null;
+ },
+
+ _resize: function( img, cvs, width, height ) {
+ var opts = this.options,
+ naturalWidth = img.width,
+ naturalHeight = img.height,
+ orientation = this.getOrientation(),
+ scale, w, h, x, y;
+
+ // values that require 90 degree rotation
+ if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // 交换width, height的值。
+ width ^= height;
+ height ^= width;
+ width ^= height;
+ }
+
+ scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
+ height / naturalHeight );
+
+ // 不允许放大。
+ opts.allowMagnify || (scale = Math.min( 1, scale ));
+
+ w = naturalWidth * scale;
+ h = naturalHeight * scale;
+
+ if ( opts.crop ) {
+ cvs.width = width;
+ cvs.height = height;
+ } else {
+ cvs.width = w;
+ cvs.height = h;
+ }
+
+ x = (cvs.width - w) / 2;
+ y = (cvs.height - h) / 2;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+
+ this._renderImageToCanvas( cvs, img, x, y, w, h );
+ },
+
+ _rotate2Orientaion: function( canvas, orientation ) {
+ var width = canvas.width,
+ height = canvas.height,
+ ctx = canvas.getContext('2d');
+
+ switch ( orientation ) {
+ case 5:
+ case 6:
+ case 7:
+ case 8:
+ canvas.width = height;
+ canvas.height = width;
+ break;
+ }
+
+ switch ( orientation ) {
+ case 2: // horizontal flip
+ ctx.translate( width, 0 );
+ ctx.scale( -1, 1 );
+ break;
+
+ case 3: // 180 rotate left
+ ctx.translate( width, height );
+ ctx.rotate( Math.PI );
+ break;
+
+ case 4: // vertical flip
+ ctx.translate( 0, height );
+ ctx.scale( 1, -1 );
+ break;
+
+ case 5: // vertical flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.scale( 1, -1 );
+ break;
+
+ case 6: // 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( 0, -height );
+ break;
+
+ case 7: // horizontal flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( width, -height );
+ ctx.scale( -1, 1 );
+ break;
+
+ case 8: // 90 rotate left
+ ctx.rotate( -0.5 * Math.PI );
+ ctx.translate( -width, 0 );
+ break;
+ }
+ },
+
+ // https://github.com/stomita/ios-imagefile-megapixel/
+ // blob/master/src/megapix-image.js
+ _renderImageToCanvas: (function() {
+
+ // 如果不是ios, 不需要这么复杂!
+ if ( !Base.os.ios ) {
+ return function( canvas ) {
+ var args = Base.slice( arguments, 1 ),
+ ctx = canvas.getContext('2d');
+
+ ctx.drawImage.apply( ctx, args );
+ };
+ }
+
+ /**
+ * Detecting vertical squash in loaded image.
+ * Fixes a bug which squash image vertically while drawing into
+ * canvas for some images.
+ */
+ function detectVerticalSquash( img, iw, ih ) {
+ var canvas = document.createElement('canvas'),
+ ctx = canvas.getContext('2d'),
+ sy = 0,
+ ey = ih,
+ py = ih,
+ data, alpha, ratio;
+
+
+ canvas.width = 1;
+ canvas.height = ih;
+ ctx.drawImage( img, 0, 0 );
+ data = ctx.getImageData( 0, 0, 1, ih ).data;
+
+ // search image edge pixel position in case
+ // it is squashed vertically.
+ while ( py > sy ) {
+ alpha = data[ (py - 1) * 4 + 3 ];
+
+ if ( alpha === 0 ) {
+ ey = py;
+ } else {
+ sy = py;
+ }
+
+ py = (ey + sy) >> 1;
+ }
+
+ ratio = (py / ih);
+ return (ratio === 0) ? 1 : ratio;
+ }
+
+ // fix ie7 bug
+ // http://stackoverflow.com/questions/11929099/
+ // html5-canvas-drawimage-ratio-bug-ios
+ if ( Base.os.ios >= 7 ) {
+ return function( canvas, img, x, y, w, h ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ vertSquashRatio = detectVerticalSquash( img, iw, ih );
+
+ return canvas.getContext('2d').drawImage( img, 0, 0,
+ iw * vertSquashRatio, ih * vertSquashRatio,
+ x, y, w, h );
+ };
+ }
+
+ /**
+ * Detect subsampling in loaded image.
+ * In iOS, larger images than 2M pixels may be
+ * subsampled in rendering.
+ */
+ function detectSubsampling( img ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ canvas, ctx;
+
+ // subsampling may happen overmegapixel image
+ if ( iw * ih > 1024 * 1024 ) {
+ canvas = document.createElement('canvas');
+ canvas.width = canvas.height = 1;
+ ctx = canvas.getContext('2d');
+ ctx.drawImage( img, -iw + 1, 0 );
+
+ // subsampled image becomes half smaller in rendering size.
+ // check alpha channel value to confirm image is covering
+ // edge pixel or not. if alpha value is 0
+ // image is not covering, hence subsampled.
+ return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
+ } else {
+ return false;
+ }
+ }
+
+
+ return function( canvas, img, x, y, width, height ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ ctx = canvas.getContext('2d'),
+ subsampled = detectSubsampling( img ),
+ doSquash = this.type === 'image/jpeg',
+ d = 1024,
+ sy = 0,
+ dy = 0,
+ tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
+
+ if ( subsampled ) {
+ iw /= 2;
+ ih /= 2;
+ }
+
+ ctx.save();
+ tmpCanvas = document.createElement('canvas');
+ tmpCanvas.width = tmpCanvas.height = d;
+
+ tmpCtx = tmpCanvas.getContext('2d');
+ vertSquashRatio = doSquash ?
+ detectVerticalSquash( img, iw, ih ) : 1;
+
+ dw = Math.ceil( d * width / iw );
+ dh = Math.ceil( d * height / ih / vertSquashRatio );
+
+ while ( sy < ih ) {
+ sx = 0;
+ dx = 0;
+ while ( sx < iw ) {
+ tmpCtx.clearRect( 0, 0, d, d );
+ tmpCtx.drawImage( img, -sx, -sy );
+ ctx.drawImage( tmpCanvas, 0, 0, d, d,
+ x + dx, y + dy, dw, dh );
+ sx += d;
+ dx += dw;
+ }
+ sy += d;
+ dy += dh;
+ }
+ ctx.restore();
+ tmpCanvas = tmpCtx = null;
+ };
+ })()
+ });
+ });
- this.flashExec( 'FilePicker', 'init', copy );
- },
+ /**
+ * @fileOverview Transport
+ * @todo 支持chunked传输,优势:
+ * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
+ * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
+ */
+ define('runtime/html5/transport',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var noop = Base.noop,
+ $ = Base.$;
+
+ return Html5Runtime.register( 'Transport', {
+ init: function() {
+ this._status = 0;
+ this._response = null;
+ },
+
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ formData, binary, fr;
+
+ if ( opts.sendAsBinary ) {
+ server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData )) : '';
+
+ binary = blob.getSource();
+ } else {
+ formData = new FormData();
+ $.each( owner._formData, function( k, v ) {
+ formData.append( k, v );
+ });
+
+ formData.append( opts.fileVal, blob.getSource(),
+ opts.filename || owner._formData.name || '' );
+ }
+
+ if ( opts.withCredentials && 'withCredentials' in xhr ) {
+ xhr.open( opts.method, server, true );
+ xhr.withCredentials = true;
+ } else {
+ xhr.open( opts.method, server );
+ }
+
+ this._setRequestHeader( xhr, opts.headers );
+
+ if ( binary ) {
+ // 强制设置成 content-type 为文件流。
+ xhr.overrideMimeType &&
+ xhr.overrideMimeType('application/octet-stream');
+
+ // android直接发送blob会导致服务端接收到的是空文件。
+ // bug详情。
+ // https://code.google.com/p/android/issues/detail?id=39882
+ // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
+ if ( Base.os.android ) {
+ fr = new FileReader();
+
+ fr.onload = function() {
+ xhr.send( this.result );
+ fr = fr.onload = null;
+ };
+
+ fr.readAsArrayBuffer( binary );
+ } else {
+ xhr.send( binary );
+ }
+ } else {
+ xhr.send( formData );
+ }
+ },
+
+ getResponse: function() {
+ return this._response;
+ },
+
+ getResponseAsJson: function() {
+ return this._parseJson( this._response );
+ },
+
+ getResponseHeaders: function() {
+ return this._headers;
+ },
+
+ getStatus: function() {
+ return this._status;
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ xhr.abort();
+
+ this._xhr = xhr = null;
+ }
+ },
+
+ destroy: function() {
+ this.abort();
+ },
+
+ _parseHeader: function(raw) {
+ var ret = {};
+
+ raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
+ ret[key.trim()] = value.trim();
+ });
+
+ return ret;
+ },
+
+ _initAjax: function() {
+ var me = this,
+ xhr = new XMLHttpRequest(),
+ opts = this.options;
+
+ if ( opts.withCredentials && !('withCredentials' in xhr) &&
+ typeof XDomainRequest !== 'undefined' ) {
+ xhr = new XDomainRequest();
+ }
+
+ xhr.upload.onprogress = function( e ) {
+ var percentage = 0;
+
+ if ( e.lengthComputable ) {
+ percentage = e.loaded / e.total;
+ }
+
+ return me.trigger( 'progress', percentage );
+ };
+
+ xhr.onreadystatechange = function() {
+
+ if ( xhr.readyState !== 4 ) {
+ return;
+ }
+
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ me._xhr = null;
+ me._status = xhr.status;
+
+ var separator = '|', // 分隔符
+ // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
+ status = separator + xhr.status +
+ separator + xhr.statusText;
+
+ if ( xhr.status >= 200 && xhr.status < 300 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger('load');
+ } else if ( xhr.status >= 500 && xhr.status < 600 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger( 'error', 'server' + status );
+ }
+
+
+ return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
+ };
+
+ me._xhr = xhr;
+ return xhr;
+ },
+
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.setRequestHeader( key, val );
+ });
+ },
+
+ _parseJson: function( str ) {
+ var json;
+
+ try {
+ json = JSON.parse( str );
+ } catch ( ex ) {
+ json = {};
+ }
+
+ return json;
+ }
+ });
+ });
- destroy: function() {
- this.flashExec( 'FilePicker', 'destroy' );
- }
- });
+ /**
+ * @fileOverview Transport flash实现
+ */
+ define('runtime/html5/md5',[
+ 'runtime/html5/runtime'
+ ], function( FlashRuntime ) {
+
+ /*
+ * Fastest md5 implementation around (JKM md5)
+ * Credits: Joseph Myers
+ *
+ * @see http://www.myersdaily.org/joseph/javascript/md5-text.html
+ * @see http://jsperf.com/md5-shootout/7
+ */
+
+ /* this function is much faster,
+ so if possible we use it. Some IEs
+ are the only ones I know of that
+ need the idiotic second function,
+ generated by an if clause. */
+ var add32 = function (a, b) {
+ return (a + b) & 0xFFFFFFFF;
+ },
+
+ cmn = function (q, a, b, x, s, t) {
+ a = add32(add32(a, q), add32(x, t));
+ return add32((a << s) | (a >>> (32 - s)), b);
+ },
+
+ ff = function (a, b, c, d, x, s, t) {
+ return cmn((b & c) | ((~b) & d), a, b, x, s, t);
+ },
+
+ gg = function (a, b, c, d, x, s, t) {
+ return cmn((b & d) | (c & (~d)), a, b, x, s, t);
+ },
+
+ hh = function (a, b, c, d, x, s, t) {
+ return cmn(b ^ c ^ d, a, b, x, s, t);
+ },
+
+ ii = function (a, b, c, d, x, s, t) {
+ return cmn(c ^ (b | (~d)), a, b, x, s, t);
+ },
+
+ md5cycle = function (x, k) {
+ var a = x[0],
+ b = x[1],
+ c = x[2],
+ d = x[3];
+
+ a = ff(a, b, c, d, k[0], 7, -680876936);
+ d = ff(d, a, b, c, k[1], 12, -389564586);
+ c = ff(c, d, a, b, k[2], 17, 606105819);
+ b = ff(b, c, d, a, k[3], 22, -1044525330);
+ a = ff(a, b, c, d, k[4], 7, -176418897);
+ d = ff(d, a, b, c, k[5], 12, 1200080426);
+ c = ff(c, d, a, b, k[6], 17, -1473231341);
+ b = ff(b, c, d, a, k[7], 22, -45705983);
+ a = ff(a, b, c, d, k[8], 7, 1770035416);
+ d = ff(d, a, b, c, k[9], 12, -1958414417);
+ c = ff(c, d, a, b, k[10], 17, -42063);
+ b = ff(b, c, d, a, k[11], 22, -1990404162);
+ a = ff(a, b, c, d, k[12], 7, 1804603682);
+ d = ff(d, a, b, c, k[13], 12, -40341101);
+ c = ff(c, d, a, b, k[14], 17, -1502002290);
+ b = ff(b, c, d, a, k[15], 22, 1236535329);
+
+ a = gg(a, b, c, d, k[1], 5, -165796510);
+ d = gg(d, a, b, c, k[6], 9, -1069501632);
+ c = gg(c, d, a, b, k[11], 14, 643717713);
+ b = gg(b, c, d, a, k[0], 20, -373897302);
+ a = gg(a, b, c, d, k[5], 5, -701558691);
+ d = gg(d, a, b, c, k[10], 9, 38016083);
+ c = gg(c, d, a, b, k[15], 14, -660478335);
+ b = gg(b, c, d, a, k[4], 20, -405537848);
+ a = gg(a, b, c, d, k[9], 5, 568446438);
+ d = gg(d, a, b, c, k[14], 9, -1019803690);
+ c = gg(c, d, a, b, k[3], 14, -187363961);
+ b = gg(b, c, d, a, k[8], 20, 1163531501);
+ a = gg(a, b, c, d, k[13], 5, -1444681467);
+ d = gg(d, a, b, c, k[2], 9, -51403784);
+ c = gg(c, d, a, b, k[7], 14, 1735328473);
+ b = gg(b, c, d, a, k[12], 20, -1926607734);
+
+ a = hh(a, b, c, d, k[5], 4, -378558);
+ d = hh(d, a, b, c, k[8], 11, -2022574463);
+ c = hh(c, d, a, b, k[11], 16, 1839030562);
+ b = hh(b, c, d, a, k[14], 23, -35309556);
+ a = hh(a, b, c, d, k[1], 4, -1530992060);
+ d = hh(d, a, b, c, k[4], 11, 1272893353);
+ c = hh(c, d, a, b, k[7], 16, -155497632);
+ b = hh(b, c, d, a, k[10], 23, -1094730640);
+ a = hh(a, b, c, d, k[13], 4, 681279174);
+ d = hh(d, a, b, c, k[0], 11, -358537222);
+ c = hh(c, d, a, b, k[3], 16, -722521979);
+ b = hh(b, c, d, a, k[6], 23, 76029189);
+ a = hh(a, b, c, d, k[9], 4, -640364487);
+ d = hh(d, a, b, c, k[12], 11, -421815835);
+ c = hh(c, d, a, b, k[15], 16, 530742520);
+ b = hh(b, c, d, a, k[2], 23, -995338651);
+
+ a = ii(a, b, c, d, k[0], 6, -198630844);
+ d = ii(d, a, b, c, k[7], 10, 1126891415);
+ c = ii(c, d, a, b, k[14], 15, -1416354905);
+ b = ii(b, c, d, a, k[5], 21, -57434055);
+ a = ii(a, b, c, d, k[12], 6, 1700485571);
+ d = ii(d, a, b, c, k[3], 10, -1894986606);
+ c = ii(c, d, a, b, k[10], 15, -1051523);
+ b = ii(b, c, d, a, k[1], 21, -2054922799);
+ a = ii(a, b, c, d, k[8], 6, 1873313359);
+ d = ii(d, a, b, c, k[15], 10, -30611744);
+ c = ii(c, d, a, b, k[6], 15, -1560198380);
+ b = ii(b, c, d, a, k[13], 21, 1309151649);
+ a = ii(a, b, c, d, k[4], 6, -145523070);
+ d = ii(d, a, b, c, k[11], 10, -1120210379);
+ c = ii(c, d, a, b, k[2], 15, 718787259);
+ b = ii(b, c, d, a, k[9], 21, -343485551);
+
+ x[0] = add32(a, x[0]);
+ x[1] = add32(b, x[1]);
+ x[2] = add32(c, x[2]);
+ x[3] = add32(d, x[3]);
+ },
+
+ /* there needs to be support for Unicode here,
+ * unless we pretend that we can redefine the MD-5
+ * algorithm for multi-byte characters (perhaps
+ * by adding every four 16-bit characters and
+ * shortening the sum to 32 bits). Otherwise
+ * I suggest performing MD-5 as if every character
+ * was two bytes--e.g., 0040 0025 = @%--but then
+ * how will an ordinary MD-5 sum be matched?
+ * There is no way to standardize text to something
+ * like UTF-8 before transformation; speed cost is
+ * utterly prohibitive. The JavaScript standard
+ * itself needs to look at this: it should start
+ * providing access to strings as preformed UTF-8
+ * 8-bit unsigned value arrays.
+ */
+ md5blk = function (s) {
+ var md5blks = [],
+ i; /* Andy King said do it this way. */
+
+ for (i = 0; i < 64; i += 4) {
+ md5blks[i >> 2] = s.charCodeAt(i) + (s.charCodeAt(i + 1) << 8) + (s.charCodeAt(i + 2) << 16) + (s.charCodeAt(i + 3) << 24);
+ }
+ return md5blks;
+ },
+
+ md5blk_array = function (a) {
+ var md5blks = [],
+ i; /* Andy King said do it this way. */
+
+ for (i = 0; i < 64; i += 4) {
+ md5blks[i >> 2] = a[i] + (a[i + 1] << 8) + (a[i + 2] << 16) + (a[i + 3] << 24);
+ }
+ return md5blks;
+ },
+
+ md51 = function (s) {
+ var n = s.length,
+ state = [1732584193, -271733879, -1732584194, 271733878],
+ i,
+ length,
+ tail,
+ tmp,
+ lo,
+ hi;
+
+ for (i = 64; i <= n; i += 64) {
+ md5cycle(state, md5blk(s.substring(i - 64, i)));
+ }
+ s = s.substring(i - 64);
+ length = s.length;
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= s.charCodeAt(i) << ((i % 4) << 3);
+ }
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Beware that the final length might not fit in 32 bits so we take care of that
+ tmp = n * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+
+ md5cycle(state, tail);
+ return state;
+ },
+
+ md51_array = function (a) {
+ var n = a.length,
+ state = [1732584193, -271733879, -1732584194, 271733878],
+ i,
+ length,
+ tail,
+ tmp,
+ lo,
+ hi;
+
+ for (i = 64; i <= n; i += 64) {
+ md5cycle(state, md5blk_array(a.subarray(i - 64, i)));
+ }
+
+ // Not sure if it is a bug, however IE10 will always produce a sub array of length 1
+ // containing the last element of the parent array if the sub array specified starts
+ // beyond the length of the parent array - weird.
+ // https://connect.microsoft.com/IE/feedback/details/771452/typed-array-subarray-issue
+ a = (i - 64) < n ? a.subarray(i - 64) : new Uint8Array(0);
+
+ length = a.length;
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= a[i] << ((i % 4) << 3);
+ }
+
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Beware that the final length might not fit in 32 bits so we take care of that
+ tmp = n * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+
+ md5cycle(state, tail);
+
+ return state;
+ },
+
+ hex_chr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'],
+
+ rhex = function (n) {
+ var s = '',
+ j;
+ for (j = 0; j < 4; j += 1) {
+ s += hex_chr[(n >> (j * 8 + 4)) & 0x0F] + hex_chr[(n >> (j * 8)) & 0x0F];
+ }
+ return s;
+ },
+
+ hex = function (x) {
+ var i;
+ for (i = 0; i < x.length; i += 1) {
+ x[i] = rhex(x[i]);
+ }
+ return x.join('');
+ },
+
+ md5 = function (s) {
+ return hex(md51(s));
+ },
+
+
+
+ ////////////////////////////////////////////////////////////////////////////
+
+ /**
+ * SparkMD5 OOP implementation.
+ *
+ * Use this class to perform an incremental md5, otherwise use the
+ * static methods instead.
+ */
+ SparkMD5 = function () {
+ // call reset to init the instance
+ this.reset();
+ };
+
+
+ // In some cases the fast add32 function cannot be used..
+ if (md5('hello') !== '5d41402abc4b2a76b9719d911017c592') {
+ add32 = function (x, y) {
+ var lsw = (x & 0xFFFF) + (y & 0xFFFF),
+ msw = (x >> 16) + (y >> 16) + (lsw >> 16);
+ return (msw << 16) | (lsw & 0xFFFF);
+ };
+ }
+
+
+ /**
+ * Appends a string.
+ * A conversion will be applied if an utf8 string is detected.
+ *
+ * @param {String} str The string to be appended
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.append = function (str) {
+ // converts the string to utf8 bytes if necessary
+ if (/[\u0080-\uFFFF]/.test(str)) {
+ str = unescape(encodeURIComponent(str));
+ }
+
+ // then append as binary
+ this.appendBinary(str);
+
+ return this;
+ };
+
+ /**
+ * Appends a binary string.
+ *
+ * @param {String} contents The binary string to be appended
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.appendBinary = function (contents) {
+ this._buff += contents;
+ this._length += contents.length;
+
+ var length = this._buff.length,
+ i;
+
+ for (i = 64; i <= length; i += 64) {
+ md5cycle(this._state, md5blk(this._buff.substring(i - 64, i)));
+ }
+
+ this._buff = this._buff.substr(i - 64);
+
+ return this;
+ };
+
+ /**
+ * Finishes the incremental computation, reseting the internal state and
+ * returning the result.
+ * Use the raw parameter to obtain the raw result instead of the hex one.
+ *
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.prototype.end = function (raw) {
+ var buff = this._buff,
+ length = buff.length,
+ i,
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
+ ret;
+
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= buff.charCodeAt(i) << ((i % 4) << 3);
+ }
+
+ this._finish(tail, length);
+ ret = !!raw ? this._state : hex(this._state);
+
+ this.reset();
+
+ return ret;
+ };
+
+ /**
+ * Finish the final calculation based on the tail.
+ *
+ * @param {Array} tail The tail (will be modified)
+ * @param {Number} length The length of the remaining buffer
+ */
+ SparkMD5.prototype._finish = function (tail, length) {
+ var i = length,
+ tmp,
+ lo,
+ hi;
+
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(this._state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Do the final computation based on the tail and length
+ // Beware that the final length may not fit in 32 bits so we take care of that
+ tmp = this._length * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+ md5cycle(this._state, tail);
+ };
+
+ /**
+ * Resets the internal state of the computation.
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.reset = function () {
+ this._buff = "";
+ this._length = 0;
+ this._state = [1732584193, -271733879, -1732584194, 271733878];
+
+ return this;
+ };
+
+ /**
+ * Releases memory used by the incremental buffer and other aditional
+ * resources. If you plan to use the instance again, use reset instead.
+ */
+ SparkMD5.prototype.destroy = function () {
+ delete this._state;
+ delete this._buff;
+ delete this._length;
+ };
+
+
+ /**
+ * Performs the md5 hash on a string.
+ * A conversion will be applied if utf8 string is detected.
+ *
+ * @param {String} str The string
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.hash = function (str, raw) {
+ // converts the string to utf8 bytes if necessary
+ if (/[\u0080-\uFFFF]/.test(str)) {
+ str = unescape(encodeURIComponent(str));
+ }
+
+ var hash = md51(str);
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ /**
+ * Performs the md5 hash on a binary string.
+ *
+ * @param {String} content The binary string
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.hashBinary = function (content, raw) {
+ var hash = md51(content);
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ /**
+ * SparkMD5 OOP implementation for array buffers.
+ *
+ * Use this class to perform an incremental md5 ONLY for array buffers.
+ */
+ SparkMD5.ArrayBuffer = function () {
+ // call reset to init the instance
+ this.reset();
+ };
+
+ ////////////////////////////////////////////////////////////////////////////
+
+ /**
+ * Appends an array buffer.
+ *
+ * @param {ArrayBuffer} arr The array to be appended
+ *
+ * @return {SparkMD5.ArrayBuffer} The instance itself
+ */
+ SparkMD5.ArrayBuffer.prototype.append = function (arr) {
+ // TODO: we could avoid the concatenation here but the algorithm would be more complex
+ // if you find yourself needing extra performance, please make a PR.
+ var buff = this._concatArrayBuffer(this._buff, arr),
+ length = buff.length,
+ i;
+
+ this._length += arr.byteLength;
+
+ for (i = 64; i <= length; i += 64) {
+ md5cycle(this._state, md5blk_array(buff.subarray(i - 64, i)));
+ }
+
+ // Avoids IE10 weirdness (documented above)
+ this._buff = (i - 64) < length ? buff.subarray(i - 64) : new Uint8Array(0);
+
+ return this;
+ };
+
+ /**
+ * Finishes the incremental computation, reseting the internal state and
+ * returning the result.
+ * Use the raw parameter to obtain the raw result instead of the hex one.
+ *
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.ArrayBuffer.prototype.end = function (raw) {
+ var buff = this._buff,
+ length = buff.length,
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
+ i,
+ ret;
+
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= buff[i] << ((i % 4) << 3);
+ }
+
+ this._finish(tail, length);
+ ret = !!raw ? this._state : hex(this._state);
+
+ this.reset();
+
+ return ret;
+ };
+
+ SparkMD5.ArrayBuffer.prototype._finish = SparkMD5.prototype._finish;
+
+ /**
+ * Resets the internal state of the computation.
+ *
+ * @return {SparkMD5.ArrayBuffer} The instance itself
+ */
+ SparkMD5.ArrayBuffer.prototype.reset = function () {
+ this._buff = new Uint8Array(0);
+ this._length = 0;
+ this._state = [1732584193, -271733879, -1732584194, 271733878];
+
+ return this;
+ };
+
+ /**
+ * Releases memory used by the incremental buffer and other aditional
+ * resources. If you plan to use the instance again, use reset instead.
+ */
+ SparkMD5.ArrayBuffer.prototype.destroy = SparkMD5.prototype.destroy;
+
+ /**
+ * Concats two array buffers, returning a new one.
+ *
+ * @param {ArrayBuffer} first The first array buffer
+ * @param {ArrayBuffer} second The second array buffer
+ *
+ * @return {ArrayBuffer} The new array buffer
+ */
+ SparkMD5.ArrayBuffer.prototype._concatArrayBuffer = function (first, second) {
+ var firstLength = first.length,
+ result = new Uint8Array(firstLength + second.byteLength);
+
+ result.set(first);
+ result.set(new Uint8Array(second), firstLength);
+
+ return result;
+ };
+
+ /**
+ * Performs the md5 hash on an array buffer.
+ *
+ * @param {ArrayBuffer} arr The array buffer
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.ArrayBuffer.hash = function (arr, raw) {
+ var hash = md51_array(new Uint8Array(arr));
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ return FlashRuntime.register( 'Md5', {
+ init: function() {
+ // do nothing.
+ },
+
+ loadFromBlob: function( file ) {
+ var blob = file.getSource(),
+ chunkSize = 2 * 1024 * 1024,
+ chunks = Math.ceil( blob.size / chunkSize ),
+ chunk = 0,
+ owner = this.owner,
+ spark = new SparkMD5.ArrayBuffer(),
+ me = this,
+ blobSlice = blob.mozSlice || blob.webkitSlice || blob.slice,
+ loadNext, fr;
+
+ fr = new FileReader();
+
+ loadNext = function() {
+ var start, end;
+
+ start = chunk * chunkSize;
+ end = Math.min( start + chunkSize, blob.size );
+
+ fr.onload = function( e ) {
+ spark.append( e.target.result );
+ owner.trigger( 'progress', {
+ total: file.size,
+ loaded: end
+ });
+ };
+
+ fr.onloadend = function() {
+ fr.onloadend = fr.onload = null;
+
+ if ( ++chunk < chunks ) {
+ setTimeout( loadNext, 1 );
+ } else {
+ setTimeout(function(){
+ owner.trigger('load');
+ me.result = spark.end();
+ loadNext = file = blob = spark = null;
+ owner.trigger('complete');
+ }, 50 );
+ }
+ };
+
+ fr.readAsArrayBuffer( blobSlice.call( blob, start, end ) );
+ };
+
+ loadNext();
+ },
+
+ getResult: function() {
+ return this.result;
+ }
+ });
});
- /**
- * @fileOverview 图片压缩
- */
- define('runtime/flash/image',[
- 'runtime/flash/runtime'
- ], function( FlashRuntime ) {
-
- return FlashRuntime.register( 'Image', {
- // init: function( options ) {
- // var owner = this.owner;
-
- // this.flashExec( 'Image', 'init', options );
- // owner.on( 'load', function() {
- // debugger;
- // });
- // },
-
- loadFromBlob: function( blob ) {
- var owner = this.owner;
-
- owner.info() && this.flashExec( 'Image', 'info', owner.info() );
- owner.meta() && this.flashExec( 'Image', 'meta', owner.meta() );
-
- this.flashExec( 'Image', 'loadFromBlob', blob.uid );
- }
- });
+ /**
+ * @fileOverview FlashRuntime
+ */
+ define('runtime/flash/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var $ = Base.$,
+ type = 'flash',
+ components = {};
+
+
+ function getFlashVersion() {
+ var version;
+
+ try {
+ version = navigator.plugins[ 'Shockwave Flash' ];
+ version = version.description;
+ } catch ( ex ) {
+ try {
+ version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash')
+ .GetVariable('$version');
+ } catch ( ex2 ) {
+ version = '0.0';
+ }
+ }
+ version = version.match( /\d+/g );
+ return parseFloat( version[ 0 ] + '.' + version[ 1 ], 10 );
+ }
+
+ function FlashRuntime() {
+ var pool = {},
+ clients = {},
+ destroy = this.destroy,
+ me = this,
+ jsreciver = Base.guid('webuploader_');
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/ ) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ clients[ uid ] = client;
+
+ if ( components[ comp ] ) {
+ if ( !pool[ uid ] ) {
+ pool[ uid ] = new components[ comp ]( client, me );
+ }
+
+ instance = pool[ uid ];
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+
+ return me.flashExec.apply( client, arguments );
+ };
+
+ function handler( evt, obj ) {
+ var type = evt.type || evt,
+ parts, uid;
+
+ parts = type.split('::');
+ uid = parts[ 0 ];
+ type = parts[ 1 ];
+
+ // console.log.apply( console, arguments );
+
+ if ( type === 'Ready' && uid === me.uid ) {
+ me.trigger('ready');
+ } else if ( clients[ uid ] ) {
+ clients[ uid ].trigger( type.toLowerCase(), evt, obj );
+ }
+
+ // Base.log( evt, obj );
+ }
+
+ // flash的接受器。
+ window[ jsreciver ] = function() {
+ var args = arguments;
+
+ // 为了能捕获得到。
+ setTimeout(function() {
+ handler.apply( null, args );
+ }, 1 );
+ };
+
+ this.jsreciver = jsreciver;
+
+ this.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+
+ this.flashExec = function( comp, fn ) {
+ var flash = me.getFlash(),
+ args = Base.slice( arguments, 2 );
+
+ return flash.exec( this.uid, comp, fn, args );
+ };
+
+ // @todo
+ }
+
+ Base.inherits( Runtime, {
+ constructor: FlashRuntime,
+
+ init: function() {
+ var container = this.getContainer(),
+ opts = this.options,
+ html;
+
+ // if not the minimal height, shims are not initialized
+ // in older browsers (e.g FF3.6, IE6,7,8, Safari 4.0,5.0, etc)
+ container.css({
+ position: 'absolute',
+ top: '-8px',
+ left: '-8px',
+ width: '9px',
+ height: '9px',
+ overflow: 'hidden'
+ });
+
+ // insert flash object
+ html = '';
+
+ container.html( html );
+ },
+
+ getFlash: function() {
+ if ( this._flash ) {
+ return this._flash;
+ }
+
+ this._flash = $( '#' + this.uid ).get( 0 );
+ return this._flash;
+ }
+
+ });
+
+ FlashRuntime.register = function( name, component ) {
+ component = components[ name ] = Base.inherits( CompBase, $.extend({
+
+ // @todo fix this later
+ flashExec: function() {
+ var owner = this.owner,
+ runtime = this.getRuntime();
+
+ return runtime.flashExec.apply( owner, arguments );
+ }
+ }, component ) );
+
+ return component;
+ };
+
+ if ( getFlashVersion() >= 11.4 ) {
+ Runtime.addRuntime( type, FlashRuntime );
+ }
+
+ return FlashRuntime;
});
- /**
- * @fileOverview Transport flash实现
- */
- define('runtime/flash/transport',[
- 'base',
- 'runtime/flash/runtime',
- 'runtime/client'
- ], function( Base, FlashRuntime, RuntimeClient ) {
- var $ = Base.$;
-
- return FlashRuntime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- this._responseJson = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- binary;
-
- xhr.connectRuntime( blob.ruid );
-
- if ( opts.sendAsBinary ) {
- server += (/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData );
-
- binary = blob.uid;
- } else {
- $.each( owner._formData, function( k, v ) {
- xhr.exec( 'append', k, v );
- });
-
- xhr.exec( 'appendBlob', opts.fileVal, blob.uid,
- opts.filename || owner._formData.name || '' );
- }
-
- this._setRequestHeader( xhr, opts.headers );
- xhr.exec( 'send', {
- method: opts.method,
- url: server,
- forceURLStream: opts.forceURLStream,
- mimeType: 'application/octet-stream'
- }, binary );
- },
-
- getStatus: function() {
- return this._status;
- },
-
- getResponse: function() {
- return this._response || '';
- },
-
- getResponseAsJson: function() {
- return this._responseJson;
- },
-
- getResponseHeaders: function() {
- // flash 暂不支持
- return {};
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.exec('abort');
- xhr.destroy();
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new RuntimeClient('XMLHttpRequest');
-
- xhr.on( 'uploadprogress progress', function( e ) {
- var percent = e.loaded / e.total;
- percent = Math.min( 1, Math.max( 0, percent ) );
- return me.trigger( 'progress', percent );
- });
-
- xhr.on( 'load', function() {
- var status = xhr.exec('getStatus'),
- readBody = false,
- err = '',
- p;
-
- xhr.off();
- me._xhr = null;
-
- if ( status >= 200 && status < 300 ) {
- readBody = true;
- } else if ( status >= 500 && status < 600 ) {
- readBody = true;
- err = 'server-'+status;
- } else {
- err = 'http-'+status;
- }
-
- if ( readBody ) {
- me._response = xhr.exec('getResponse');
- me._response = decodeURIComponent( me._response );
-
- // flash 处理可能存在 bug, 没辙只能靠 js 了
- // try {
- // me._responseJson = xhr.exec('getResponseAsJson');
- // } catch ( error ) {
-
- p = function( s ) {
- try {
- if (window.JSON && window.JSON.parse) {
- return JSON.parse(s);
- }
-
- return new Function('return ' + s).call();
- } catch ( err ) {
- return {};
- }
- };
- me._responseJson = me._response ? p(me._response) : {};
-
- // }
- }
-
- xhr.destroy();
- xhr = null;
-
- return err ? me.trigger( 'error', err ) : me.trigger('load');
- });
-
- xhr.on( 'error', function() {
- var status = xhr.exec('getStatus'),err = status?'http-'+status:'http';
- xhr.off();
- me._xhr = null;
- me.trigger( 'error', err );
- });
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.exec( 'setRequestHeader', key, val );
- });
- }
- });
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/flash/filepicker',[
+ 'base',
+ 'runtime/flash/runtime'
+ ], function( Base, FlashRuntime ) {
+ var $ = Base.$;
+
+ return FlashRuntime.register( 'FilePicker', {
+ init: function( opts ) {
+ var copy = $.extend({}, opts ),
+ len, i;
+
+ // 修复Flash再没有设置title的情况下无法弹出flash文件选择框的bug.
+ len = copy.accept && copy.accept.length;
+ for ( i = 0; i < len; i++ ) {
+ if ( !copy.accept[ i ].title ) {
+ copy.accept[ i ].title = 'Files';
+ }
+ }
+
+ delete copy.button;
+ delete copy.id;
+ delete copy.container;
+
+ this.flashExec( 'FilePicker', 'init', copy );
+ },
+
+ destroy: function() {
+ this.flashExec( 'FilePicker', 'destroy' );
+ }
+ });
});
-
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/flash/blob',[
- 'runtime/flash/runtime',
- 'lib/blob'
- ], function( FlashRuntime, Blob ) {
-
- return FlashRuntime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.flashExec( 'Blob', 'slice', start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
+ /**
+ * @fileOverview 图片压缩
+ */
+ define('runtime/flash/image',[
+ 'runtime/flash/runtime'
+ ], function( FlashRuntime ) {
+
+ return FlashRuntime.register( 'Image', {
+ // init: function( options ) {
+ // var owner = this.owner;
+
+ // this.flashExec( 'Image', 'init', options );
+ // owner.on( 'load', function() {
+ // debugger;
+ // });
+ // },
+
+ loadFromBlob: function( blob ) {
+ var owner = this.owner;
+
+ owner.info() && this.flashExec( 'Image', 'info', owner.info() );
+ owner.meta() && this.flashExec( 'Image', 'meta', owner.meta() );
+
+ this.flashExec( 'Image', 'loadFromBlob', blob.uid );
+ }
+ });
});
- /**
- * @fileOverview Md5 flash实现
- */
- define('runtime/flash/md5',[
- 'runtime/flash/runtime'
- ], function( FlashRuntime ) {
-
- return FlashRuntime.register( 'Md5', {
- init: function() {
- // do nothing.
- },
+ /**
+ * @fileOverview Transport flash实现
+ */
+ define('runtime/flash/transport',[
+ 'base',
+ 'runtime/flash/runtime',
+ 'runtime/client'
+ ], function( Base, FlashRuntime, RuntimeClient ) {
+ var $ = Base.$;
+
+ return FlashRuntime.register( 'Transport', {
+ init: function() {
+ this._status = 0;
+ this._response = null;
+ this._responseJson = null;
+ },
+
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ binary;
+
+ xhr.connectRuntime( blob.ruid );
+
+ if ( opts.sendAsBinary ) {
+ server += (/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData );
+
+ binary = blob.uid;
+ } else {
+ $.each( owner._formData, function( k, v ) {
+ xhr.exec( 'append', k, v );
+ });
+
+ xhr.exec( 'appendBlob', opts.fileVal, blob.uid,
+ opts.filename || owner._formData.name || '' );
+ }
+
+ this._setRequestHeader( xhr, opts.headers );
+ xhr.exec( 'send', {
+ method: opts.method,
+ url: server,
+ forceURLStream: opts.forceURLStream,
+ mimeType: 'application/octet-stream'
+ }, binary );
+ },
+
+ getStatus: function() {
+ return this._status;
+ },
+
+ getResponse: function() {
+ return this._response || '';
+ },
+
+ getResponseAsJson: function() {
+ return this._responseJson;
+ },
+
+ getResponseHeaders: function() {
+ // flash 暂不支持
+ return {};
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.exec('abort');
+ xhr.destroy();
+ this._xhr = xhr = null;
+ }
+ },
+
+ destroy: function() {
+ this.abort();
+ },
+
+ _initAjax: function() {
+ var me = this,
+ xhr = new RuntimeClient('XMLHttpRequest');
+
+ xhr.on( 'uploadprogress progress', function( e ) {
+ var percent = e.loaded / e.total;
+ percent = Math.min( 1, Math.max( 0, percent ) );
+ return me.trigger( 'progress', percent );
+ });
+
+ xhr.on( 'load', function() {
+ var status = xhr.exec('getStatus'),
+ readBody = false,
+ err = '',
+ p;
+
+ xhr.off();
+ me._xhr = null;
+
+ if ( status >= 200 && status < 300 ) {
+ readBody = true;
+ } else if ( status >= 500 && status < 600 ) {
+ readBody = true;
+ err = 'server-'+status;
+ } else {
+ err = 'http-'+status;
+ }
+
+ if ( readBody ) {
+ me._response = xhr.exec('getResponse');
+ me._response = decodeURIComponent( me._response );
+
+ // flash 处理可能存在 bug, 没辙只能靠 js 了
+ // try {
+ // me._responseJson = xhr.exec('getResponseAsJson');
+ // } catch ( error ) {
+
+ p = function( s ) {
+ try {
+ if (window.JSON && window.JSON.parse) {
+ return JSON.parse(s);
+ }
+
+ return new Function('return ' + s).call();
+ } catch ( err ) {
+ return {};
+ }
+ };
+ me._responseJson = me._response ? p(me._response) : {};
+
+ // }
+ }
+
+ xhr.destroy();
+ xhr = null;
+
+ return err ? me.trigger( 'error', err ) : me.trigger('load');
+ });
+
+ xhr.on( 'error', function() {
+ var status = xhr.exec('getStatus'),err = status?'http-'+status:'http';
+ xhr.off();
+ me._xhr = null;
+ me.trigger( 'error', err );
+ });
+
+ me._xhr = xhr;
+ return xhr;
+ },
+
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.exec( 'setRequestHeader', key, val );
+ });
+ }
+ });
+ });
- loadFromBlob: function( blob ) {
- return this.flashExec( 'Md5', 'loadFromBlob', blob.uid );
- }
- });
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/flash/blob',[
+ 'runtime/flash/runtime',
+ 'lib/blob'
+ ], function( FlashRuntime, Blob ) {
+
+ return FlashRuntime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.flashExec( 'Blob', 'slice', start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
});
- /**
- * @fileOverview 完全版本。
- */
- define('preset/all',[
- 'base',
-
- // widgets
- 'widgets/filednd',
- 'widgets/filepaste',
- 'widgets/filepicker',
- 'widgets/image',
- 'widgets/queue',
- 'widgets/runtime',
- 'widgets/upload',
- 'widgets/validator',
- 'widgets/md5',
-
- // runtimes
- // html5
- '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',
-
- // flash
- 'runtime/flash/filepicker',
- 'runtime/flash/image',
- 'runtime/flash/transport',
- 'runtime/flash/blob',
- 'runtime/flash/md5'
- ], function( Base ) {
- return Base;
+ /**
+ * @fileOverview Md5 flash实现
+ */
+ define('runtime/flash/md5',[
+ 'runtime/flash/runtime'
+ ], function( FlashRuntime ) {
+
+ return FlashRuntime.register( 'Md5', {
+ init: function() {
+ // do nothing.
+ },
+
+ loadFromBlob: function( blob ) {
+ return this.flashExec( 'Md5', 'loadFromBlob', blob.uid );
+ }
+ });
});
- /**
- * @fileOverview 日志组件,主要用来收集错误信息,可以帮助 webuploader 更好的定位问题和发展。
- *
- * 如果您不想要启用此功能,请在打包的时候去掉 log 模块。
- *
- * 或者可以在初始化的时候通过 options.disableWidgets 属性禁用。
- *
- * 如:
- * WebUploader.create({
- * ...
- *
- * disableWidgets: 'log',
- *
- * ...
- * })
- */
- define('widgets/log',[
- 'base',
- 'uploader',
- 'widgets/widget'
- ], function( Base, Uploader ) {
- var $ = Base.$,
- logUrl = ' http://static.tieba.baidu.com/tb/pms/img/st.gif??',
- product = (location.hostname || location.host || 'protected').toLowerCase(),
-
- // 只针对 baidu 内部产品用户做统计功能。
- enable = product && /baidu/i.exec(product),
- base;
-
- if (!enable) {
- return;
- }
-
- base = {
- dv: 3,
- master: 'webuploader',
- online: /test/.exec(product) ? 0 : 1,
- module: '',
- product: product,
- type: 0
- };
-
- function send(data) {
- var obj = $.extend({}, base, data),
- url = logUrl.replace(/^(.*)\?/, '$1' + $.param( obj )),
- image = new Image();
-
- image.src = url;
- }
-
- return Uploader.register({
- name: 'log',
-
- init: function() {
- var owner = this.owner,
- count = 0,
- size = 0;
-
- owner
- .on('error', function(code) {
- send({
- type: 2,
- c_error_code: code
- });
- })
- .on('uploadError', function(file, reason) {
- send({
- type: 2,
- c_error_code: 'UPLOAD_ERROR',
- c_reason: '' + reason
- });
- })
- .on('uploadComplete', function(file) {
- count++;
- size += file.size;
- }).
- on('uploadFinished', function() {
- send({
- c_count: count,
- c_size: size
- });
- count = size = 0;
- });
-
- send({
- c_usage: 1
- });
- }
- });
+ /**
+ * @fileOverview 完全版本。
+ */
+ define('preset/all',[
+ 'base',
+
+ // widgets
+ 'widgets/filednd',
+ 'widgets/filepaste',
+ 'widgets/filepicker',
+ 'widgets/image',
+ 'widgets/queue',
+ 'widgets/runtime',
+ 'widgets/upload',
+ 'widgets/validator',
+ 'widgets/md5',
+
+ // runtimes
+ // html5
+ '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',
+
+ // flash
+ 'runtime/flash/filepicker',
+ 'runtime/flash/image',
+ 'runtime/flash/transport',
+ 'runtime/flash/blob',
+ 'runtime/flash/md5'
+ ], function( Base ) {
+ return Base;
});
- /**
- * @fileOverview Uploader上传类
- */
- define('webuploader',[
- 'preset/all',
- 'widgets/log'
- ], function( preset ) {
- return preset;
+ /**
+ * @fileOverview 日志组件,主要用来收集错误信息,可以帮助 webuploader 更好的定位问题和发展。
+ *
+ * 如果您不想要启用此功能,请在打包的时候去掉 log 模块。
+ *
+ * 或者可以在初始化的时候通过 options.disableWidgets 属性禁用。
+ *
+ * 如:
+ * WebUploader.create({
+ * ...
+ *
+ * disableWidgets: 'log',
+ *
+ * ...
+ * })
+ */
+ define('widgets/log',[
+ 'base',
+ 'uploader',
+ 'widgets/widget'
+ ], function( Base, Uploader ) {
+ var $ = Base.$,
+ logUrl = ' http://static.tieba.baidu.com/tb/pms/img/st.gif??',
+ product = (location.hostname || location.host || 'protected').toLowerCase(),
+
+ // 只针对 baidu 内部产品用户做统计功能。
+ enable = product && /baidu/i.exec(product),
+ base;
+
+ if (!enable) {
+ return;
+ }
+
+ base = {
+ dv: 3,
+ master: 'webuploader',
+ online: /test/.exec(product) ? 0 : 1,
+ module: '',
+ product: product,
+ type: 0
+ };
+
+ function send(data) {
+ var obj = $.extend({}, base, data),
+ url = logUrl.replace(/^(.*)\?/, '$1' + $.param( obj )),
+ image = new Image();
+
+ image.src = url;
+ }
+
+ return Uploader.register({
+ name: 'log',
+
+ init: function() {
+ var owner = this.owner,
+ count = 0,
+ size = 0;
+
+ owner
+ .on('error', function(code) {
+ send({
+ type: 2,
+ c_error_code: code
+ });
+ })
+ .on('uploadError', function(file, reason) {
+ send({
+ type: 2,
+ c_error_code: 'UPLOAD_ERROR',
+ c_reason: '' + reason
+ });
+ })
+ .on('uploadComplete', function(file) {
+ count++;
+ size += file.size;
+ }).
+ on('uploadFinished', function() {
+ send({
+ c_count: count,
+ c_size: size
+ });
+ count = size = 0;
+ });
+
+ send({
+ c_usage: 1
+ });
+ }
+ });
});
-
- var _require = require;
- return _require('webuploader');
-});
+ /**
+ * @fileOverview Uploader上传类
+ */
+ define('webuploader',[
+ 'preset/all',
+ 'widgets/log'
+ ], function( preset ) {
+ return preset;
+ });
+
+ var _require = require;
+ return _require('webuploader');
+});
diff --git a/dist/webuploader.html5nodepend.js b/dist/webuploader.html5nodepend.js
index 9d55860ea..eec28617a 100644
--- a/dist/webuploader.html5nodepend.js
+++ b/dist/webuploader.html5nodepend.js
@@ -1,6686 +1,6686 @@
-/*! WebUploader 0.1.8-alpha */
+/*! WebUploader 0.1.8-alpha */
-/**
- * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
- *
- * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
- */
-(function( root, factory ) {
- var modules = {},
-
- // 内部require, 简单不完全实现。
- // https://github.com/amdjs/amdjs-api/wiki/require
- _require = function( deps, callback ) {
- var args, len, i;
-
- // 如果deps不是数组,则直接返回指定module
- if ( typeof deps === 'string' ) {
- return getModule( deps );
- } else {
- args = [];
- for( len = deps.length, i = 0; i < len; i++ ) {
- args.push( getModule( deps[ i ] ) );
- }
-
- return callback.apply( null, args );
- }
- },
-
- // 内部define,暂时不支持不指定id.
- _define = function( id, deps, factory ) {
- if ( arguments.length === 2 ) {
- factory = deps;
- deps = null;
- }
-
- _require( deps || [], function() {
- setModule( id, factory, arguments );
- });
- },
-
- // 设置module, 兼容CommonJs写法。
- setModule = function( id, factory, args ) {
- var module = {
- exports: factory
- },
- returned;
-
- if ( typeof factory === 'function' ) {
- args.length || (args = [ _require, module.exports, module ]);
- returned = factory.apply( null, args );
- returned !== undefined && (module.exports = returned);
- }
-
- modules[ id ] = module.exports;
- },
-
- // 根据id获取module
- getModule = function( id ) {
- var module = modules[ id ] || root[ id ];
-
- if ( !module ) {
- throw new Error( '`' + id + '` is undefined' );
- }
-
- return module;
- },
-
- // 将所有modules,将路径ids装换成对象。
- exportsTo = function( obj ) {
- var key, host, parts, part, last, ucFirst;
-
- // make the first character upper case.
- ucFirst = function( str ) {
- return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
- };
-
- for ( key in modules ) {
- host = obj;
-
- if ( !modules.hasOwnProperty( key ) ) {
- continue;
- }
-
- parts = key.split('/');
- last = ucFirst( parts.pop() );
-
- while( (part = ucFirst( parts.shift() )) ) {
- host[ part ] = host[ part ] || {};
- host = host[ part ];
- }
-
- host[ last ] = modules[ key ];
- }
-
- return obj;
- },
-
- makeExport = function( dollar ) {
- root.__dollar = dollar;
-
- // exports every module.
- return exportsTo( factory( root, _define, _require ) );
- },
-
- origin;
-
- if ( typeof module === 'object' && typeof module.exports === 'object' ) {
-
- // For CommonJS and CommonJS-like environments where a proper window is present,
- module.exports = makeExport();
- } else if ( typeof define === 'function' && define.amd ) {
-
- // Allow using this built library as an AMD module
- // in another project. That other project will only
- // see this AMD call, not the internal modules in
- // the closure below.
- define([ 'jquery' ], makeExport );
- } else {
-
- // Browser globals case. Just assign the
- // result to a property on the global.
- origin = root.WebUploader;
- root.WebUploader = makeExport();
- root.WebUploader.noConflict = function() {
- root.WebUploader = origin;
- };
- }
-})( window, function( window, define, require ) {
-
+/**
+ * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
+ *
+ * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
+ */
+(function( root, factory ) {
+ var modules = {},
+
+ // 内部require, 简单不完全实现。
+ // https://github.com/amdjs/amdjs-api/wiki/require
+ _require = function( deps, callback ) {
+ var args, len, i;
+
+ // 如果deps不是数组,则直接返回指定module
+ if ( typeof deps === 'string' ) {
+ return getModule( deps );
+ } else {
+ args = [];
+ for( len = deps.length, i = 0; i < len; i++ ) {
+ args.push( getModule( deps[ i ] ) );
+ }
+
+ return callback.apply( null, args );
+ }
+ },
+
+ // 内部define,暂时不支持不指定id.
+ _define = function( id, deps, factory ) {
+ if ( arguments.length === 2 ) {
+ factory = deps;
+ deps = null;
+ }
+
+ _require( deps || [], function() {
+ setModule( id, factory, arguments );
+ });
+ },
+
+ // 设置module, 兼容CommonJs写法。
+ setModule = function( id, factory, args ) {
+ var module = {
+ exports: factory
+ },
+ returned;
+
+ if ( typeof factory === 'function' ) {
+ args.length || (args = [ _require, module.exports, module ]);
+ returned = factory.apply( null, args );
+ returned !== undefined && (module.exports = returned);
+ }
+
+ modules[ id ] = module.exports;
+ },
+
+ // 根据id获取module
+ getModule = function( id ) {
+ var module = modules[ id ] || root[ id ];
+
+ if ( !module ) {
+ throw new Error( '`' + id + '` is undefined' );
+ }
+
+ return module;
+ },
+
+ // 将所有modules,将路径ids装换成对象。
+ exportsTo = function( obj ) {
+ var key, host, parts, part, last, ucFirst;
+
+ // make the first character upper case.
+ ucFirst = function( str ) {
+ return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
+ };
+
+ for ( key in modules ) {
+ host = obj;
+
+ if ( !modules.hasOwnProperty( key ) ) {
+ continue;
+ }
+
+ parts = key.split('/');
+ last = ucFirst( parts.pop() );
+
+ while( (part = ucFirst( parts.shift() )) ) {
+ host[ part ] = host[ part ] || {};
+ host = host[ part ];
+ }
+
+ host[ last ] = modules[ key ];
+ }
+
+ return obj;
+ },
+
+ makeExport = function( dollar ) {
+ root.__dollar = dollar;
+
+ // exports every module.
+ return exportsTo( factory( root, _define, _require ) );
+ },
+
+ origin;
+
+ if ( typeof module === 'object' && typeof module.exports === 'object' ) {
+
+ // For CommonJS and CommonJS-like environments where a proper window is present,
+ module.exports = makeExport();
+ } else if ( typeof define === 'function' && define.amd ) {
+
+ // Allow using this built library as an AMD module
+ // in another project. That other project will only
+ // see this AMD call, not the internal modules in
+ // the closure below.
+ define([ 'jquery' ], makeExport );
+ } else {
+
+ // Browser globals case. Just assign the
+ // result to a property on the global.
+ origin = root.WebUploader;
+ root.WebUploader = makeExport();
+ root.WebUploader.noConflict = function() {
+ root.WebUploader = origin;
+ };
+ }
+})( window, function( window, define, require ) {
+
- /**
- * @fileOverview jq-bridge 主要实现像jQuery一样的功能方法,可以替换成jQuery,
- * 这里只实现了此组件所需的部分。
- *
- * **此文件的代码还不可用,还是直接用jquery吧**
- * @beta
- */
- define('dollar-builtin',[],function() {
- var doc = window.document,
- emptyArray = [],
- slice = emptyArray.slice,
- class2type = {},
- hasOwn = class2type.hasOwnProperty,
- toString = class2type.toString,
- rId = /^#(.*)$/;
-
- function each( obj, iterator ) {
- var i;
-
- //fix error, add guard here
- if(!obj) {
- return;
- }
-
- // like array
- if ( typeof obj !== 'function' && typeof obj.length === 'number' ) {
- for ( i = 0; i < obj.length; i++ ) {
- if ( iterator.call( obj[ i ], i, obj[ i ] ) === false ) {
- return obj;
- }
- }
- } else {
- for ( i in obj ) {
- if ( hasOwn.call( obj, i ) && iterator.call( obj[ i ], i,
- obj[ i ] ) === false ) {
- return obj;
- }
- }
- }
-
- return obj;
- }
-
- function extend( target, source, deep ) {
- each( source, function( key, val ) {
- if ( deep && typeof val === 'object' ) {
- if ( typeof target[ key ] !== 'object' ) {
- target[ key ] = type( val ) === 'array' ? [] : {};
- }
- extend( target[ key ], val, deep );
- } else {
- target[ key ] = val;
- }
- });
- }
-
- each( ('Boolean Number String Function Array Date RegExp Object' +
- ' Error').split(' '), function( i, name ) {
- class2type[ '[object ' + name + ']' ] = name.toLowerCase();
- });
-
- function setAttribute( node, name, value ) {
- value == null ? node.removeAttribute( name ) :
- node.setAttribute( name, value );
- }
-
- /**
- * 只支持ID选择。
- */
- function $( elem ) {
- var api = {};
-
- elem = typeof elem === 'string' && rId.test( elem ) ?
- doc.getElementById( RegExp.$1 ) : elem;
-
- if ( elem ) {
- api[ 0 ] = elem;
- api.length = 1;
- }
-
- return $.extend( api, {
- _wrap: true,
-
- get: function() {
- return elem;
- },
-
- /**
- * 添加className
- */
- addClass: function( classname ) {
- elem.classList.add( classname );
- return this;
- },
-
- removeClass: function( classname ) {
- elem.classList.remove( classname );
- return this;
- },
-
- //fix error, $(...).each is used in the source
- each: function(callback){
- [].every.call(this, function(el, idx){
- return callback.call(el, idx, el) !== false
- })
- return this
- },
-
- html: function( html ) {
- if ( html ) {
- elem.innerHTML = html;
- }
- return elem.innerHTML;
- },
-
- attr: function( key, val ) {
- if ( $.isObject( key ) ) {
- $.each( key, function( k, v ) {
- setAttribute( elem, k, v );
- });
- } else {
- setAttribute( elem, key, val );
- }
- },
-
- empty: function() {
- elem.innerHTML = '';
- return this;
- },
-
- before: function( el ) {
- elem.parentNode.insertBefore( el, elem );
- },
-
- append: function( el ) {
- el = el._wrap ? el.get() : el;
- elem.appendChild( el );
- },
-
- text: function() {
- return elem.textContent;
- },
-
- // on
- on: function( type, fn ) {
- if ( elem.addEventListener ) {
- elem.addEventListener( type, fn, false );
- } else if ( elem.attachEvent ) {
- elem.attachEvent( 'on' + type, fn );
- }
-
- return this;
- },
-
- // off
- off: function( type, fn ) {
- if ( elem.removeEventListener ) {
- elem.removeEventListener( type, fn, false );
- } else if ( elem.attachEvent ) {
- elem.detachEvent( 'on' + type, fn );
- }
- return this;
- }
-
- });
- }
-
- $.each = each;
- $.extend = function( /*[deep, ]*/target/*, source...*/ ) {
- var args = slice.call( arguments, 1 ),
- deep;
-
- if ( typeof target === 'boolean' ) {
- deep = target;
- target = args.shift();
- }
-
- args.forEach(function( arg ) {
- arg && extend( target, arg, deep );
- });
-
- return target;
- };
-
- function type( obj ) {
-
- /*jshint eqnull:true*/
- return obj == null ? String( obj ) :
- class2type[ toString.call( obj ) ] || 'object';
- }
- $.type = type;
-
- //fix error, $.grep is used in the source
- $.grep = function( elems, callback, invert ) {
- var callbackInverse,
- matches = [],
- i = 0,
- length = elems.length,
- callbackExpect = !invert;
-
- // Go through the array, only saving the items
- // that pass the validator function
- for ( ; i < length; i++ ) {
- callbackInverse = !callback( elems[ i ], i );
- if ( callbackInverse !== callbackExpect ) {
- matches.push( elems[ i ] );
- }
- }
-
- return matches;
- }
-
- $.isWindow = function( obj ) {
- return obj && obj.window === obj;
- };
-
- $.isPlainObject = function( obj ) {
- if ( type( obj ) !== 'object' || obj.nodeType || $.isWindow( obj ) ) {
- return false;
- }
-
- try {
- if ( obj.constructor && !hasOwn.call( obj.constructor.prototype,
- 'isPrototypeOf' ) ) {
- return false;
- }
- } catch ( ex ) {
- return false;
- }
-
- return true;
- };
-
- $.isObject = function( anything ) {
- return type( anything ) === 'object';
- };
-
- $.trim = function( str ) {
- return str ? str.trim() : '';
- };
-
- $.isFunction = function( obj ) {
- return type( obj ) === 'function';
- };
-
- emptyArray = null;
-
- return $;
- });
+ /**
+ * @fileOverview jq-bridge 主要实现像jQuery一样的功能方法,可以替换成jQuery,
+ * 这里只实现了此组件所需的部分。
+ *
+ * **此文件的代码还不可用,还是直接用jquery吧**
+ * @beta
+ */
+ define('dollar-builtin',[],function() {
+ var doc = window.document,
+ emptyArray = [],
+ slice = emptyArray.slice,
+ class2type = {},
+ hasOwn = class2type.hasOwnProperty,
+ toString = class2type.toString,
+ rId = /^#(.*)$/;
+
+ function each( obj, iterator ) {
+ var i;
+
+ //fix error, add guard here
+ if(!obj) {
+ return;
+ }
+
+ // like array
+ if ( typeof obj !== 'function' && typeof obj.length === 'number' ) {
+ for ( i = 0; i < obj.length; i++ ) {
+ if ( iterator.call( obj[ i ], i, obj[ i ] ) === false ) {
+ return obj;
+ }
+ }
+ } else {
+ for ( i in obj ) {
+ if ( hasOwn.call( obj, i ) && iterator.call( obj[ i ], i,
+ obj[ i ] ) === false ) {
+ return obj;
+ }
+ }
+ }
+
+ return obj;
+ }
+
+ function extend( target, source, deep ) {
+ each( source, function( key, val ) {
+ if ( deep && typeof val === 'object' ) {
+ if ( typeof target[ key ] !== 'object' ) {
+ target[ key ] = type( val ) === 'array' ? [] : {};
+ }
+ extend( target[ key ], val, deep );
+ } else {
+ target[ key ] = val;
+ }
+ });
+ }
+
+ each( ('Boolean Number String Function Array Date RegExp Object' +
+ ' Error').split(' '), function( i, name ) {
+ class2type[ '[object ' + name + ']' ] = name.toLowerCase();
+ });
+
+ function setAttribute( node, name, value ) {
+ value == null ? node.removeAttribute( name ) :
+ node.setAttribute( name, value );
+ }
+
+ /**
+ * 只支持ID选择。
+ */
+ function $( elem ) {
+ var api = {};
+
+ elem = typeof elem === 'string' && rId.test( elem ) ?
+ doc.getElementById( RegExp.$1 ) : elem;
+
+ if ( elem ) {
+ api[ 0 ] = elem;
+ api.length = 1;
+ }
+
+ return $.extend( api, {
+ _wrap: true,
+
+ get: function() {
+ return elem;
+ },
+
+ /**
+ * 添加className
+ */
+ addClass: function( classname ) {
+ elem.classList.add( classname );
+ return this;
+ },
+
+ removeClass: function( classname ) {
+ elem.classList.remove( classname );
+ return this;
+ },
+
+ //fix error, $(...).each is used in the source
+ each: function(callback){
+ [].every.call(this, function(el, idx){
+ return callback.call(el, idx, el) !== false
+ })
+ return this
+ },
+
+ html: function( html ) {
+ if ( html ) {
+ elem.innerHTML = html;
+ }
+ return elem.innerHTML;
+ },
+
+ attr: function( key, val ) {
+ if ( $.isObject( key ) ) {
+ $.each( key, function( k, v ) {
+ setAttribute( elem, k, v );
+ });
+ } else {
+ setAttribute( elem, key, val );
+ }
+ },
+
+ empty: function() {
+ elem.innerHTML = '';
+ return this;
+ },
+
+ before: function( el ) {
+ elem.parentNode.insertBefore( el, elem );
+ },
+
+ append: function( el ) {
+ el = el._wrap ? el.get() : el;
+ elem.appendChild( el );
+ },
+
+ text: function() {
+ return elem.textContent;
+ },
+
+ // on
+ on: function( type, fn ) {
+ if ( elem.addEventListener ) {
+ elem.addEventListener( type, fn, false );
+ } else if ( elem.attachEvent ) {
+ elem.attachEvent( 'on' + type, fn );
+ }
+
+ return this;
+ },
+
+ // off
+ off: function( type, fn ) {
+ if ( elem.removeEventListener ) {
+ elem.removeEventListener( type, fn, false );
+ } else if ( elem.attachEvent ) {
+ elem.detachEvent( 'on' + type, fn );
+ }
+ return this;
+ }
+
+ });
+ }
+
+ $.each = each;
+ $.extend = function( /*[deep, ]*/target/*, source...*/ ) {
+ var args = slice.call( arguments, 1 ),
+ deep;
+
+ if ( typeof target === 'boolean' ) {
+ deep = target;
+ target = args.shift();
+ }
+
+ args.forEach(function( arg ) {
+ arg && extend( target, arg, deep );
+ });
+
+ return target;
+ };
+
+ function type( obj ) {
+
+ /*jshint eqnull:true*/
+ return obj == null ? String( obj ) :
+ class2type[ toString.call( obj ) ] || 'object';
+ }
+ $.type = type;
+
+ //fix error, $.grep is used in the source
+ $.grep = function( elems, callback, invert ) {
+ var callbackInverse,
+ matches = [],
+ i = 0,
+ length = elems.length,
+ callbackExpect = !invert;
+
+ // Go through the array, only saving the items
+ // that pass the validator function
+ for ( ; i < length; i++ ) {
+ callbackInverse = !callback( elems[ i ], i );
+ if ( callbackInverse !== callbackExpect ) {
+ matches.push( elems[ i ] );
+ }
+ }
+
+ return matches;
+ }
+
+ $.isWindow = function( obj ) {
+ return obj && obj.window === obj;
+ };
+
+ $.isPlainObject = function( obj ) {
+ if ( type( obj ) !== 'object' || obj.nodeType || $.isWindow( obj ) ) {
+ return false;
+ }
+
+ try {
+ if ( obj.constructor && !hasOwn.call( obj.constructor.prototype,
+ 'isPrototypeOf' ) ) {
+ return false;
+ }
+ } catch ( ex ) {
+ return false;
+ }
+
+ return true;
+ };
+
+ $.isObject = function( anything ) {
+ return type( anything ) === 'object';
+ };
+
+ $.trim = function( str ) {
+ return str ? str.trim() : '';
+ };
+
+ $.isFunction = function( obj ) {
+ return type( obj ) === 'function';
+ };
+
+ emptyArray = null;
+
+ return $;
+ });
define('dollar',[
'dollar-builtin'
], function( $ ) {
return $;
});
- /**
- * 直接来源于jquery的代码。
- * @fileOverview Promise/A+
- * @beta
- */
- define('promise-builtin',[
- 'dollar'
- ], function( $ ) {
-
- var api;
-
- // 简单版Callbacks, 默认memory,可选once.
- function Callbacks( once ) {
- var list = [],
- stack = !once && [],
- fire = function( data ) {
- memory = data;
- fired = true;
- firingIndex = firingStart || 0;
- firingStart = 0;
- firingLength = list.length;
- firing = true;
-
- for ( ; list && firingIndex < firingLength; firingIndex++ ) {
- list[ firingIndex ].apply( data[ 0 ], data[ 1 ] );
- }
- firing = false;
-
- if ( list ) {
- if ( stack ) {
- stack.length && fire( stack.shift() );
- } else {
- list = [];
- }
- }
- },
- self = {
- add: function() {
- if ( list ) {
- var start = list.length;
- (function add ( args ) {
- $.each( args, function( _, arg ) {
- var type = $.type( arg );
- if ( type === 'function' ) {
- list.push( arg );
- } else if ( arg && arg.length &&
- type !== 'string' ) {
-
- add( arg );
- }
- });
- })( arguments );
-
- if ( firing ) {
- firingLength = list.length;
- } else if ( memory ) {
- firingStart = start;
- fire( memory );
- }
- }
- return this;
- },
-
- disable: function() {
- list = stack = memory = undefined;
- return this;
- },
-
- // Lock the list in its current state
- lock: function() {
- stack = undefined;
- if ( !memory ) {
- self.disable();
- }
- return this;
- },
-
- fireWith: function( context, args ) {
- if ( list && (!fired || stack) ) {
- args = args || [];
- args = [ context, args.slice ? args.slice() : args ];
- if ( firing ) {
- stack.push( args );
- } else {
- fire( args );
- }
- }
- return this;
- },
-
- fire: function() {
- self.fireWith( this, arguments );
- return this;
- }
- },
-
- fired, firing, firingStart, firingLength, firingIndex, memory;
-
- return self;
- }
-
- function Deferred( func ) {
- var tuples = [
- // action, add listener, listener list, final state
- [ 'resolve', 'done', Callbacks( true ), 'resolved' ],
- [ 'reject', 'fail', Callbacks( true ), 'rejected' ],
- [ 'notify', 'progress', Callbacks() ]
- ],
- state = 'pending',
- promise = {
- state: function() {
- return state;
- },
- always: function() {
- deferred.done( arguments ).fail( arguments );
- return this;
- },
- then: function( /* fnDone, fnFail, fnProgress */ ) {
- var fns = arguments;
- return Deferred(function( newDefer ) {
- $.each( tuples, function( i, tuple ) {
- var action = tuple[ 0 ],
- fn = $.isFunction( fns[ i ] ) && fns[ i ];
-
- // deferred[ done | fail | progress ] for
- // forwarding actions to newDefer
- deferred[ tuple[ 1 ] ](function() {
- var returned;
-
- returned = fn && fn.apply( this, arguments );
-
- if ( returned &&
- $.isFunction( returned.promise ) ) {
-
- returned.promise()
- .done( newDefer.resolve )
- .fail( newDefer.reject )
- .progress( newDefer.notify );
- } else {
- newDefer[ action + 'With' ](
- this === promise ?
- newDefer.promise() :
- this,
- fn ? [ returned ] : arguments );
- }
- });
- });
- fns = null;
- }).promise();
- },
-
- // Get a promise for this deferred
- // If obj is provided, the promise aspect is added to the object
- promise: function( obj ) {
-
- return obj != null ? $.extend( obj, promise ) : promise;
- }
- },
- deferred = {};
-
- // Keep pipe for back-compat
- promise.pipe = promise.then;
-
- // Add list-specific methods
- $.each( tuples, function( i, tuple ) {
- var list = tuple[ 2 ],
- stateString = tuple[ 3 ];
-
- // promise[ done | fail | progress ] = list.add
- promise[ tuple[ 1 ] ] = list.add;
-
- // Handle state
- if ( stateString ) {
- list.add(function() {
- // state = [ resolved | rejected ]
- state = stateString;
-
- // [ reject_list | resolve_list ].disable; progress_list.lock
- }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
- }
-
- // deferred[ resolve | reject | notify ]
- deferred[ tuple[ 0 ] ] = function() {
- deferred[ tuple[ 0 ] + 'With' ]( this === deferred ? promise :
- this, arguments );
- return this;
- };
- deferred[ tuple[ 0 ] + 'With' ] = list.fireWith;
- });
-
- // Make the deferred a promise
- promise.promise( deferred );
-
- // Call given func if any
- if ( func ) {
- func.call( deferred, deferred );
- }
-
- // All done!
- return deferred;
- }
-
- api = {
- /**
- * 创建一个[Deferred](http://api.jquery.com/category/deferred-object/)对象。
- * 详细的Deferred用法说明,请参照jQuery的API文档。
- *
- * Deferred对象在钩子回掉函数中经常要用到,用来处理需要等待的异步操作。
- *
- * @for Base
- * @method Deferred
- * @grammar Base.Deferred() => Deferred
- * @example
- * // 在文件开始发送前做些异步操作。
- * // WebUploader会等待此异步操作完成后,开始发送文件。
- * Uploader.register({
- * 'before-send-file': 'doSomthingAsync'
- * }, {
- *
- * doSomthingAsync: function() {
- * var deferred = Base.Deferred();
- *
- * // 模拟一次异步操作。
- * setTimeout(deferred.resolve, 2000);
- *
- * return deferred.promise();
- * }
- * });
- */
- Deferred: Deferred,
-
- /**
- * 判断传入的参数是否为一个promise对象。
- * @method isPromise
- * @grammar Base.isPromise( anything ) => Boolean
- * @param {*} anything 检测对象。
- * @return {Boolean}
- * @for Base
- * @example
- * console.log( Base.isPromise() ); // => false
- * console.log( Base.isPromise({ key: '123' }) ); // => false
- * console.log( Base.isPromise( Base.Deferred().promise() ) ); // => true
- *
- * // Deferred也是一个Promise
- * console.log( Base.isPromise( Base.Deferred() ) ); // => true
- */
- isPromise: function( anything ) {
- return anything && typeof anything.then === 'function';
- },
-
- /**
- * 返回一个promise,此promise在所有传入的promise都完成了后完成。
- * 详细请查看[这里](http://api.jquery.com/jQuery.when/)。
- *
- * @method when
- * @for Base
- * @grammar Base.when( promise1[, promise2[, promise3...]] ) => Promise
- */
- when: function( subordinate /* , ..., subordinateN */ ) {
- var i = 0,
- slice = [].slice,
- resolveValues = slice.call( arguments ),
- length = resolveValues.length,
-
- // the count of uncompleted subordinates
- remaining = length !== 1 || (subordinate &&
- $.isFunction( subordinate.promise )) ? length : 0,
-
- // the master Deferred. If resolveValues consist of
- // only a single Deferred, just use that.
- deferred = remaining === 1 ? subordinate : Deferred(),
-
- // Update function for both resolve and progress values
- updateFunc = function( i, contexts, values ) {
- return function( value ) {
- contexts[ i ] = this;
- values[ i ] = arguments.length > 1 ?
- slice.call( arguments ) : value;
-
- if ( values === progressValues ) {
- deferred.notifyWith( contexts, values );
- } else if ( !(--remaining) ) {
- deferred.resolveWith( contexts, values );
- }
- };
- },
-
- progressValues, progressContexts, resolveContexts;
-
- // add listeners to Deferred subordinates; treat others as resolved
- if ( length > 1 ) {
- progressValues = new Array( length );
- progressContexts = new Array( length );
- resolveContexts = new Array( length );
- for ( ; i < length; i++ ) {
- if ( resolveValues[ i ] &&
- $.isFunction( resolveValues[ i ].promise ) ) {
-
- resolveValues[ i ].promise()
- .done( updateFunc( i, resolveContexts,
- resolveValues ) )
- .fail( deferred.reject )
- .progress( updateFunc( i, progressContexts,
- progressValues ) );
- } else {
- --remaining;
- }
- }
- }
-
- // if we're not waiting on anything, resolve the master
- if ( !remaining ) {
- deferred.resolveWith( resolveContexts, resolveValues );
- }
-
- return deferred.promise();
- }
- };
-
- return api;
+ /**
+ * 直接来源于jquery的代码。
+ * @fileOverview Promise/A+
+ * @beta
+ */
+ define('promise-builtin',[
+ 'dollar'
+ ], function( $ ) {
+
+ var api;
+
+ // 简单版Callbacks, 默认memory,可选once.
+ function Callbacks( once ) {
+ var list = [],
+ stack = !once && [],
+ fire = function( data ) {
+ memory = data;
+ fired = true;
+ firingIndex = firingStart || 0;
+ firingStart = 0;
+ firingLength = list.length;
+ firing = true;
+
+ for ( ; list && firingIndex < firingLength; firingIndex++ ) {
+ list[ firingIndex ].apply( data[ 0 ], data[ 1 ] );
+ }
+ firing = false;
+
+ if ( list ) {
+ if ( stack ) {
+ stack.length && fire( stack.shift() );
+ } else {
+ list = [];
+ }
+ }
+ },
+ self = {
+ add: function() {
+ if ( list ) {
+ var start = list.length;
+ (function add ( args ) {
+ $.each( args, function( _, arg ) {
+ var type = $.type( arg );
+ if ( type === 'function' ) {
+ list.push( arg );
+ } else if ( arg && arg.length &&
+ type !== 'string' ) {
+
+ add( arg );
+ }
+ });
+ })( arguments );
+
+ if ( firing ) {
+ firingLength = list.length;
+ } else if ( memory ) {
+ firingStart = start;
+ fire( memory );
+ }
+ }
+ return this;
+ },
+
+ disable: function() {
+ list = stack = memory = undefined;
+ return this;
+ },
+
+ // Lock the list in its current state
+ lock: function() {
+ stack = undefined;
+ if ( !memory ) {
+ self.disable();
+ }
+ return this;
+ },
+
+ fireWith: function( context, args ) {
+ if ( list && (!fired || stack) ) {
+ args = args || [];
+ args = [ context, args.slice ? args.slice() : args ];
+ if ( firing ) {
+ stack.push( args );
+ } else {
+ fire( args );
+ }
+ }
+ return this;
+ },
+
+ fire: function() {
+ self.fireWith( this, arguments );
+ return this;
+ }
+ },
+
+ fired, firing, firingStart, firingLength, firingIndex, memory;
+
+ return self;
+ }
+
+ function Deferred( func ) {
+ var tuples = [
+ // action, add listener, listener list, final state
+ [ 'resolve', 'done', Callbacks( true ), 'resolved' ],
+ [ 'reject', 'fail', Callbacks( true ), 'rejected' ],
+ [ 'notify', 'progress', Callbacks() ]
+ ],
+ state = 'pending',
+ promise = {
+ state: function() {
+ return state;
+ },
+ always: function() {
+ deferred.done( arguments ).fail( arguments );
+ return this;
+ },
+ then: function( /* fnDone, fnFail, fnProgress */ ) {
+ var fns = arguments;
+ return Deferred(function( newDefer ) {
+ $.each( tuples, function( i, tuple ) {
+ var action = tuple[ 0 ],
+ fn = $.isFunction( fns[ i ] ) && fns[ i ];
+
+ // deferred[ done | fail | progress ] for
+ // forwarding actions to newDefer
+ deferred[ tuple[ 1 ] ](function() {
+ var returned;
+
+ returned = fn && fn.apply( this, arguments );
+
+ if ( returned &&
+ $.isFunction( returned.promise ) ) {
+
+ returned.promise()
+ .done( newDefer.resolve )
+ .fail( newDefer.reject )
+ .progress( newDefer.notify );
+ } else {
+ newDefer[ action + 'With' ](
+ this === promise ?
+ newDefer.promise() :
+ this,
+ fn ? [ returned ] : arguments );
+ }
+ });
+ });
+ fns = null;
+ }).promise();
+ },
+
+ // Get a promise for this deferred
+ // If obj is provided, the promise aspect is added to the object
+ promise: function( obj ) {
+
+ return obj != null ? $.extend( obj, promise ) : promise;
+ }
+ },
+ deferred = {};
+
+ // Keep pipe for back-compat
+ promise.pipe = promise.then;
+
+ // Add list-specific methods
+ $.each( tuples, function( i, tuple ) {
+ var list = tuple[ 2 ],
+ stateString = tuple[ 3 ];
+
+ // promise[ done | fail | progress ] = list.add
+ promise[ tuple[ 1 ] ] = list.add;
+
+ // Handle state
+ if ( stateString ) {
+ list.add(function() {
+ // state = [ resolved | rejected ]
+ state = stateString;
+
+ // [ reject_list | resolve_list ].disable; progress_list.lock
+ }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
+ }
+
+ // deferred[ resolve | reject | notify ]
+ deferred[ tuple[ 0 ] ] = function() {
+ deferred[ tuple[ 0 ] + 'With' ]( this === deferred ? promise :
+ this, arguments );
+ return this;
+ };
+ deferred[ tuple[ 0 ] + 'With' ] = list.fireWith;
+ });
+
+ // Make the deferred a promise
+ promise.promise( deferred );
+
+ // Call given func if any
+ if ( func ) {
+ func.call( deferred, deferred );
+ }
+
+ // All done!
+ return deferred;
+ }
+
+ api = {
+ /**
+ * 创建一个[Deferred](http://api.jquery.com/category/deferred-object/)对象。
+ * 详细的Deferred用法说明,请参照jQuery的API文档。
+ *
+ * Deferred对象在钩子回掉函数中经常要用到,用来处理需要等待的异步操作。
+ *
+ * @for Base
+ * @method Deferred
+ * @grammar Base.Deferred() => Deferred
+ * @example
+ * // 在文件开始发送前做些异步操作。
+ * // WebUploader会等待此异步操作完成后,开始发送文件。
+ * Uploader.register({
+ * 'before-send-file': 'doSomthingAsync'
+ * }, {
+ *
+ * doSomthingAsync: function() {
+ * var deferred = Base.Deferred();
+ *
+ * // 模拟一次异步操作。
+ * setTimeout(deferred.resolve, 2000);
+ *
+ * return deferred.promise();
+ * }
+ * });
+ */
+ Deferred: Deferred,
+
+ /**
+ * 判断传入的参数是否为一个promise对象。
+ * @method isPromise
+ * @grammar Base.isPromise( anything ) => Boolean
+ * @param {*} anything 检测对象。
+ * @return {Boolean}
+ * @for Base
+ * @example
+ * console.log( Base.isPromise() ); // => false
+ * console.log( Base.isPromise({ key: '123' }) ); // => false
+ * console.log( Base.isPromise( Base.Deferred().promise() ) ); // => true
+ *
+ * // Deferred也是一个Promise
+ * console.log( Base.isPromise( Base.Deferred() ) ); // => true
+ */
+ isPromise: function( anything ) {
+ return anything && typeof anything.then === 'function';
+ },
+
+ /**
+ * 返回一个promise,此promise在所有传入的promise都完成了后完成。
+ * 详细请查看[这里](http://api.jquery.com/jQuery.when/)。
+ *
+ * @method when
+ * @for Base
+ * @grammar Base.when( promise1[, promise2[, promise3...]] ) => Promise
+ */
+ when: function( subordinate /* , ..., subordinateN */ ) {
+ var i = 0,
+ slice = [].slice,
+ resolveValues = slice.call( arguments ),
+ length = resolveValues.length,
+
+ // the count of uncompleted subordinates
+ remaining = length !== 1 || (subordinate &&
+ $.isFunction( subordinate.promise )) ? length : 0,
+
+ // the master Deferred. If resolveValues consist of
+ // only a single Deferred, just use that.
+ deferred = remaining === 1 ? subordinate : Deferred(),
+
+ // Update function for both resolve and progress values
+ updateFunc = function( i, contexts, values ) {
+ return function( value ) {
+ contexts[ i ] = this;
+ values[ i ] = arguments.length > 1 ?
+ slice.call( arguments ) : value;
+
+ if ( values === progressValues ) {
+ deferred.notifyWith( contexts, values );
+ } else if ( !(--remaining) ) {
+ deferred.resolveWith( contexts, values );
+ }
+ };
+ },
+
+ progressValues, progressContexts, resolveContexts;
+
+ // add listeners to Deferred subordinates; treat others as resolved
+ if ( length > 1 ) {
+ progressValues = new Array( length );
+ progressContexts = new Array( length );
+ resolveContexts = new Array( length );
+ for ( ; i < length; i++ ) {
+ if ( resolveValues[ i ] &&
+ $.isFunction( resolveValues[ i ].promise ) ) {
+
+ resolveValues[ i ].promise()
+ .done( updateFunc( i, resolveContexts,
+ resolveValues ) )
+ .fail( deferred.reject )
+ .progress( updateFunc( i, progressContexts,
+ progressValues ) );
+ } else {
+ --remaining;
+ }
+ }
+ }
+
+ // if we're not waiting on anything, resolve the master
+ if ( !remaining ) {
+ deferred.resolveWith( resolveContexts, resolveValues );
+ }
+
+ return deferred.promise();
+ }
+ };
+
+ return api;
});
define('promise',[
'promise-builtin'
], function( $ ) {
return $;
});
- /**
- * @fileOverview 基础类方法。
- */
-
- /**
- * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
- *
- * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
- * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
- *
- * * module `base`:WebUploader.Base
- * * module `file`: WebUploader.File
- * * module `lib/dnd`: WebUploader.Lib.Dnd
- * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
- *
- *
- * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
- * @module WebUploader
- * @title WebUploader API文档
- */
- define('base',[
- 'dollar',
- 'promise'
- ], function( $, promise ) {
-
- var noop = function() {},
- call = Function.call;
-
- // http://jsperf.com/uncurrythis
- // 反科里化
- function uncurryThis( fn ) {
- return function() {
- return call.apply( fn, arguments );
- };
- }
-
- function bindFn( fn, context ) {
- return function() {
- return fn.apply( context, arguments );
- };
- }
-
- function createObject( proto ) {
- var f;
-
- if ( Object.create ) {
- return Object.create( proto );
- } else {
- f = function() {};
- f.prototype = proto;
- return new f();
- }
- }
-
-
- /**
- * 基础类,提供一些简单常用的方法。
- * @class Base
- */
- return {
-
- /**
- * @property {String} version 当前版本号。
- */
- version: '0.1.8-alpha',
-
- /**
- * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
- */
- $: $,
-
- Deferred: promise.Deferred,
-
- isPromise: promise.isPromise,
-
- when: promise.when,
-
- /**
- * @description 简单的浏览器检查结果。
- *
- * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
- * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
- * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
- * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
- * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
- * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
- *
- * @property {Object} [browser]
- */
- browser: (function( ua ) {
- var ret = {},
- webkit = ua.match( /WebKit\/([\d.]+)/ ),
- chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
- ua.match( /CriOS\/([\d.]+)/ ),
-
- ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
- ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
- firefox = ua.match( /Firefox\/([\d.]+)/ ),
- safari = ua.match( /Safari\/([\d.]+)/ ),
- opera = ua.match( /OPR\/([\d.]+)/ );
-
- webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
- chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
- ie && (ret.ie = parseFloat( ie[ 1 ] ));
- firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
- safari && (ret.safari = parseFloat( safari[ 1 ] ));
- opera && (ret.opera = parseFloat( opera[ 1 ] ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * @description 操作系统检查结果。
- *
- * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
- * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
- * @property {Object} [os]
- */
- os: (function( ua ) {
- var ret = {},
-
- // osx = !!ua.match( /\(Macintosh\; Intel / ),
- android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
- ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
-
- // osx && (ret.osx = true);
- android && (ret.android = parseFloat( android[ 1 ] ));
- ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * 实现类与类之间的继承。
- * @method inherits
- * @grammar Base.inherits( super ) => child
- * @grammar Base.inherits( super, protos ) => child
- * @grammar Base.inherits( super, protos, statics ) => child
- * @param {Class} super 父类
- * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
- * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
- * @param {Object} [statics] 静态属性或方法。
- * @return {Class} 返回子类。
- * @example
- * function Person() {
- * console.log( 'Super' );
- * }
- * Person.prototype.hello = function() {
- * console.log( 'hello' );
- * };
- *
- * var Manager = Base.inherits( Person, {
- * world: function() {
- * console.log( 'World' );
- * }
- * });
- *
- * // 因为没有指定构造器,父类的构造器将会执行。
- * var instance = new Manager(); // => Super
- *
- * // 继承子父类的方法
- * instance.hello(); // => hello
- * instance.world(); // => World
- *
- * // 子类的__super__属性指向父类
- * console.log( Manager.__super__ === Person ); // => true
- */
- inherits: function( Super, protos, staticProtos ) {
- var child;
-
- if ( typeof protos === 'function' ) {
- child = protos;
- protos = null;
- } else if ( protos && protos.hasOwnProperty('constructor') ) {
- child = protos.constructor;
- } else {
- child = function() {
- return Super.apply( this, arguments );
- };
- }
-
- // 复制静态方法
- $.extend( true, child, Super, staticProtos || {} );
-
- /* jshint camelcase: false */
-
- // 让子类的__super__属性指向父类。
- child.__super__ = Super.prototype;
-
- // 构建原型,添加原型方法或属性。
- // 暂时用Object.create实现。
- child.prototype = createObject( Super.prototype );
- protos && $.extend( true, child.prototype, protos );
-
- return child;
- },
-
- /**
- * 一个不做任何事情的方法。可以用来赋值给默认的callback.
- * @method noop
- */
- noop: noop,
-
- /**
- * 返回一个新的方法,此方法将已指定的`context`来执行。
- * @grammar Base.bindFn( fn, context ) => Function
- * @method bindFn
- * @example
- * var doSomething = function() {
- * console.log( this.name );
- * },
- * obj = {
- * name: 'Object Name'
- * },
- * aliasFn = Base.bind( doSomething, obj );
- *
- * aliasFn(); // => Object Name
- *
- */
- bindFn: bindFn,
-
- /**
- * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
- * @grammar Base.log( args... ) => undefined
- * @method log
- */
- log: (function() {
- if ( window.console ) {
- return bindFn( console.log, console );
- }
- return noop;
- })(),
-
- nextTick: (function() {
-
- return function( cb ) {
- setTimeout( cb, 1 );
- };
-
- // @bug 当浏览器不在当前窗口时就停了。
- // var next = window.requestAnimationFrame ||
- // window.webkitRequestAnimationFrame ||
- // window.mozRequestAnimationFrame ||
- // function( cb ) {
- // window.setTimeout( cb, 1000 / 60 );
- // };
-
- // // fix: Uncaught TypeError: Illegal invocation
- // return bindFn( next, window );
- })(),
-
- /**
- * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
- * 将用来将非数组对象转化成数组对象。
- * @grammar Base.slice( target, start[, end] ) => Array
- * @method slice
- * @example
- * function doSomthing() {
- * var args = Base.slice( arguments, 1 );
- * console.log( args );
- * }
- *
- * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
- */
- slice: uncurryThis( [].slice ),
-
- /**
- * 生成唯一的ID
- * @method guid
- * @grammar Base.guid() => String
- * @grammar Base.guid( prefx ) => String
- */
- guid: (function() {
- var counter = 0;
-
- return function( prefix ) {
- var guid = (+new Date()).toString( 32 ),
- i = 0;
-
- for ( ; i < 5; i++ ) {
- guid += Math.floor( Math.random() * 65535 ).toString( 32 );
- }
-
- return (prefix || 'wu_') + guid + (counter++).toString( 32 );
- };
- })(),
-
- /**
- * 格式化文件大小, 输出成带单位的字符串
- * @method formatSize
- * @grammar Base.formatSize( size ) => String
- * @grammar Base.formatSize( size, pointLength ) => String
- * @grammar Base.formatSize( size, pointLength, units ) => String
- * @param {Number} size 文件大小
- * @param {Number} [pointLength=2] 精确到的小数点数。
- * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
- * @example
- * console.log( Base.formatSize( 100 ) ); // => 100B
- * console.log( Base.formatSize( 1024 ) ); // => 1.00K
- * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
- * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
- * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
- * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
- */
- formatSize: function( size, pointLength, units ) {
- var unit;
-
- units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
-
- while ( (unit = units.shift()) && size > 1024 ) {
- size = size / 1024;
- }
-
- return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
- unit;
- }
- };
- });
- /**
- * 事件处理类,可以独立使用,也可以扩展给对象使用。
- * @fileOverview Mediator
- */
- define('mediator',[
- 'base'
- ], function( Base ) {
- var $ = Base.$,
- slice = [].slice,
- separator = /\s+/,
- protos;
-
- // 根据条件过滤出事件handlers.
- function findHandlers( arr, name, callback, context ) {
- return $.grep( arr, function( handler ) {
- return handler &&
- (!name || handler.e === name) &&
- (!callback || handler.cb === callback ||
- handler.cb._cb === callback) &&
- (!context || handler.ctx === context);
- });
- }
-
- function eachEvent( events, callback, iterator ) {
- // 不支持对象,只支持多个event用空格隔开
- $.each( (events || '').split( separator ), function( _, key ) {
- iterator( key, callback );
- });
- }
-
- function triggerHanders( events, args ) {
- var stoped = false,
- i = -1,
- len = events.length,
- handler;
-
- while ( ++i < len ) {
- handler = events[ i ];
-
- if ( handler.cb.apply( handler.ctx2, args ) === false ) {
- stoped = true;
- break;
- }
- }
-
- return !stoped;
- }
-
- protos = {
-
- /**
- * 绑定事件。
- *
- * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
- * ```javascript
- * var obj = {};
- *
- * // 使得obj有事件行为
- * Mediator.installTo( obj );
- *
- * obj.on( 'testa', function( arg1, arg2 ) {
- * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
- * });
- *
- * obj.trigger( 'testa', 'arg1', 'arg2' );
- * ```
- *
- * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
- * 切会影响到`trigger`方法的返回值,为`false`。
- *
- * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
- * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
- * ```javascript
- * obj.on( 'all', function( type, arg1, arg2 ) {
- * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
- * });
- * ```
- *
- * @method on
- * @grammar on( name, callback[, context] ) => self
- * @param {String} name 事件名,支持多个事件用空格隔开
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- * @class Mediator
- */
- on: function( name, callback, context ) {
- var me = this,
- set;
-
- if ( !callback ) {
- return this;
- }
-
- set = this._events || (this._events = []);
-
- eachEvent( name, callback, function( name, callback ) {
- var handler = { e: name };
-
- handler.cb = callback;
- handler.ctx = context;
- handler.ctx2 = context || me;
- handler.id = set.length;
-
- set.push( handler );
- });
-
- return this;
- },
-
- /**
- * 绑定事件,且当handler执行完后,自动解除绑定。
- * @method once
- * @grammar once( name, callback[, context] ) => self
- * @param {String} name 事件名
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- once: function( name, callback, context ) {
- var me = this;
-
- if ( !callback ) {
- return me;
- }
-
- eachEvent( name, callback, function( name, callback ) {
- var once = function() {
- me.off( name, once );
- return callback.apply( context || me, arguments );
- };
-
- once._cb = callback;
- me.on( name, once, context );
- });
-
- return me;
- },
-
- /**
- * 解除事件绑定
- * @method off
- * @grammar off( [name[, callback[, context] ] ] ) => self
- * @param {String} [name] 事件名
- * @param {Function} [callback] 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- off: function( name, cb, ctx ) {
- var events = this._events;
-
- if ( !events ) {
- return this;
- }
-
- if ( !name && !cb && !ctx ) {
- this._events = [];
- return this;
- }
-
- eachEvent( name, cb, function( name, cb ) {
- $.each( findHandlers( events, name, cb, ctx ), function() {
- delete events[ this.id ];
- });
- });
-
- return this;
- },
-
- /**
- * 触发事件
- * @method trigger
- * @grammar trigger( name[, args...] ) => self
- * @param {String} type 事件名
- * @param {*} [...] 任意参数
- * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
- */
- trigger: function( type ) {
- var args, events, allEvents;
-
- if ( !this._events || !type ) {
- return this;
- }
-
- args = slice.call( arguments, 1 );
- events = findHandlers( this._events, type );
- allEvents = findHandlers( this._events, 'all' );
-
- return triggerHanders( events, args ) &&
- triggerHanders( allEvents, arguments );
- }
- };
-
- /**
- * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
- * 主要目的是负责模块与模块之间的合作,降低耦合度。
- *
- * @class Mediator
- */
- return $.extend({
-
- /**
- * 可以通过这个接口,使任何对象具备事件功能。
- * @method installTo
- * @param {Object} obj 需要具备事件行为的对象。
- * @return {Object} 返回obj.
- */
- installTo: function( obj ) {
- return $.extend( obj, protos );
- }
-
- }, protos );
+ /**
+ * @fileOverview 基础类方法。
+ */
+
+ /**
+ * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
+ *
+ * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
+ * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
+ *
+ * * module `base`:WebUploader.Base
+ * * module `file`: WebUploader.File
+ * * module `lib/dnd`: WebUploader.Lib.Dnd
+ * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
+ *
+ *
+ * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
+ * @module WebUploader
+ * @title WebUploader API文档
+ */
+ define('base',[
+ 'dollar',
+ 'promise'
+ ], function( $, promise ) {
+
+ var noop = function() {},
+ call = Function.call;
+
+ // http://jsperf.com/uncurrythis
+ // 反科里化
+ function uncurryThis( fn ) {
+ return function() {
+ return call.apply( fn, arguments );
+ };
+ }
+
+ function bindFn( fn, context ) {
+ return function() {
+ return fn.apply( context, arguments );
+ };
+ }
+
+ function createObject( proto ) {
+ var f;
+
+ if ( Object.create ) {
+ return Object.create( proto );
+ } else {
+ f = function() {};
+ f.prototype = proto;
+ return new f();
+ }
+ }
+
+
+ /**
+ * 基础类,提供一些简单常用的方法。
+ * @class Base
+ */
+ return {
+
+ /**
+ * @property {String} version 当前版本号。
+ */
+ version: '0.1.8-alpha',
+
+ /**
+ * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
+ */
+ $: $,
+
+ Deferred: promise.Deferred,
+
+ isPromise: promise.isPromise,
+
+ when: promise.when,
+
+ /**
+ * @description 简单的浏览器检查结果。
+ *
+ * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
+ * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
+ * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
+ * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
+ * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
+ * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
+ *
+ * @property {Object} [browser]
+ */
+ browser: (function( ua ) {
+ var ret = {},
+ webkit = ua.match( /WebKit\/([\d.]+)/ ),
+ chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
+ ua.match( /CriOS\/([\d.]+)/ ),
+
+ ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
+ ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
+ firefox = ua.match( /Firefox\/([\d.]+)/ ),
+ safari = ua.match( /Safari\/([\d.]+)/ ),
+ opera = ua.match( /OPR\/([\d.]+)/ );
+
+ webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
+ chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
+ ie && (ret.ie = parseFloat( ie[ 1 ] ));
+ firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
+ safari && (ret.safari = parseFloat( safari[ 1 ] ));
+ opera && (ret.opera = parseFloat( opera[ 1 ] ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * @description 操作系统检查结果。
+ *
+ * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
+ * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
+ * @property {Object} [os]
+ */
+ os: (function( ua ) {
+ var ret = {},
+
+ // osx = !!ua.match( /\(Macintosh\; Intel / ),
+ android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
+ ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
+
+ // osx && (ret.osx = true);
+ android && (ret.android = parseFloat( android[ 1 ] ));
+ ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * 实现类与类之间的继承。
+ * @method inherits
+ * @grammar Base.inherits( super ) => child
+ * @grammar Base.inherits( super, protos ) => child
+ * @grammar Base.inherits( super, protos, statics ) => child
+ * @param {Class} super 父类
+ * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
+ * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
+ * @param {Object} [statics] 静态属性或方法。
+ * @return {Class} 返回子类。
+ * @example
+ * function Person() {
+ * console.log( 'Super' );
+ * }
+ * Person.prototype.hello = function() {
+ * console.log( 'hello' );
+ * };
+ *
+ * var Manager = Base.inherits( Person, {
+ * world: function() {
+ * console.log( 'World' );
+ * }
+ * });
+ *
+ * // 因为没有指定构造器,父类的构造器将会执行。
+ * var instance = new Manager(); // => Super
+ *
+ * // 继承子父类的方法
+ * instance.hello(); // => hello
+ * instance.world(); // => World
+ *
+ * // 子类的__super__属性指向父类
+ * console.log( Manager.__super__ === Person ); // => true
+ */
+ inherits: function( Super, protos, staticProtos ) {
+ var child;
+
+ if ( typeof protos === 'function' ) {
+ child = protos;
+ protos = null;
+ } else if ( protos && protos.hasOwnProperty('constructor') ) {
+ child = protos.constructor;
+ } else {
+ child = function() {
+ return Super.apply( this, arguments );
+ };
+ }
+
+ // 复制静态方法
+ $.extend( true, child, Super, staticProtos || {} );
+
+ /* jshint camelcase: false */
+
+ // 让子类的__super__属性指向父类。
+ child.__super__ = Super.prototype;
+
+ // 构建原型,添加原型方法或属性。
+ // 暂时用Object.create实现。
+ child.prototype = createObject( Super.prototype );
+ protos && $.extend( true, child.prototype, protos );
+
+ return child;
+ },
+
+ /**
+ * 一个不做任何事情的方法。可以用来赋值给默认的callback.
+ * @method noop
+ */
+ noop: noop,
+
+ /**
+ * 返回一个新的方法,此方法将已指定的`context`来执行。
+ * @grammar Base.bindFn( fn, context ) => Function
+ * @method bindFn
+ * @example
+ * var doSomething = function() {
+ * console.log( this.name );
+ * },
+ * obj = {
+ * name: 'Object Name'
+ * },
+ * aliasFn = Base.bind( doSomething, obj );
+ *
+ * aliasFn(); // => Object Name
+ *
+ */
+ bindFn: bindFn,
+
+ /**
+ * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
+ * @grammar Base.log( args... ) => undefined
+ * @method log
+ */
+ log: (function() {
+ if ( window.console ) {
+ return bindFn( console.log, console );
+ }
+ return noop;
+ })(),
+
+ nextTick: (function() {
+
+ return function( cb ) {
+ setTimeout( cb, 1 );
+ };
+
+ // @bug 当浏览器不在当前窗口时就停了。
+ // var next = window.requestAnimationFrame ||
+ // window.webkitRequestAnimationFrame ||
+ // window.mozRequestAnimationFrame ||
+ // function( cb ) {
+ // window.setTimeout( cb, 1000 / 60 );
+ // };
+
+ // // fix: Uncaught TypeError: Illegal invocation
+ // return bindFn( next, window );
+ })(),
+
+ /**
+ * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
+ * 将用来将非数组对象转化成数组对象。
+ * @grammar Base.slice( target, start[, end] ) => Array
+ * @method slice
+ * @example
+ * function doSomthing() {
+ * var args = Base.slice( arguments, 1 );
+ * console.log( args );
+ * }
+ *
+ * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
+ */
+ slice: uncurryThis( [].slice ),
+
+ /**
+ * 生成唯一的ID
+ * @method guid
+ * @grammar Base.guid() => String
+ * @grammar Base.guid( prefx ) => String
+ */
+ guid: (function() {
+ var counter = 0;
+
+ return function( prefix ) {
+ var guid = (+new Date()).toString( 32 ),
+ i = 0;
+
+ for ( ; i < 5; i++ ) {
+ guid += Math.floor( Math.random() * 65535 ).toString( 32 );
+ }
+
+ return (prefix || 'wu_') + guid + (counter++).toString( 32 );
+ };
+ })(),
+
+ /**
+ * 格式化文件大小, 输出成带单位的字符串
+ * @method formatSize
+ * @grammar Base.formatSize( size ) => String
+ * @grammar Base.formatSize( size, pointLength ) => String
+ * @grammar Base.formatSize( size, pointLength, units ) => String
+ * @param {Number} size 文件大小
+ * @param {Number} [pointLength=2] 精确到的小数点数。
+ * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
+ * @example
+ * console.log( Base.formatSize( 100 ) ); // => 100B
+ * console.log( Base.formatSize( 1024 ) ); // => 1.00K
+ * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
+ * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
+ * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
+ * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
+ */
+ formatSize: function( size, pointLength, units ) {
+ var unit;
+
+ units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
+
+ while ( (unit = units.shift()) && size > 1024 ) {
+ size = size / 1024;
+ }
+
+ return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
+ unit;
+ }
+ };
});
- /**
- * @fileOverview Uploader上传类
- */
- define('uploader',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$;
-
- /**
- * 上传入口类。
- * @class Uploader
- * @constructor
- * @grammar new Uploader( opts ) => Uploader
- * @example
- * var uploader = WebUploader.Uploader({
- * swf: 'path_of_swf/Uploader.swf',
- *
- * // 开起分片上传。
- * chunked: true
- * });
- */
- function Uploader( opts ) {
- this.options = $.extend( true, {}, Uploader.options, opts );
- this._init( this.options );
- }
-
- // default Options
- // widgets中有相应扩展
- Uploader.options = {};
- Mediator.installTo( Uploader.prototype );
-
- // 批量添加纯命令式方法。
- $.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( fn, command ) {
- Uploader.prototype[ fn ] = function() {
- return this.request( command, arguments );
- };
- });
-
- $.extend( Uploader.prototype, {
- state: 'pending',
-
- _init: function( opts ) {
- var me = this;
-
- me.request( 'init', opts, function() {
- me.state = 'ready';
- me.trigger('ready');
- });
- },
-
- /**
- * 获取或者设置Uploader配置项。
- * @method option
- * @grammar option( key ) => *
- * @grammar option( key, val ) => self
- * @example
- *
- * // 初始状态图片上传前不会压缩
- * var uploader = new WebUploader.Uploader({
- * compress: null;
- * });
- *
- * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
- * uploader.option( 'compress', {
- * width: 1600,
- * height: 1600
- * });
- */
- option: function( key, val ) {
- var opts = this.options;
-
- // setter
- if ( arguments.length > 1 ) {
-
- if ( $.isPlainObject( val ) &&
- $.isPlainObject( opts[ key ] ) ) {
- $.extend( opts[ key ], val );
- } else {
- opts[ key ] = val;
- }
-
- } else { // getter
- return key ? opts[ key ] : opts;
- }
- },
-
- /**
- * 获取文件统计信息。返回一个包含一下信息的对象。
- * * `successNum` 上传成功的文件数
- * * `progressNum` 上传中的文件数
- * * `cancelNum` 被删除的文件数
- * * `invalidNum` 无效的文件数
- * * `uploadFailNum` 上传失败的文件数
- * * `queueNum` 还在队列中的文件数
- * * `interruptNum` 被暂停的文件数
- * @method getStats
- * @grammar getStats() => Object
- */
- getStats: function() {
- // return this._mgr.getStats.apply( this._mgr, arguments );
- var stats = this.request('get-stats');
-
- return stats ? {
- successNum: stats.numOfSuccess,
- progressNum: stats.numOfProgress,
-
- // who care?
- // queueFailNum: 0,
- cancelNum: stats.numOfCancel,
- invalidNum: stats.numOfInvalid,
- uploadFailNum: stats.numOfUploadFailed,
- queueNum: stats.numOfQueue,
- interruptNum: stats.numOfInterrupt
- } : {};
- },
-
- // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
- trigger: function( type/*, args...*/ ) {
- var args = [].slice.call( arguments, 1 ),
- opts = this.options,
- name = 'on' + type.substring( 0, 1 ).toUpperCase() +
- type.substring( 1 );
-
- if (
- // 调用通过on方法注册的handler.
- Mediator.trigger.apply( this, arguments ) === false ||
-
- // 调用opts.onEvent
- $.isFunction( opts[ name ] ) &&
- opts[ name ].apply( this, args ) === false ||
-
- // 调用this.onEvent
- $.isFunction( this[ name ] ) &&
- this[ name ].apply( this, args ) === false ||
-
- // 广播所有uploader的事件。
- Mediator.trigger.apply( Mediator,
- [ this, type ].concat( args ) ) === false ) {
-
- return false;
- }
-
- return true;
- },
-
- /**
- * 销毁 webuploader 实例
- * @method destroy
- * @grammar destroy() => undefined
- */
- destroy: function() {
- this.request( 'destroy', arguments );
- this.off();
- },
-
- // widgets/widget.js将补充此方法的详细文档。
- request: Base.noop
- });
-
- /**
- * 创建Uploader实例,等同于new Uploader( opts );
- * @method create
- * @class Base
- * @static
- * @grammar Base.create( opts ) => Uploader
- */
- Base.create = Uploader.create = function( opts ) {
- return new Uploader( opts );
- };
-
- // 暴露Uploader,可以通过它来扩展业务逻辑。
- Base.Uploader = Uploader;
-
- return Uploader;
+ /**
+ * 事件处理类,可以独立使用,也可以扩展给对象使用。
+ * @fileOverview Mediator
+ */
+ define('mediator',[
+ 'base'
+ ], function( Base ) {
+ var $ = Base.$,
+ slice = [].slice,
+ separator = /\s+/,
+ protos;
+
+ // 根据条件过滤出事件handlers.
+ function findHandlers( arr, name, callback, context ) {
+ return $.grep( arr, function( handler ) {
+ return handler &&
+ (!name || handler.e === name) &&
+ (!callback || handler.cb === callback ||
+ handler.cb._cb === callback) &&
+ (!context || handler.ctx === context);
+ });
+ }
+
+ function eachEvent( events, callback, iterator ) {
+ // 不支持对象,只支持多个event用空格隔开
+ $.each( (events || '').split( separator ), function( _, key ) {
+ iterator( key, callback );
+ });
+ }
+
+ function triggerHanders( events, args ) {
+ var stoped = false,
+ i = -1,
+ len = events.length,
+ handler;
+
+ while ( ++i < len ) {
+ handler = events[ i ];
+
+ if ( handler.cb.apply( handler.ctx2, args ) === false ) {
+ stoped = true;
+ break;
+ }
+ }
+
+ return !stoped;
+ }
+
+ protos = {
+
+ /**
+ * 绑定事件。
+ *
+ * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
+ * ```javascript
+ * var obj = {};
+ *
+ * // 使得obj有事件行为
+ * Mediator.installTo( obj );
+ *
+ * obj.on( 'testa', function( arg1, arg2 ) {
+ * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
+ * });
+ *
+ * obj.trigger( 'testa', 'arg1', 'arg2' );
+ * ```
+ *
+ * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
+ * 切会影响到`trigger`方法的返回值,为`false`。
+ *
+ * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
+ * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
+ * ```javascript
+ * obj.on( 'all', function( type, arg1, arg2 ) {
+ * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
+ * });
+ * ```
+ *
+ * @method on
+ * @grammar on( name, callback[, context] ) => self
+ * @param {String} name 事件名,支持多个事件用空格隔开
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ * @class Mediator
+ */
+ on: function( name, callback, context ) {
+ var me = this,
+ set;
+
+ if ( !callback ) {
+ return this;
+ }
+
+ set = this._events || (this._events = []);
+
+ eachEvent( name, callback, function( name, callback ) {
+ var handler = { e: name };
+
+ handler.cb = callback;
+ handler.ctx = context;
+ handler.ctx2 = context || me;
+ handler.id = set.length;
+
+ set.push( handler );
+ });
+
+ return this;
+ },
+
+ /**
+ * 绑定事件,且当handler执行完后,自动解除绑定。
+ * @method once
+ * @grammar once( name, callback[, context] ) => self
+ * @param {String} name 事件名
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ once: function( name, callback, context ) {
+ var me = this;
+
+ if ( !callback ) {
+ return me;
+ }
+
+ eachEvent( name, callback, function( name, callback ) {
+ var once = function() {
+ me.off( name, once );
+ return callback.apply( context || me, arguments );
+ };
+
+ once._cb = callback;
+ me.on( name, once, context );
+ });
+
+ return me;
+ },
+
+ /**
+ * 解除事件绑定
+ * @method off
+ * @grammar off( [name[, callback[, context] ] ] ) => self
+ * @param {String} [name] 事件名
+ * @param {Function} [callback] 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ off: function( name, cb, ctx ) {
+ var events = this._events;
+
+ if ( !events ) {
+ return this;
+ }
+
+ if ( !name && !cb && !ctx ) {
+ this._events = [];
+ return this;
+ }
+
+ eachEvent( name, cb, function( name, cb ) {
+ $.each( findHandlers( events, name, cb, ctx ), function() {
+ delete events[ this.id ];
+ });
+ });
+
+ return this;
+ },
+
+ /**
+ * 触发事件
+ * @method trigger
+ * @grammar trigger( name[, args...] ) => self
+ * @param {String} type 事件名
+ * @param {*} [...] 任意参数
+ * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
+ */
+ trigger: function( type ) {
+ var args, events, allEvents;
+
+ if ( !this._events || !type ) {
+ return this;
+ }
+
+ args = slice.call( arguments, 1 );
+ events = findHandlers( this._events, type );
+ allEvents = findHandlers( this._events, 'all' );
+
+ return triggerHanders( events, args ) &&
+ triggerHanders( allEvents, arguments );
+ }
+ };
+
+ /**
+ * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
+ * 主要目的是负责模块与模块之间的合作,降低耦合度。
+ *
+ * @class Mediator
+ */
+ return $.extend({
+
+ /**
+ * 可以通过这个接口,使任何对象具备事件功能。
+ * @method installTo
+ * @param {Object} obj 需要具备事件行为的对象。
+ * @return {Object} 返回obj.
+ */
+ installTo: function( obj ) {
+ return $.extend( obj, protos );
+ }
+
+ }, protos );
});
+ /**
+ * @fileOverview Uploader上传类
+ */
+ define('uploader',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$;
+
+ /**
+ * 上传入口类。
+ * @class Uploader
+ * @constructor
+ * @grammar new Uploader( opts ) => Uploader
+ * @example
+ * var uploader = WebUploader.Uploader({
+ * swf: 'path_of_swf/Uploader.swf',
+ *
+ * // 开起分片上传。
+ * chunked: true
+ * });
+ */
+ function Uploader( opts ) {
+ this.options = $.extend( true, {}, Uploader.options, opts );
+ this._init( this.options );
+ }
+
+ // default Options
+ // widgets中有相应扩展
+ Uploader.options = {};
+ Mediator.installTo( Uploader.prototype );
+
+ // 批量添加纯命令式方法。
+ $.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( fn, command ) {
+ Uploader.prototype[ fn ] = function() {
+ return this.request( command, arguments );
+ };
+ });
+
+ $.extend( Uploader.prototype, {
+ state: 'pending',
+
+ _init: function( opts ) {
+ var me = this;
+
+ me.request( 'init', opts, function() {
+ me.state = 'ready';
+ me.trigger('ready');
+ });
+ },
+
+ /**
+ * 获取或者设置Uploader配置项。
+ * @method option
+ * @grammar option( key ) => *
+ * @grammar option( key, val ) => self
+ * @example
+ *
+ * // 初始状态图片上传前不会压缩
+ * var uploader = new WebUploader.Uploader({
+ * compress: null;
+ * });
+ *
+ * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
+ * uploader.option( 'compress', {
+ * width: 1600,
+ * height: 1600
+ * });
+ */
+ option: function( key, val ) {
+ var opts = this.options;
+
+ // setter
+ if ( arguments.length > 1 ) {
+
+ if ( $.isPlainObject( val ) &&
+ $.isPlainObject( opts[ key ] ) ) {
+ $.extend( opts[ key ], val );
+ } else {
+ opts[ key ] = val;
+ }
+
+ } else { // getter
+ return key ? opts[ key ] : opts;
+ }
+ },
+
+ /**
+ * 获取文件统计信息。返回一个包含一下信息的对象。
+ * * `successNum` 上传成功的文件数
+ * * `progressNum` 上传中的文件数
+ * * `cancelNum` 被删除的文件数
+ * * `invalidNum` 无效的文件数
+ * * `uploadFailNum` 上传失败的文件数
+ * * `queueNum` 还在队列中的文件数
+ * * `interruptNum` 被暂停的文件数
+ * @method getStats
+ * @grammar getStats() => Object
+ */
+ getStats: function() {
+ // return this._mgr.getStats.apply( this._mgr, arguments );
+ var stats = this.request('get-stats');
+
+ return stats ? {
+ successNum: stats.numOfSuccess,
+ progressNum: stats.numOfProgress,
+
+ // who care?
+ // queueFailNum: 0,
+ cancelNum: stats.numOfCancel,
+ invalidNum: stats.numOfInvalid,
+ uploadFailNum: stats.numOfUploadFailed,
+ queueNum: stats.numOfQueue,
+ interruptNum: stats.numOfInterrupt
+ } : {};
+ },
+
+ // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
+ trigger: function( type/*, args...*/ ) {
+ var args = [].slice.call( arguments, 1 ),
+ opts = this.options,
+ name = 'on' + type.substring( 0, 1 ).toUpperCase() +
+ type.substring( 1 );
+
+ if (
+ // 调用通过on方法注册的handler.
+ Mediator.trigger.apply( this, arguments ) === false ||
+
+ // 调用opts.onEvent
+ $.isFunction( opts[ name ] ) &&
+ opts[ name ].apply( this, args ) === false ||
+
+ // 调用this.onEvent
+ $.isFunction( this[ name ] ) &&
+ this[ name ].apply( this, args ) === false ||
+
+ // 广播所有uploader的事件。
+ Mediator.trigger.apply( Mediator,
+ [ this, type ].concat( args ) ) === false ) {
+
+ return false;
+ }
+
+ return true;
+ },
+
+ /**
+ * 销毁 webuploader 实例
+ * @method destroy
+ * @grammar destroy() => undefined
+ */
+ destroy: function() {
+ this.request( 'destroy', arguments );
+ this.off();
+ },
+
+ // widgets/widget.js将补充此方法的详细文档。
+ request: Base.noop
+ });
+
+ /**
+ * 创建Uploader实例,等同于new Uploader( opts );
+ * @method create
+ * @class Base
+ * @static
+ * @grammar Base.create( opts ) => Uploader
+ */
+ Base.create = Uploader.create = function( opts ) {
+ return new Uploader( opts );
+ };
+
+ // 暴露Uploader,可以通过它来扩展业务逻辑。
+ Base.Uploader = Uploader;
+
+ return Uploader;
+ });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/runtime',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- factories = {},
-
- // 获取对象的第一个key
- getFirstKey = function( obj ) {
- for ( var key in obj ) {
- if ( obj.hasOwnProperty( key ) ) {
- return key;
- }
- }
- return null;
- };
-
- // 接口类。
- function Runtime( options ) {
- this.options = $.extend({
- container: document.body
- }, options );
- this.uid = Base.guid('rt_');
- }
-
- $.extend( Runtime.prototype, {
-
- getContainer: function() {
- var opts = this.options,
- parent, container;
-
- if ( this._container ) {
- return this._container;
- }
-
- parent = $( opts.container || document.body );
- container = $( document.createElement('div') );
-
- container.attr( 'id', 'rt_' + this.uid );
- container.css({
- position: 'absolute',
- top: '0px',
- left: '0px',
- width: '1px',
- height: '1px',
- overflow: 'hidden'
- });
-
- parent.append( container );
- parent.addClass('webuploader-container');
- this._container = container;
- this._parent = parent;
- return container;
- },
-
- init: Base.noop,
- exec: Base.noop,
-
- destroy: function() {
- this._container && this._container.remove();
- this._parent && this._parent.removeClass('webuploader-container');
- this.off();
- }
- });
-
- Runtime.orders = 'html5,flash';
-
-
- /**
- * 添加Runtime实现。
- * @param {String} type 类型
- * @param {Runtime} factory 具体Runtime实现。
- */
- Runtime.addRuntime = function( type, factory ) {
- factories[ type ] = factory;
- };
-
- Runtime.hasRuntime = function( type ) {
- return !!(type ? factories[ type ] : getFirstKey( factories ));
- };
-
- Runtime.create = function( opts, orders ) {
- var type, runtime;
-
- orders = orders || Runtime.orders;
- $.each( orders.split( /\s*,\s*/g ), function() {
- if ( factories[ this ] ) {
- type = this;
- return false;
- }
- });
-
- type = type || getFirstKey( factories );
-
- if ( !type ) {
- throw new Error('Runtime Error');
- }
-
- runtime = new factories[ type ]( opts );
- return runtime;
- };
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/runtime',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ factories = {},
+
+ // 获取对象的第一个key
+ getFirstKey = function( obj ) {
+ for ( var key in obj ) {
+ if ( obj.hasOwnProperty( key ) ) {
+ return key;
+ }
+ }
+ return null;
+ };
+
+ // 接口类。
+ function Runtime( options ) {
+ this.options = $.extend({
+ container: document.body
+ }, options );
+ this.uid = Base.guid('rt_');
+ }
+
+ $.extend( Runtime.prototype, {
+
+ getContainer: function() {
+ var opts = this.options,
+ parent, container;
+
+ if ( this._container ) {
+ return this._container;
+ }
+
+ parent = $( opts.container || document.body );
+ container = $( document.createElement('div') );
+
+ container.attr( 'id', 'rt_' + this.uid );
+ container.css({
+ position: 'absolute',
+ top: '0px',
+ left: '0px',
+ width: '1px',
+ height: '1px',
+ overflow: 'hidden'
+ });
+
+ parent.append( container );
+ parent.addClass('webuploader-container');
+ this._container = container;
+ this._parent = parent;
+ return container;
+ },
+
+ init: Base.noop,
+ exec: Base.noop,
+
+ destroy: function() {
+ this._container && this._container.remove();
+ this._parent && this._parent.removeClass('webuploader-container');
+ this.off();
+ }
+ });
+
+ Runtime.orders = 'html5,flash';
+
+
+ /**
+ * 添加Runtime实现。
+ * @param {String} type 类型
+ * @param {Runtime} factory 具体Runtime实现。
+ */
+ Runtime.addRuntime = function( type, factory ) {
+ factories[ type ] = factory;
+ };
+
+ Runtime.hasRuntime = function( type ) {
+ return !!(type ? factories[ type ] : getFirstKey( factories ));
+ };
+
+ Runtime.create = function( opts, orders ) {
+ var type, runtime;
+
+ orders = orders || Runtime.orders;
+ $.each( orders.split( /\s*,\s*/g ), function() {
+ if ( factories[ this ] ) {
+ type = this;
+ return false;
+ }
+ });
+
+ type = type || getFirstKey( factories );
+
+ if ( !type ) {
+ throw new Error('Runtime Error');
+ }
+
+ runtime = new factories[ type ]( opts );
+ return runtime;
+ };
+
+ Mediator.installTo( Runtime.prototype );
+ return Runtime;
+ });
- Mediator.installTo( Runtime.prototype );
- return Runtime;
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/client',[
+ 'base',
+ 'mediator',
+ 'runtime/runtime'
+ ], function( Base, Mediator, Runtime ) {
+
+ var cache;
+
+ cache = (function() {
+ var obj = {};
+
+ return {
+ add: function( runtime ) {
+ obj[ runtime.uid ] = runtime;
+ },
+
+ get: function( ruid, standalone ) {
+ var i;
+
+ if ( ruid ) {
+ return obj[ ruid ];
+ }
+
+ for ( i in obj ) {
+ // 有些类型不能重用,比如filepicker.
+ if ( standalone && obj[ i ].__standalone ) {
+ continue;
+ }
+
+ return obj[ i ];
+ }
+
+ return null;
+ },
+
+ remove: function( runtime ) {
+ delete obj[ runtime.uid ];
+ }
+ };
+ })();
+
+ function RuntimeClient( component, standalone ) {
+ var deferred = Base.Deferred(),
+ runtime;
+
+ this.uid = Base.guid('client_');
+
+ // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
+ this.runtimeReady = function( cb ) {
+ return deferred.done( cb );
+ };
+
+ this.connectRuntime = function( opts, cb ) {
+
+ // already connected.
+ if ( runtime ) {
+ throw new Error('already connected!');
+ }
+
+ deferred.done( cb );
+
+ if ( typeof opts === 'string' && cache.get( opts ) ) {
+ runtime = cache.get( opts );
+ }
+
+ // 像filePicker只能独立存在,不能公用。
+ runtime = runtime || cache.get( null, standalone );
+
+ // 需要创建
+ if ( !runtime ) {
+ runtime = Runtime.create( opts, opts.runtimeOrder );
+ runtime.__promise = deferred.promise();
+ runtime.once( 'ready', deferred.resolve );
+ runtime.init();
+ cache.add( runtime );
+ runtime.__client = 1;
+ } else {
+ // 来自cache
+ Base.$.extend( runtime.options, opts );
+ runtime.__promise.then( deferred.resolve );
+ runtime.__client++;
+ }
+
+ standalone && (runtime.__standalone = standalone);
+ return runtime;
+ };
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.disconnectRuntime = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ runtime.__client--;
+
+ if ( runtime.__client <= 0 ) {
+ cache.remove( runtime );
+ delete runtime.__promise;
+ runtime.destroy();
+ }
+
+ runtime = null;
+ };
+
+ this.exec = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ var args = Base.slice( arguments );
+ component && args.unshift( component );
+
+ return runtime.exec.apply( this, args );
+ };
+
+ this.getRuid = function() {
+ return runtime && runtime.uid;
+ };
+
+ this.destroy = (function( destroy ) {
+ return function() {
+ destroy && destroy.apply( this, arguments );
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ };
+ })( this.destroy );
+ }
+
+ Mediator.installTo( RuntimeClient.prototype );
+ return RuntimeClient;
});
-
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/client',[
- 'base',
- 'mediator',
- 'runtime/runtime'
- ], function( Base, Mediator, Runtime ) {
-
- var cache;
-
- cache = (function() {
- var obj = {};
-
- return {
- add: function( runtime ) {
- obj[ runtime.uid ] = runtime;
- },
-
- get: function( ruid, standalone ) {
- var i;
-
- if ( ruid ) {
- return obj[ ruid ];
- }
-
- for ( i in obj ) {
- // 有些类型不能重用,比如filepicker.
- if ( standalone && obj[ i ].__standalone ) {
- continue;
- }
-
- return obj[ i ];
- }
-
- return null;
- },
-
- remove: function( runtime ) {
- delete obj[ runtime.uid ];
- }
- };
- })();
-
- function RuntimeClient( component, standalone ) {
- var deferred = Base.Deferred(),
- runtime;
-
- this.uid = Base.guid('client_');
-
- // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
- this.runtimeReady = function( cb ) {
- return deferred.done( cb );
- };
-
- this.connectRuntime = function( opts, cb ) {
-
- // already connected.
- if ( runtime ) {
- throw new Error('already connected!');
- }
-
- deferred.done( cb );
-
- if ( typeof opts === 'string' && cache.get( opts ) ) {
- runtime = cache.get( opts );
- }
-
- // 像filePicker只能独立存在,不能公用。
- runtime = runtime || cache.get( null, standalone );
-
- // 需要创建
- if ( !runtime ) {
- runtime = Runtime.create( opts, opts.runtimeOrder );
- runtime.__promise = deferred.promise();
- runtime.once( 'ready', deferred.resolve );
- runtime.init();
- cache.add( runtime );
- runtime.__client = 1;
- } else {
- // 来自cache
- Base.$.extend( runtime.options, opts );
- runtime.__promise.then( deferred.resolve );
- runtime.__client++;
- }
-
- standalone && (runtime.__standalone = standalone);
- return runtime;
- };
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.disconnectRuntime = function() {
- if ( !runtime ) {
- return;
- }
-
- runtime.__client--;
-
- if ( runtime.__client <= 0 ) {
- cache.remove( runtime );
- delete runtime.__promise;
- runtime.destroy();
- }
-
- runtime = null;
- };
-
- this.exec = function() {
- if ( !runtime ) {
- return;
- }
-
- var args = Base.slice( arguments );
- component && args.unshift( component );
-
- return runtime.exec.apply( this, args );
- };
-
- this.getRuid = function() {
- return runtime && runtime.uid;
- };
-
- this.destroy = (function( destroy ) {
- return function() {
- destroy && destroy.apply( this, arguments );
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- };
- })( this.destroy );
- }
-
- Mediator.installTo( RuntimeClient.prototype );
- return RuntimeClient;
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/dnd',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function DragAndDrop( opts ) {
+ opts = this.options = $.extend({}, DragAndDrop.options, opts );
+
+ opts.container = $( opts.container );
+
+ if ( !opts.container.length ) {
+ return;
+ }
+
+ RuntimeClent.call( this, 'DragAndDrop' );
+ }
+
+ DragAndDrop.options = {
+ accept: null,
+ disableGlobalDnd: false
+ };
+
+ Base.inherits( RuntimeClent, {
+ constructor: DragAndDrop,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( DragAndDrop.prototype );
+
+ return DragAndDrop;
});
- /**
- * @fileOverview 错误信息
- */
- define('lib/dnd',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function DragAndDrop( opts ) {
- opts = this.options = $.extend({}, DragAndDrop.options, opts );
-
- opts.container = $( opts.container );
-
- if ( !opts.container.length ) {
- return;
- }
-
- RuntimeClent.call( this, 'DragAndDrop' );
- }
-
- DragAndDrop.options = {
- accept: null,
- disableGlobalDnd: false
- };
-
- Base.inherits( RuntimeClent, {
- constructor: DragAndDrop,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( DragAndDrop.prototype );
-
- return DragAndDrop;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/widget',[
+ 'base',
+ 'uploader'
+ ], function( Base, Uploader ) {
+
+ var $ = Base.$,
+ _init = Uploader.prototype._init,
+ _destroy = Uploader.prototype.destroy,
+ IGNORE = {},
+ widgetClass = [];
+
+ function isArrayLike( obj ) {
+ if ( !obj ) {
+ return false;
+ }
+
+ var length = obj.length,
+ type = $.type( obj );
+
+ if ( obj.nodeType === 1 && length ) {
+ return true;
+ }
+
+ return type === 'array' || type !== 'function' && type !== 'string' &&
+ (length === 0 || typeof length === 'number' && length > 0 &&
+ (length - 1) in obj);
+ }
+
+ function Widget( uploader ) {
+ this.owner = uploader;
+ this.options = uploader.options;
+ }
+
+ $.extend( Widget.prototype, {
+
+ init: Base.noop,
+
+ // 类Backbone的事件监听声明,监听uploader实例上的事件
+ // widget直接无法监听事件,事件只能通过uploader来传递
+ invoke: function( apiName, args ) {
+
+ /*
+ {
+ 'make-thumb': 'makeThumb'
+ }
+ */
+ var map = this.responseMap;
+
+ // 如果无API响应声明则忽略
+ if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
+ !$.isFunction( this[ map[ apiName ] ] ) ) {
+
+ return IGNORE;
+ }
+
+ return this[ map[ apiName ] ].apply( this, args );
+
+ },
+
+ /**
+ * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
+ * @method request
+ * @grammar request( command, args ) => * | Promise
+ * @grammar request( command, args, callback ) => Promise
+ * @for Uploader
+ */
+ request: function() {
+ return this.owner.request.apply( this.owner, arguments );
+ }
+ });
+
+ // 扩展Uploader.
+ $.extend( Uploader.prototype, {
+
+ /**
+ * @property {String | Array} [disableWidgets=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
+ */
+
+ // 覆写_init用来初始化widgets
+ _init: function() {
+ var me = this,
+ widgets = me._widgets = [],
+ deactives = me.options.disableWidgets || '';
+
+ $.each( widgetClass, function( _, klass ) {
+ (!deactives || !~deactives.indexOf( klass._name )) &&
+ widgets.push( new klass( me ) );
+ });
+
+ return _init.apply( me, arguments );
+ },
+
+ request: function( apiName, args, callback ) {
+ var i = 0,
+ widgets = this._widgets,
+ len = widgets && widgets.length,
+ rlts = [],
+ dfds = [],
+ widget, rlt, promise, key;
+
+ args = isArrayLike( args ) ? args : [ args ];
+
+ for ( ; i < len; i++ ) {
+ widget = widgets[ i ];
+ rlt = widget.invoke( apiName, args );
+
+ if ( rlt !== IGNORE ) {
+
+ // Deferred对象
+ if ( Base.isPromise( rlt ) ) {
+ dfds.push( rlt );
+ } else {
+ rlts.push( rlt );
+ }
+ }
+ }
+
+ // 如果有callback,则用异步方式。
+ if ( callback || dfds.length ) {
+ promise = Base.when.apply( Base, dfds );
+ key = promise.pipe ? 'pipe' : 'then';
+
+ // 很重要不能删除。删除了会死循环。
+ // 保证执行顺序。让callback总是在下一个 tick 中执行。
+ return promise[ key ](function() {
+ var deferred = Base.Deferred(),
+ args = arguments;
+
+ if ( args.length === 1 ) {
+ args = args[ 0 ];
+ }
+
+ setTimeout(function() {
+ deferred.resolve( args );
+ }, 1 );
+
+ return deferred.promise();
+ })[ callback ? key : 'done' ]( callback || Base.noop );
+ } else {
+ return rlts[ 0 ];
+ }
+ },
+
+ destroy: function() {
+ _destroy.apply( this, arguments );
+ this._widgets = null;
+ }
+ });
+
+ /**
+ * 添加组件
+ * @grammar Uploader.register(proto);
+ * @grammar Uploader.register(map, proto);
+ * @param {object} responseMap API 名称与函数实现的映射
+ * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
+ * @method Uploader.register
+ * @for Uploader
+ * @example
+ * Uploader.register({
+ * 'make-thumb': 'makeThumb'
+ * }, {
+ * init: function( options ) {},
+ * makeThumb: function() {}
+ * });
+ *
+ * Uploader.register({
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ */
+ Uploader.register = Widget.register = function( responseMap, widgetProto ) {
+ var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
+ klass;
+
+ if ( arguments.length === 1 ) {
+ widgetProto = responseMap;
+
+ // 自动生成 map 表。
+ $.each(widgetProto, function(key) {
+ if ( key[0] === '_' || key === 'name' ) {
+ key === 'name' && (map.name = widgetProto.name);
+ return;
+ }
+
+ map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
+ });
+
+ } else {
+ map = $.extend( map, responseMap );
+ }
+
+ widgetProto.responseMap = map;
+ klass = Base.inherits( Widget, widgetProto );
+ klass._name = map.name;
+ widgetClass.push( klass );
+
+ return klass;
+ };
+
+ /**
+ * 删除插件,只有在注册时指定了名字的才能被删除。
+ * @grammar Uploader.unRegister(name);
+ * @param {string} name 组件名字
+ * @method Uploader.unRegister
+ * @for Uploader
+ * @example
+ *
+ * Uploader.register({
+ * name: 'custom',
+ *
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ *
+ * Uploader.unRegister('custom');
+ */
+ Uploader.unRegister = Widget.unRegister = function( name ) {
+ if ( !name || name === 'anonymous' ) {
+ return;
+ }
+
+ // 删除指定的插件。
+ for ( var i = widgetClass.length; i--; ) {
+ if ( widgetClass[i]._name === name ) {
+ widgetClass.splice(i, 1)
+ }
+ }
+ };
+
+ return Widget;
});
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/widget',[
- 'base',
- 'uploader'
- ], function( Base, Uploader ) {
-
- var $ = Base.$,
- _init = Uploader.prototype._init,
- _destroy = Uploader.prototype.destroy,
- IGNORE = {},
- widgetClass = [];
-
- function isArrayLike( obj ) {
- if ( !obj ) {
- return false;
- }
-
- var length = obj.length,
- type = $.type( obj );
-
- if ( obj.nodeType === 1 && length ) {
- return true;
- }
-
- return type === 'array' || type !== 'function' && type !== 'string' &&
- (length === 0 || typeof length === 'number' && length > 0 &&
- (length - 1) in obj);
- }
-
- function Widget( uploader ) {
- this.owner = uploader;
- this.options = uploader.options;
- }
-
- $.extend( Widget.prototype, {
-
- init: Base.noop,
-
- // 类Backbone的事件监听声明,监听uploader实例上的事件
- // widget直接无法监听事件,事件只能通过uploader来传递
- invoke: function( apiName, args ) {
-
- /*
- {
- 'make-thumb': 'makeThumb'
- }
- */
- var map = this.responseMap;
-
- // 如果无API响应声明则忽略
- if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
- !$.isFunction( this[ map[ apiName ] ] ) ) {
-
- return IGNORE;
- }
-
- return this[ map[ apiName ] ].apply( this, args );
-
- },
-
- /**
- * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
- * @method request
- * @grammar request( command, args ) => * | Promise
- * @grammar request( command, args, callback ) => Promise
- * @for Uploader
- */
- request: function() {
- return this.owner.request.apply( this.owner, arguments );
- }
- });
-
- // 扩展Uploader.
- $.extend( Uploader.prototype, {
-
- /**
- * @property {String | Array} [disableWidgets=undefined]
- * @namespace options
- * @for Uploader
- * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
- */
-
- // 覆写_init用来初始化widgets
- _init: function() {
- var me = this,
- widgets = me._widgets = [],
- deactives = me.options.disableWidgets || '';
-
- $.each( widgetClass, function( _, klass ) {
- (!deactives || !~deactives.indexOf( klass._name )) &&
- widgets.push( new klass( me ) );
- });
-
- return _init.apply( me, arguments );
- },
-
- request: function( apiName, args, callback ) {
- var i = 0,
- widgets = this._widgets,
- len = widgets && widgets.length,
- rlts = [],
- dfds = [],
- widget, rlt, promise, key;
-
- args = isArrayLike( args ) ? args : [ args ];
-
- for ( ; i < len; i++ ) {
- widget = widgets[ i ];
- rlt = widget.invoke( apiName, args );
-
- if ( rlt !== IGNORE ) {
-
- // Deferred对象
- if ( Base.isPromise( rlt ) ) {
- dfds.push( rlt );
- } else {
- rlts.push( rlt );
- }
- }
- }
-
- // 如果有callback,则用异步方式。
- if ( callback || dfds.length ) {
- promise = Base.when.apply( Base, dfds );
- key = promise.pipe ? 'pipe' : 'then';
-
- // 很重要不能删除。删除了会死循环。
- // 保证执行顺序。让callback总是在下一个 tick 中执行。
- return promise[ key ](function() {
- var deferred = Base.Deferred(),
- args = arguments;
-
- if ( args.length === 1 ) {
- args = args[ 0 ];
- }
-
- setTimeout(function() {
- deferred.resolve( args );
- }, 1 );
-
- return deferred.promise();
- })[ callback ? key : 'done' ]( callback || Base.noop );
- } else {
- return rlts[ 0 ];
- }
- },
-
- destroy: function() {
- _destroy.apply( this, arguments );
- this._widgets = null;
- }
- });
-
- /**
- * 添加组件
- * @grammar Uploader.register(proto);
- * @grammar Uploader.register(map, proto);
- * @param {object} responseMap API 名称与函数实现的映射
- * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
- * @method Uploader.register
- * @for Uploader
- * @example
- * Uploader.register({
- * 'make-thumb': 'makeThumb'
- * }, {
- * init: function( options ) {},
- * makeThumb: function() {}
- * });
- *
- * Uploader.register({
- * 'make-thumb': function() {
- *
- * }
- * });
- */
- Uploader.register = Widget.register = function( responseMap, widgetProto ) {
- var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
- klass;
-
- if ( arguments.length === 1 ) {
- widgetProto = responseMap;
-
- // 自动生成 map 表。
- $.each(widgetProto, function(key) {
- if ( key[0] === '_' || key === 'name' ) {
- key === 'name' && (map.name = widgetProto.name);
- return;
- }
-
- map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
- });
-
- } else {
- map = $.extend( map, responseMap );
- }
-
- widgetProto.responseMap = map;
- klass = Base.inherits( Widget, widgetProto );
- klass._name = map.name;
- widgetClass.push( klass );
-
- return klass;
- };
-
- /**
- * 删除插件,只有在注册时指定了名字的才能被删除。
- * @grammar Uploader.unRegister(name);
- * @param {string} name 组件名字
- * @method Uploader.unRegister
- * @for Uploader
- * @example
- *
- * Uploader.register({
- * name: 'custom',
- *
- * 'make-thumb': function() {
- *
- * }
- * });
- *
- * Uploader.unRegister('custom');
- */
- Uploader.unRegister = Widget.unRegister = function( name ) {
- if ( !name || name === 'anonymous' ) {
- return;
- }
-
- // 删除指定的插件。
- for ( var i = widgetClass.length; i--; ) {
- if ( widgetClass[i]._name === name ) {
- widgetClass.splice(i, 1)
- }
- }
- };
-
- return Widget;
- });
- /**
- * @fileOverview DragAndDrop Widget。
- */
- define('widgets/filednd',[
- 'base',
- 'uploader',
- 'lib/dnd',
- 'widgets/widget'
- ], function( Base, Uploader, Dnd ) {
- var $ = Base.$;
-
- Uploader.options.dnd = '';
-
- /**
- * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @event dndAccept
- * @param {DataTransferItemList} items DataTransferItem
- * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
- * @for Uploader
- */
- return Uploader.register({
- name: 'dnd',
-
- init: function( opts ) {
-
- if ( !opts.dnd ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- disableGlobalDnd: opts.disableGlobalDnd,
- container: opts.dnd,
- accept: opts.accept
- }),
- dnd;
-
- this.dnd = dnd = new Dnd( options );
-
- dnd.once( 'ready', deferred.resolve );
- dnd.on( 'drop', function( files ) {
- me.request( 'add-file', [ files ]);
- });
-
- // 检测文件是否全部允许添加。
- dnd.on( 'accept', function( items ) {
- return me.owner.trigger( 'dndAccept', items );
- });
-
- dnd.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.dnd && this.dnd.destroy();
- }
- });
- });
-
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepaste',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function FilePaste( opts ) {
- opts = this.options = $.extend({}, opts );
- opts.container = $( opts.container || document.body );
- RuntimeClent.call( this, 'FilePaste' );
- }
-
- Base.inherits( RuntimeClent, {
- constructor: FilePaste,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( FilePaste.prototype );
+ /**
+ * @fileOverview DragAndDrop Widget。
+ */
+ define('widgets/filednd',[
+ 'base',
+ 'uploader',
+ 'lib/dnd',
+ 'widgets/widget'
+ ], function( Base, Uploader, Dnd ) {
+ var $ = Base.$;
+
+ Uploader.options.dnd = '';
+
+ /**
+ * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @event dndAccept
+ * @param {DataTransferItemList} items DataTransferItem
+ * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'dnd',
+
+ init: function( opts ) {
+
+ if ( !opts.dnd ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ disableGlobalDnd: opts.disableGlobalDnd,
+ container: opts.dnd,
+ accept: opts.accept
+ }),
+ dnd;
+
+ this.dnd = dnd = new Dnd( options );
+
+ dnd.once( 'ready', deferred.resolve );
+ dnd.on( 'drop', function( files ) {
+ me.request( 'add-file', [ files ]);
+ });
+
+ // 检测文件是否全部允许添加。
+ dnd.on( 'accept', function( items ) {
+ return me.owner.trigger( 'dndAccept', items );
+ });
+
+ dnd.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.dnd && this.dnd.destroy();
+ }
+ });
+ });
- return FilePaste;
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepaste',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function FilePaste( opts ) {
+ opts = this.options = $.extend({}, opts );
+ opts.container = $( opts.container || document.body );
+ RuntimeClent.call( this, 'FilePaste' );
+ }
+
+ Base.inherits( RuntimeClent, {
+ constructor: FilePaste,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( FilePaste.prototype );
+
+ return FilePaste;
});
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/filepaste',[
- 'base',
- 'uploader',
- 'lib/filepaste',
- 'widgets/widget'
- ], function( Base, Uploader, FilePaste ) {
- var $ = Base.$;
-
- /**
- * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
- * @namespace options
- * @for Uploader
- */
- return Uploader.register({
- name: 'paste',
-
- init: function( opts ) {
-
- if ( !opts.paste ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- container: opts.paste,
- accept: opts.accept
- }),
- paste;
-
- this.paste = paste = new FilePaste( options );
-
- paste.once( 'ready', deferred.resolve );
- paste.on( 'paste', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- paste.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.paste && this.paste.destroy();
- }
- });
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/filepaste',[
+ 'base',
+ 'uploader',
+ 'lib/filepaste',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePaste ) {
+ var $ = Base.$;
+
+ /**
+ * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
+ * @namespace options
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'paste',
+
+ init: function( opts ) {
+
+ if ( !opts.paste ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ container: opts.paste,
+ accept: opts.accept
+ }),
+ paste;
+
+ this.paste = paste = new FilePaste( options );
+
+ paste.once( 'ready', deferred.resolve );
+ paste.on( 'paste', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ paste.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.paste && this.paste.destroy();
+ }
+ });
});
- /**
- * @fileOverview Blob
- */
- define('lib/blob',[
- 'base',
- 'runtime/client'
- ], function( Base, RuntimeClient ) {
-
- function Blob( ruid, source ) {
- var me = this;
-
- me.source = source;
- me.ruid = ruid;
- this.size = source.size || 0;
-
- // 如果没有指定 mimetype, 但是知道文件后缀。
- if ( !source.type && this.ext &&
- ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
- this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
- } else {
- this.type = source.type || 'application/octet-stream';
- }
-
- RuntimeClient.call( me, 'Blob' );
- this.uid = source.uid || this.uid;
-
- if ( ruid ) {
- me.connectRuntime( ruid );
- }
- }
-
- Base.inherits( RuntimeClient, {
- constructor: Blob,
-
- slice: function( start, end ) {
- return this.exec( 'slice', start, end );
- },
-
- getSource: function() {
- return this.source;
- }
- });
-
- return Blob;
+ /**
+ * @fileOverview Blob
+ */
+ define('lib/blob',[
+ 'base',
+ 'runtime/client'
+ ], function( Base, RuntimeClient ) {
+
+ function Blob( ruid, source ) {
+ var me = this;
+
+ me.source = source;
+ me.ruid = ruid;
+ this.size = source.size || 0;
+
+ // 如果没有指定 mimetype, 但是知道文件后缀。
+ if ( !source.type && this.ext &&
+ ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
+ this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
+ } else {
+ this.type = source.type || 'application/octet-stream';
+ }
+
+ RuntimeClient.call( me, 'Blob' );
+ this.uid = source.uid || this.uid;
+
+ if ( ruid ) {
+ me.connectRuntime( ruid );
+ }
+ }
+
+ Base.inherits( RuntimeClient, {
+ constructor: Blob,
+
+ slice: function( start, end ) {
+ return this.exec( 'slice', start, end );
+ },
+
+ getSource: function() {
+ return this.source;
+ }
+ });
+
+ return Blob;
});
- /**
- * 为了统一化Flash的File和HTML5的File而存在。
- * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
- * @fileOverview File
- */
- define('lib/file',[
- 'base',
- 'lib/blob'
- ], function( Base, Blob ) {
-
- var uid = 1,
- rExt = /\.([^.]+)$/;
-
- function File( ruid, file ) {
- var ext;
-
- this.name = file.name || ('untitled' + uid++);
- ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
-
- // todo 支持其他类型文件的转换。
- // 如果有 mimetype, 但是文件名里面没有找出后缀规律
- if ( !ext && file.type ) {
- ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
- RegExp.$1.toLowerCase() : '';
- this.name += '.' + ext;
- }
-
- this.ext = ext;
- this.lastModifiedDate = file.lastModifiedDate ||
- file.lastModified && new Date(file.lastModified).toLocaleString() ||
- (new Date()).toLocaleString();
+ /**
+ * 为了统一化Flash的File和HTML5的File而存在。
+ * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
+ * @fileOverview File
+ */
+ define('lib/file',[
+ 'base',
+ 'lib/blob'
+ ], function( Base, Blob ) {
+
+ var uid = 1,
+ rExt = /\.([^.]+)$/;
+
+ function File( ruid, file ) {
+ var ext;
+
+ this.name = file.name || ('untitled' + uid++);
+ ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
+
+ // todo 支持其他类型文件的转换。
+ // 如果有 mimetype, 但是文件名里面没有找出后缀规律
+ if ( !ext && file.type ) {
+ ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
+ RegExp.$1.toLowerCase() : '';
+ this.name += '.' + ext;
+ }
+
+ this.ext = ext;
+ this.lastModifiedDate = file.lastModifiedDate ||
+ file.lastModified && new Date(file.lastModified).toLocaleString() ||
+ (new Date()).toLocaleString();
+
+ Blob.apply( this, arguments );
+ }
+
+ return Base.inherits( Blob, File );
+ });
- Blob.apply( this, arguments );
- }
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepicker',[
+ 'base',
+ 'runtime/client',
+ 'lib/file'
+ ], function( Base, RuntimeClient, File ) {
+
+ var $ = Base.$;
+
+ function FilePicker( opts ) {
+ opts = this.options = $.extend({}, FilePicker.options, opts );
+
+ opts.container = $( opts.id );
+
+ if ( !opts.container.length ) {
+ throw new Error('按钮指定错误');
+ }
+
+ opts.innerHTML = opts.innerHTML || opts.label ||
+ opts.container.html() || '';
+
+ opts.button = $( opts.button || document.createElement('div') );
+ opts.button.html( opts.innerHTML );
+ opts.container.html( opts.button );
+
+ RuntimeClient.call( this, 'FilePicker', true );
+ }
+
+ FilePicker.options = {
+ button: null,
+ container: null,
+ label: null,
+ innerHTML: null,
+ multiple: true,
+ accept: null,
+ name: 'file',
+ style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
+ };
+
+ Base.inherits( RuntimeClient, {
+ constructor: FilePicker,
+
+ init: function() {
+ var me = this,
+ opts = me.options,
+ button = opts.button,
+ style = opts.style;
+
+ if (style)
+ button.addClass('webuploader-pick');
+
+ me.on( 'all', function( type ) {
+ var files;
+
+ switch ( type ) {
+ case 'mouseenter':
+ if (style)
+ button.addClass('webuploader-pick-hover');
+ break;
+
+ case 'mouseleave':
+ if (style)
+ button.removeClass('webuploader-pick-hover');
+ break;
+
+ case 'change':
+ files = me.exec('getFiles');
+ me.trigger( 'select', $.map( files, function( file ) {
+ file = new File( me.getRuid(), file );
+
+ // 记录来源。
+ file._refer = opts.container;
+ return file;
+ }), opts.container );
+ break;
+ }
+ });
+
+ me.connectRuntime( opts, function() {
+ me.refresh();
+ me.exec( 'init', opts );
+ me.trigger('ready');
+ });
+
+ this._resizeHandler = Base.bindFn( this.refresh, this );
+ $( window ).on( 'resize', this._resizeHandler );
+ },
+
+ refresh: function() {
+ var shimContainer = this.getRuntime().getContainer(),
+ button = this.options.button,
+ /*
+ width = button.outerWidth ?
+ button.outerWidth() : button.width(),
+
+ height = button.outerHeight ?
+ button.outerHeight() : button.height(),
+ */
+ width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
+ height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
+ pos = button.offset();
+
+ width && height && shimContainer.css({
+ bottom: 'auto',
+ right: 'auto',
+ width: width + 'px',
+ height: height + 'px'
+ }).offset( pos );
+ },
+
+ enable: function() {
+ var btn = this.options.button;
+
+ btn.removeClass('webuploader-pick-disable');
+ this.refresh();
+ },
+
+ disable: function() {
+ var btn = this.options.button;
+
+ this.getRuntime().getContainer().css({
+ top: '-99999px'
+ });
+
+ btn.addClass('webuploader-pick-disable');
+ },
+
+ destroy: function() {
+ var btn = this.options.button;
+ $( window ).off( 'resize', this._resizeHandler );
+ btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
+ 'webuploader-pick');
+ }
+ });
+
+ return FilePicker;
+ });
- return Base.inherits( Blob, File );
+ /**
+ * @fileOverview 文件选择相关
+ */
+ define('widgets/filepicker',[
+ 'base',
+ 'uploader',
+ 'lib/filepicker',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePicker ) {
+ var $ = Base.$;
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Selector | Object} [pick=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 指定选择文件的按钮容器,不指定则不创建按钮。
+ *
+ * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
+ * * `label` {String} 请采用 `innerHTML` 代替
+ * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
+ * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
+ */
+ pick: null,
+
+ /**
+ * @property {Array} [accept=null]
+ * @namespace options
+ * @for Uploader
+ * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
+ *
+ * * `title` {String} 文字描述
+ * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
+ * * `mimeTypes` {String} 多个用逗号分割。
+ *
+ * 如:
+ *
+ * ```
+ * {
+ * title: 'Images',
+ * extensions: 'gif,jpg,jpeg,bmp,png',
+ * mimeTypes: 'image/*'
+ * }
+ * ```
+ */
+ accept: null/*{
+ title: 'Images',
+ extensions: 'gif,jpg,jpeg,bmp,png',
+ mimeTypes: 'image/*'
+ }*/
+ });
+
+ return Uploader.register({
+ name: 'picker',
+
+ init: function( opts ) {
+ this.pickers = [];
+ return opts.pick && this.addBtn( opts.pick );
+ },
+
+ refresh: function() {
+ $.each( this.pickers, function() {
+ this.refresh();
+ });
+ },
+
+ /**
+ * @method addButton
+ * @for Uploader
+ * @grammar addButton( pick ) => Promise
+ * @description
+ * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
+ * @example
+ * uploader.addButton({
+ * id: '#btnContainer',
+ * innerHTML: '选择文件'
+ * });
+ */
+ addBtn: function( pick ) {
+ var me = this,
+ opts = me.options,
+ accept = opts.accept,
+ promises = [];
+
+ if ( !pick ) {
+ return;
+ }
+
+ $.isPlainObject( pick ) || (pick = {
+ id: pick
+ });
+
+ $( pick.id ).each(function() {
+ var options, picker, deferred;
+
+ deferred = Base.Deferred();
+
+ options = $.extend({}, pick, {
+ accept: $.isPlainObject( accept ) ? [ accept ] : accept,
+ swf: opts.swf,
+ runtimeOrder: opts.runtimeOrder,
+ id: this
+ });
+
+ picker = new FilePicker( options );
+
+ picker.once( 'ready', deferred.resolve );
+ picker.on( 'select', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ picker.on('dialogopen', function() {
+ me.owner.trigger('dialogOpen', picker.button);
+ });
+ picker.init();
+
+ me.pickers.push( picker );
+
+ promises.push( deferred.promise() );
+ });
+
+ return Base.when.apply( Base, promises );
+ },
+
+ disable: function() {
+ $.each( this.pickers, function() {
+ this.disable();
+ });
+ },
+
+ enable: function() {
+ $.each( this.pickers, function() {
+ this.enable();
+ });
+ },
+
+ destroy: function() {
+ $.each( this.pickers, function() {
+ this.destroy();
+ });
+ this.pickers = null;
+ }
+ });
});
-
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepicker',[
- 'base',
- 'runtime/client',
- 'lib/file'
- ], function( Base, RuntimeClient, File ) {
-
- var $ = Base.$;
-
- function FilePicker( opts ) {
- opts = this.options = $.extend({}, FilePicker.options, opts );
-
- opts.container = $( opts.id );
-
- if ( !opts.container.length ) {
- throw new Error('按钮指定错误');
- }
-
- opts.innerHTML = opts.innerHTML || opts.label ||
- opts.container.html() || '';
-
- opts.button = $( opts.button || document.createElement('div') );
- opts.button.html( opts.innerHTML );
- opts.container.html( opts.button );
-
- RuntimeClient.call( this, 'FilePicker', true );
- }
-
- FilePicker.options = {
- button: null,
- container: null,
- label: null,
- innerHTML: null,
- multiple: true,
- accept: null,
- name: 'file',
- style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
- };
-
- Base.inherits( RuntimeClient, {
- constructor: FilePicker,
-
- init: function() {
- var me = this,
- opts = me.options,
- button = opts.button,
- style = opts.style;
-
- if (style)
- button.addClass('webuploader-pick');
-
- me.on( 'all', function( type ) {
- var files;
-
- switch ( type ) {
- case 'mouseenter':
- if (style)
- button.addClass('webuploader-pick-hover');
- break;
-
- case 'mouseleave':
- if (style)
- button.removeClass('webuploader-pick-hover');
- break;
-
- case 'change':
- files = me.exec('getFiles');
- me.trigger( 'select', $.map( files, function( file ) {
- file = new File( me.getRuid(), file );
-
- // 记录来源。
- file._refer = opts.container;
- return file;
- }), opts.container );
- break;
- }
- });
-
- me.connectRuntime( opts, function() {
- me.refresh();
- me.exec( 'init', opts );
- me.trigger('ready');
- });
-
- this._resizeHandler = Base.bindFn( this.refresh, this );
- $( window ).on( 'resize', this._resizeHandler );
- },
-
- refresh: function() {
- var shimContainer = this.getRuntime().getContainer(),
- button = this.options.button,
- /*
- width = button.outerWidth ?
- button.outerWidth() : button.width(),
-
- height = button.outerHeight ?
- button.outerHeight() : button.height(),
- */
- width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
- height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
- pos = button.offset();
-
- width && height && shimContainer.css({
- bottom: 'auto',
- right: 'auto',
- width: width + 'px',
- height: height + 'px'
- }).offset( pos );
- },
-
- enable: function() {
- var btn = this.options.button;
-
- btn.removeClass('webuploader-pick-disable');
- this.refresh();
- },
-
- disable: function() {
- var btn = this.options.button;
-
- this.getRuntime().getContainer().css({
- top: '-99999px'
- });
-
- btn.addClass('webuploader-pick-disable');
- },
-
- destroy: function() {
- var btn = this.options.button;
- $( window ).off( 'resize', this._resizeHandler );
- btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
- 'webuploader-pick');
- }
- });
-
- return FilePicker;
- });
-
- /**
- * @fileOverview 文件选择相关
- */
- define('widgets/filepicker',[
- 'base',
- 'uploader',
- 'lib/filepicker',
- 'widgets/widget'
- ], function( Base, Uploader, FilePicker ) {
- var $ = Base.$;
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Selector | Object} [pick=undefined]
- * @namespace options
- * @for Uploader
- * @description 指定选择文件的按钮容器,不指定则不创建按钮。
- *
- * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
- * * `label` {String} 请采用 `innerHTML` 代替
- * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
- * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
- */
- pick: null,
-
- /**
- * @property {Array} [accept=null]
- * @namespace options
- * @for Uploader
- * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
- *
- * * `title` {String} 文字描述
- * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
- * * `mimeTypes` {String} 多个用逗号分割。
- *
- * 如:
- *
- * ```
- * {
- * title: 'Images',
- * extensions: 'gif,jpg,jpeg,bmp,png',
- * mimeTypes: 'image/*'
- * }
- * ```
- */
- accept: null/*{
- title: 'Images',
- extensions: 'gif,jpg,jpeg,bmp,png',
- mimeTypes: 'image/*'
- }*/
- });
-
- return Uploader.register({
- name: 'picker',
-
- init: function( opts ) {
- this.pickers = [];
- return opts.pick && this.addBtn( opts.pick );
- },
-
- refresh: function() {
- $.each( this.pickers, function() {
- this.refresh();
- });
- },
-
- /**
- * @method addButton
- * @for Uploader
- * @grammar addButton( pick ) => Promise
- * @description
- * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
- * @example
- * uploader.addButton({
- * id: '#btnContainer',
- * innerHTML: '选择文件'
- * });
- */
- addBtn: function( pick ) {
- var me = this,
- opts = me.options,
- accept = opts.accept,
- promises = [];
-
- if ( !pick ) {
- return;
- }
-
- $.isPlainObject( pick ) || (pick = {
- id: pick
- });
-
- $( pick.id ).each(function() {
- var options, picker, deferred;
-
- deferred = Base.Deferred();
-
- options = $.extend({}, pick, {
- accept: $.isPlainObject( accept ) ? [ accept ] : accept,
- swf: opts.swf,
- runtimeOrder: opts.runtimeOrder,
- id: this
- });
-
- picker = new FilePicker( options );
-
- picker.once( 'ready', deferred.resolve );
- picker.on( 'select', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- picker.on('dialogopen', function() {
- me.owner.trigger('dialogOpen', picker.button);
- });
- picker.init();
-
- me.pickers.push( picker );
-
- promises.push( deferred.promise() );
- });
-
- return Base.when.apply( Base, promises );
- },
-
- disable: function() {
- $.each( this.pickers, function() {
- this.disable();
- });
- },
-
- enable: function() {
- $.each( this.pickers, function() {
- this.enable();
- });
- },
-
- destroy: function() {
- $.each( this.pickers, function() {
- this.destroy();
- });
- this.pickers = null;
- }
- });
+ /**
+ * @fileOverview Image
+ */
+ define('lib/image',[
+ 'base',
+ 'runtime/client',
+ 'lib/blob'
+ ], function( Base, RuntimeClient, Blob ) {
+ var $ = Base.$;
+
+ // 构造器。
+ function Image( opts ) {
+ this.options = $.extend({}, Image.options, opts );
+ RuntimeClient.call( this, 'Image' );
+
+ this.on( 'load', function() {
+ this._info = this.exec('info');
+ this._meta = this.exec('meta');
+ });
+ }
+
+ // 默认选项。
+ Image.options = {
+
+ // 默认的图片处理质量
+ quality: 90,
+
+ // 是否裁剪
+ crop: false,
+
+ // 是否保留头部信息
+ preserveHeaders: false,
+
+ // 是否允许放大。
+ allowMagnify: false
+ };
+
+ // 继承RuntimeClient.
+ Base.inherits( RuntimeClient, {
+ constructor: Image,
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._meta = val;
+ return this;
+ }
+
+ // getter
+ return this._meta;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ ruid = blob.getRuid();
+
+ this.connectRuntime( ruid, function() {
+ me.exec( 'init', me.options );
+ me.exec( 'loadFromBlob', blob );
+ });
+ },
+
+ resize: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'resize' ].concat( args ) );
+ },
+
+ crop: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'crop' ].concat( args ) );
+ },
+
+ getAsDataUrl: function( type ) {
+ return this.exec( 'getAsDataUrl', type );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this.exec( 'getAsBlob', type );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
+
+ return Image;
});
- /**
- * @fileOverview Image
- */
- define('lib/image',[
- 'base',
- 'runtime/client',
- 'lib/blob'
- ], function( Base, RuntimeClient, Blob ) {
- var $ = Base.$;
-
- // 构造器。
- function Image( opts ) {
- this.options = $.extend({}, Image.options, opts );
- RuntimeClient.call( this, 'Image' );
-
- this.on( 'load', function() {
- this._info = this.exec('info');
- this._meta = this.exec('meta');
- });
- }
-
- // 默认选项。
- Image.options = {
-
- // 默认的图片处理质量
- quality: 90,
-
- // 是否裁剪
- crop: false,
-
- // 是否保留头部信息
- preserveHeaders: false,
-
- // 是否允许放大。
- allowMagnify: false
- };
-
- // 继承RuntimeClient.
- Base.inherits( RuntimeClient, {
- constructor: Image,
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._meta = val;
- return this;
- }
-
- // getter
- return this._meta;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- ruid = blob.getRuid();
-
- this.connectRuntime( ruid, function() {
- me.exec( 'init', me.options );
- me.exec( 'loadFromBlob', blob );
- });
- },
-
- resize: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'resize' ].concat( args ) );
- },
-
- crop: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'crop' ].concat( args ) );
- },
-
- getAsDataUrl: function( type ) {
- return this.exec( 'getAsDataUrl', type );
- },
-
- getAsBlob: function( type ) {
- var blob = this.exec( 'getAsBlob', type );
-
- return new Blob( this.getRuid(), blob );
- }
- });
-
- return Image;
+ /**
+ * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
+ */
+ define('widgets/image',[
+ 'base',
+ 'uploader',
+ 'lib/image',
+ 'widgets/widget'
+ ], function( Base, Uploader, Image ) {
+
+ var $ = Base.$,
+ throttle;
+
+ // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
+ throttle = (function( max ) {
+ var occupied = 0,
+ waiting = [],
+ tick = function() {
+ var item;
+
+ while ( waiting.length && occupied < max ) {
+ item = waiting.shift();
+ occupied += item[ 0 ];
+ item[ 1 ]();
+ }
+ };
+
+ return function( emiter, size, cb ) {
+ waiting.push([ size, cb ]);
+ emiter.once( 'destroy', function() {
+ occupied -= size;
+ setTimeout( tick, 1 );
+ });
+ setTimeout( tick, 1 );
+ };
+ })( 5 * 1024 * 1024 );
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Object} [thumb]
+ * @namespace options
+ * @for Uploader
+ * @description 配置生成缩略图的选项。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 110,
+ * height: 110,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 70,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: true,
+ *
+ * // 是否允许裁剪。
+ * crop: true,
+ *
+ * // 为空的话则保留原有图片格式。
+ * // 否则强制转换成指定的类型。
+ * type: 'image/jpeg'
+ * }
+ * ```
+ */
+ thumb: {
+ width: 110,
+ height: 110,
+ quality: 70,
+ allowMagnify: true,
+ crop: true,
+ preserveHeaders: false,
+
+ // 为空的话则保留原有图片格式。
+ // 否则强制转换成指定的类型。
+ // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
+ // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
+ type: 'image/jpeg'
+ },
+
+ /**
+ * @property {Object} [compress]
+ * @namespace options
+ * @for Uploader
+ * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 1600,
+ * height: 1600,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 90,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: false,
+ *
+ * // 是否允许裁剪。
+ * crop: false,
+ *
+ * // 是否保留头部meta信息。
+ * preserveHeaders: true,
+ *
+ * // 如果发现压缩后文件大小比原来还大,则使用原来图片
+ * // 此属性可能会影响图片自动纠正功能
+ * noCompressIfLarger: false,
+ *
+ * // 单位字节,如果图片大小小于此值,不会采用压缩。
+ * compressSize: 0
+ * }
+ * ```
+ */
+ compress: {
+ width: 1600,
+ height: 1600,
+ quality: 90,
+ allowMagnify: false,
+ crop: false,
+ preserveHeaders: true
+ }
+ });
+
+ return Uploader.register({
+
+ name: 'image',
+
+
+ /**
+ * 生成缩略图,此过程为异步,所以需要传入`callback`。
+ * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
+ *
+ * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
+ *
+ * `callback`中可以接收到两个参数。
+ * * 第一个为error,如果生成缩略图有错误,此error将为真。
+ * * 第二个为ret, 缩略图的Data URL值。
+ *
+ * **注意**
+ * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
+ * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
+ *
+ * @method makeThumb
+ * @grammar makeThumb( file, callback ) => undefined
+ * @grammar makeThumb( file, callback, width, height ) => undefined
+ * @for Uploader
+ * @example
+ *
+ * uploader.on( 'fileQueued', function( file ) {
+ * var $li = ...;
+ *
+ * uploader.makeThumb( file, function( error, ret ) {
+ * if ( error ) {
+ * $li.text('预览错误');
+ * } else {
+ * $li.append('');
+ * }
+ * });
+ *
+ * });
+ */
+ makeThumb: function( file, cb, width, height ) {
+ var opts, image;
+
+ file = this.request( 'get-file', file );
+
+ // 只预览图片格式。
+ if ( !file.type.match( /^image/ ) ) {
+ cb( true );
+ return;
+ }
+
+ opts = $.extend({}, this.options.thumb );
+
+ // 如果传入的是object.
+ if ( $.isPlainObject( width ) ) {
+ opts = $.extend( opts, width );
+ width = null;
+ }
+
+ width = width || opts.width;
+ height = height || opts.height;
+
+ image = new Image( opts );
+
+ image.once( 'load', function() {
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ // 当 resize 完后
+ image.once( 'complete', function() {
+ cb( false, image.getAsDataUrl( opts.type ) );
+ image.destroy();
+ });
+
+ image.once( 'error', function( reason ) {
+ cb( reason || true );
+ image.destroy();
+ });
+
+ throttle( image, file.source.size, function() {
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+ image.loadFromBlob( file.source );
+ });
+ },
+
+ beforeSendFile: function( file ) {
+ var opts = this.options.compress || this.options.resize,
+ compressSize = opts && opts.compressSize || 0,
+ noCompressIfLarger = opts && opts.noCompressIfLarger || false,
+ image, deferred;
+
+ file = this.request( 'get-file', file );
+
+ // 只压缩 jpeg 图片格式。
+ // gif 可能会丢失针
+ // bmp png 基本上尺寸都不大,且压缩比比较小。
+ if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
+ file.size < compressSize ||
+ file._compressed ) {
+ return;
+ }
+
+ opts = $.extend({}, opts );
+ deferred = Base.Deferred();
+
+ image = new Image( opts );
+
+ deferred.always(function() {
+ image.destroy();
+ image = null;
+ });
+ image.once( 'error', deferred.reject );
+ image.once( 'load', function() {
+ var width = opts.width,
+ height = opts.height;
+
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ image.once( 'complete', function() {
+ var blob, size;
+
+ // 移动端 UC / qq 浏览器的无图模式下
+ // ctx.getImageData 处理大图的时候会报 Exception
+ // INDEX_SIZE_ERR: DOM Exception 1
+ try {
+ blob = image.getAsBlob( opts.type );
+
+ size = file.size;
+
+ // 如果压缩后,比原来还大则不用压缩后的。
+ if ( !noCompressIfLarger || blob.size < size ) {
+ // file.source.destroy && file.source.destroy();
+ file.source = blob;
+ file.size = blob.size;
+
+ file.trigger( 'resize', blob.size, size );
+ }
+
+ // 标记,避免重复压缩。
+ file._compressed = true;
+ deferred.resolve();
+ } catch ( e ) {
+ // 出错了直接继续,让其上传原始图片
+ deferred.resolve();
+ }
+ });
+
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+
+ image.loadFromBlob( file.source );
+ return deferred.promise();
+ }
+ });
});
- /**
- * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
- */
- define('widgets/image',[
- 'base',
- 'uploader',
- 'lib/image',
- 'widgets/widget'
- ], function( Base, Uploader, Image ) {
-
- var $ = Base.$,
- throttle;
-
- // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
- throttle = (function( max ) {
- var occupied = 0,
- waiting = [],
- tick = function() {
- var item;
-
- while ( waiting.length && occupied < max ) {
- item = waiting.shift();
- occupied += item[ 0 ];
- item[ 1 ]();
- }
- };
-
- return function( emiter, size, cb ) {
- waiting.push([ size, cb ]);
- emiter.once( 'destroy', function() {
- occupied -= size;
- setTimeout( tick, 1 );
- });
- setTimeout( tick, 1 );
- };
- })( 5 * 1024 * 1024 );
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Object} [thumb]
- * @namespace options
- * @for Uploader
- * @description 配置生成缩略图的选项。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 110,
- * height: 110,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 70,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: true,
- *
- * // 是否允许裁剪。
- * crop: true,
- *
- * // 为空的话则保留原有图片格式。
- * // 否则强制转换成指定的类型。
- * type: 'image/jpeg'
- * }
- * ```
- */
- thumb: {
- width: 110,
- height: 110,
- quality: 70,
- allowMagnify: true,
- crop: true,
- preserveHeaders: false,
-
- // 为空的话则保留原有图片格式。
- // 否则强制转换成指定的类型。
- // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
- // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
- type: 'image/jpeg'
- },
-
- /**
- * @property {Object} [compress]
- * @namespace options
- * @for Uploader
- * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 1600,
- * height: 1600,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 90,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: false,
- *
- * // 是否允许裁剪。
- * crop: false,
- *
- * // 是否保留头部meta信息。
- * preserveHeaders: true,
- *
- * // 如果发现压缩后文件大小比原来还大,则使用原来图片
- * // 此属性可能会影响图片自动纠正功能
- * noCompressIfLarger: false,
- *
- * // 单位字节,如果图片大小小于此值,不会采用压缩。
- * compressSize: 0
- * }
- * ```
- */
- compress: {
- width: 1600,
- height: 1600,
- quality: 90,
- allowMagnify: false,
- crop: false,
- preserveHeaders: true
- }
- });
-
- return Uploader.register({
-
- name: 'image',
-
-
- /**
- * 生成缩略图,此过程为异步,所以需要传入`callback`。
- * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
- *
- * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
- *
- * `callback`中可以接收到两个参数。
- * * 第一个为error,如果生成缩略图有错误,此error将为真。
- * * 第二个为ret, 缩略图的Data URL值。
- *
- * **注意**
- * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
- * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
- *
- * @method makeThumb
- * @grammar makeThumb( file, callback ) => undefined
- * @grammar makeThumb( file, callback, width, height ) => undefined
- * @for Uploader
- * @example
- *
- * uploader.on( 'fileQueued', function( file ) {
- * var $li = ...;
- *
- * uploader.makeThumb( file, function( error, ret ) {
- * if ( error ) {
- * $li.text('预览错误');
- * } else {
- * $li.append('');
- * }
- * });
- *
- * });
- */
- makeThumb: function( file, cb, width, height ) {
- var opts, image;
-
- file = this.request( 'get-file', file );
-
- // 只预览图片格式。
- if ( !file.type.match( /^image/ ) ) {
- cb( true );
- return;
- }
-
- opts = $.extend({}, this.options.thumb );
-
- // 如果传入的是object.
- if ( $.isPlainObject( width ) ) {
- opts = $.extend( opts, width );
- width = null;
- }
-
- width = width || opts.width;
- height = height || opts.height;
-
- image = new Image( opts );
-
- image.once( 'load', function() {
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- // 当 resize 完后
- image.once( 'complete', function() {
- cb( false, image.getAsDataUrl( opts.type ) );
- image.destroy();
- });
-
- image.once( 'error', function( reason ) {
- cb( reason || true );
- image.destroy();
- });
-
- throttle( image, file.source.size, function() {
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
- image.loadFromBlob( file.source );
- });
- },
-
- beforeSendFile: function( file ) {
- var opts = this.options.compress || this.options.resize,
- compressSize = opts && opts.compressSize || 0,
- noCompressIfLarger = opts && opts.noCompressIfLarger || false,
- image, deferred;
-
- file = this.request( 'get-file', file );
-
- // 只压缩 jpeg 图片格式。
- // gif 可能会丢失针
- // bmp png 基本上尺寸都不大,且压缩比比较小。
- if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
- file.size < compressSize ||
- file._compressed ) {
- return;
- }
-
- opts = $.extend({}, opts );
- deferred = Base.Deferred();
-
- image = new Image( opts );
-
- deferred.always(function() {
- image.destroy();
- image = null;
- });
- image.once( 'error', deferred.reject );
- image.once( 'load', function() {
- var width = opts.width,
- height = opts.height;
-
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- image.once( 'complete', function() {
- var blob, size;
-
- // 移动端 UC / qq 浏览器的无图模式下
- // ctx.getImageData 处理大图的时候会报 Exception
- // INDEX_SIZE_ERR: DOM Exception 1
- try {
- blob = image.getAsBlob( opts.type );
-
- size = file.size;
-
- // 如果压缩后,比原来还大则不用压缩后的。
- if ( !noCompressIfLarger || blob.size < size ) {
- // file.source.destroy && file.source.destroy();
- file.source = blob;
- file.size = blob.size;
-
- file.trigger( 'resize', blob.size, size );
- }
-
- // 标记,避免重复压缩。
- file._compressed = true;
- deferred.resolve();
- } catch ( e ) {
- // 出错了直接继续,让其上传原始图片
- deferred.resolve();
- }
- });
-
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
+ /**
+ * @fileOverview 文件属性封装
+ */
+ define('file',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ idPrefix = 'WU_FILE_',
+ idSuffix = 0,
+ rExt = /\.([^.]+)$/,
+ statusMap = {};
+
+ function gid() {
+ return idPrefix + idSuffix++;
+ }
+
+ /**
+ * 文件类
+ * @class File
+ * @constructor 构造函数
+ * @grammar new File( source ) => File
+ * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
+ */
+ function WUFile( source ) {
+
+ /**
+ * 文件名,包括扩展名(后缀)
+ * @property name
+ * @type {string}
+ */
+ this.name = source.name || 'Untitled';
+
+ /**
+ * 文件体积(字节)
+ * @property size
+ * @type {uint}
+ * @default 0
+ */
+ this.size = source.size || 0;
+
+ /**
+ * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
+ * @property type
+ * @type {string}
+ * @default 'application/octet-stream'
+ */
+ this.type = source.type || 'application/octet-stream';
+
+ /**
+ * 文件最后修改日期
+ * @property lastModifiedDate
+ * @type {int}
+ * @default 当前时间戳
+ */
+ this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
+
+ /**
+ * 文件ID,每个对象具有唯一ID,与文件名无关
+ * @property id
+ * @type {string}
+ */
+ this.id = gid();
+
+ /**
+ * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
+ * @property ext
+ * @type {string}
+ */
+ this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
+
+
+ /**
+ * 状态文字说明。在不同的status语境下有不同的用途。
+ * @property statusText
+ * @type {string}
+ */
+ this.statusText = '';
+
+ // 存储文件状态,防止通过属性直接修改
+ statusMap[ this.id ] = WUFile.Status.INITED;
+
+ this.source = source;
+ this.loaded = 0;
+
+ this.on( 'error', function( msg ) {
+ this.setStatus( WUFile.Status.ERROR, msg );
+ });
+ }
+
+ $.extend( WUFile.prototype, {
+
+ /**
+ * 设置状态,状态变化时会触发`change`事件。
+ * @method setStatus
+ * @grammar setStatus( status[, statusText] );
+ * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
+ * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
+ */
+ setStatus: function( status, text ) {
+
+ var prevStatus = statusMap[ this.id ];
+
+ typeof text !== 'undefined' && (this.statusText = text);
+
+ if ( status !== prevStatus ) {
+ statusMap[ this.id ] = status;
+ /**
+ * 文件状态变化
+ * @event statuschange
+ */
+ this.trigger( 'statuschange', status, prevStatus );
+ }
+
+ },
+
+ /**
+ * 获取文件状态
+ * @return {File.Status}
+ * @example
+ 文件状态具体包括以下几种类型:
+ {
+ // 初始化
+ INITED: 0,
+ // 已入队列
+ QUEUED: 1,
+ // 正在上传
+ PROGRESS: 2,
+ // 上传出错
+ ERROR: 3,
+ // 上传成功
+ COMPLETE: 4,
+ // 上传取消
+ CANCELLED: 5
+ }
+ */
+ getStatus: function() {
+ return statusMap[ this.id ];
+ },
+
+ /**
+ * 获取文件原始信息。
+ * @return {*}
+ */
+ getSource: function() {
+ return this.source;
+ },
+
+ destroy: function() {
+ this.off();
+ delete statusMap[ this.id ];
+ }
+ });
+
+ Mediator.installTo( WUFile.prototype );
+
+ /**
+ * 文件状态值,具体包括以下几种类型:
+ * * `inited` 初始状态
+ * * `queued` 已经进入队列, 等待上传
+ * * `progress` 上传中
+ * * `complete` 上传完成。
+ * * `error` 上传出错,可重试
+ * * `interrupt` 上传中断,可续传。
+ * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
+ * * `cancelled` 文件被移除。
+ * @property {Object} Status
+ * @namespace File
+ * @class File
+ * @static
+ */
+ WUFile.Status = {
+ INITED: 'inited', // 初始状态
+ QUEUED: 'queued', // 已经进入队列, 等待上传
+ PROGRESS: 'progress', // 上传中
+ ERROR: 'error', // 上传出错,可重试
+ COMPLETE: 'complete', // 上传完成。
+ CANCELLED: 'cancelled', // 上传取消。
+ INTERRUPT: 'interrupt', // 上传中断,可续传。
+ INVALID: 'invalid' // 文件不合格,不能重试上传。
+ };
+
+ return WUFile;
+ });
- image.loadFromBlob( file.source );
- return deferred.promise();
- }
- });
- });
- /**
- * @fileOverview 文件属性封装
- */
- define('file',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- idPrefix = 'WU_FILE_',
- idSuffix = 0,
- rExt = /\.([^.]+)$/,
- statusMap = {};
-
- function gid() {
- return idPrefix + idSuffix++;
- }
-
- /**
- * 文件类
- * @class File
- * @constructor 构造函数
- * @grammar new File( source ) => File
- * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
- */
- function WUFile( source ) {
-
- /**
- * 文件名,包括扩展名(后缀)
- * @property name
- * @type {string}
- */
- this.name = source.name || 'Untitled';
-
- /**
- * 文件体积(字节)
- * @property size
- * @type {uint}
- * @default 0
- */
- this.size = source.size || 0;
-
- /**
- * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
- * @property type
- * @type {string}
- * @default 'application/octet-stream'
- */
- this.type = source.type || 'application/octet-stream';
-
- /**
- * 文件最后修改日期
- * @property lastModifiedDate
- * @type {int}
- * @default 当前时间戳
- */
- this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
-
- /**
- * 文件ID,每个对象具有唯一ID,与文件名无关
- * @property id
- * @type {string}
- */
- this.id = gid();
-
- /**
- * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
- * @property ext
- * @type {string}
- */
- this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
-
-
- /**
- * 状态文字说明。在不同的status语境下有不同的用途。
- * @property statusText
- * @type {string}
- */
- this.statusText = '';
-
- // 存储文件状态,防止通过属性直接修改
- statusMap[ this.id ] = WUFile.Status.INITED;
-
- this.source = source;
- this.loaded = 0;
-
- this.on( 'error', function( msg ) {
- this.setStatus( WUFile.Status.ERROR, msg );
- });
- }
-
- $.extend( WUFile.prototype, {
-
- /**
- * 设置状态,状态变化时会触发`change`事件。
- * @method setStatus
- * @grammar setStatus( status[, statusText] );
- * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
- * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
- */
- setStatus: function( status, text ) {
-
- var prevStatus = statusMap[ this.id ];
-
- typeof text !== 'undefined' && (this.statusText = text);
-
- if ( status !== prevStatus ) {
- statusMap[ this.id ] = status;
- /**
- * 文件状态变化
- * @event statuschange
- */
- this.trigger( 'statuschange', status, prevStatus );
- }
-
- },
-
- /**
- * 获取文件状态
- * @return {File.Status}
- * @example
- 文件状态具体包括以下几种类型:
- {
- // 初始化
- INITED: 0,
- // 已入队列
- QUEUED: 1,
- // 正在上传
- PROGRESS: 2,
- // 上传出错
- ERROR: 3,
- // 上传成功
- COMPLETE: 4,
- // 上传取消
- CANCELLED: 5
- }
- */
- getStatus: function() {
- return statusMap[ this.id ];
- },
-
- /**
- * 获取文件原始信息。
- * @return {*}
- */
- getSource: function() {
- return this.source;
- },
-
- destroy: function() {
- this.off();
- delete statusMap[ this.id ];
- }
- });
-
- Mediator.installTo( WUFile.prototype );
-
- /**
- * 文件状态值,具体包括以下几种类型:
- * * `inited` 初始状态
- * * `queued` 已经进入队列, 等待上传
- * * `progress` 上传中
- * * `complete` 上传完成。
- * * `error` 上传出错,可重试
- * * `interrupt` 上传中断,可续传。
- * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
- * * `cancelled` 文件被移除。
- * @property {Object} Status
- * @namespace File
- * @class File
- * @static
- */
- WUFile.Status = {
- INITED: 'inited', // 初始状态
- QUEUED: 'queued', // 已经进入队列, 等待上传
- PROGRESS: 'progress', // 上传中
- ERROR: 'error', // 上传出错,可重试
- COMPLETE: 'complete', // 上传完成。
- CANCELLED: 'cancelled', // 上传取消。
- INTERRUPT: 'interrupt', // 上传中断,可续传。
- INVALID: 'invalid' // 文件不合格,不能重试上传。
- };
-
- return WUFile;
- });
-
- /**
- * @fileOverview 文件队列
- */
- define('queue',[
- 'base',
- 'mediator',
- 'file'
- ], function( Base, Mediator, WUFile ) {
-
- var $ = Base.$,
- STATUS = WUFile.Status;
-
- /**
- * 文件队列, 用来存储各个状态中的文件。
- * @class Queue
- * @extends Mediator
- */
- function Queue() {
-
- /**
- * 统计文件数。
- * * `numOfQueue` 队列中的文件数。
- * * `numOfSuccess` 上传成功的文件数
- * * `numOfCancel` 被取消的文件数
- * * `numOfProgress` 正在上传中的文件数
- * * `numOfUploadFailed` 上传错误的文件数。
- * * `numOfInvalid` 无效的文件数。
- * * `numOfDeleted` 被移除的文件数。
- * * `numOfInterrupt` 被中断的文件数。
- * @property {Object} stats
- */
- this.stats = {
- numOfQueue: 0,
- numOfSuccess: 0,
- numOfCancel: 0,
- numOfProgress: 0,
- numOfUploadFailed: 0,
- numOfInvalid: 0,
- numOfDeleted: 0,
- numOfInterrupt: 0
- };
-
- // 上传队列,仅包括等待上传的文件
- this._queue = [];
-
- // 存储所有文件
- this._map = {};
- }
-
- $.extend( Queue.prototype, {
-
- /**
- * 将新文件加入对队列尾部
- *
- * @method append
- * @param {File} file 文件对象
- */
- append: function( file ) {
- this._queue.push( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 将新文件加入对队列头部
- *
- * @method prepend
- * @param {File} file 文件对象
- */
- prepend: function( file ) {
- this._queue.unshift( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 获取文件对象
- *
- * @method getFile
- * @param {String} fileId 文件ID
- * @return {File}
- */
- getFile: function( fileId ) {
- if ( typeof fileId !== 'string' ) {
- return fileId;
- }
- return this._map[ fileId ];
- },
-
- /**
- * 从队列中取出一个指定状态的文件。
- * @grammar fetch( status ) => File
- * @method fetch
- * @param {String} status [文件状态值](#WebUploader:File:File.Status)
- * @return {File} [File](#WebUploader:File)
- */
- fetch: function( status ) {
- var len = this._queue.length,
- i, file;
-
- status = status || STATUS.QUEUED;
-
- for ( i = 0; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( status === file.getStatus() ) {
- return file;
- }
- }
-
- return null;
- },
-
- /**
- * 对队列进行排序,能够控制文件上传顺序。
- * @grammar sort( fn ) => undefined
- * @method sort
- * @param {Function} fn 排序方法
- */
- sort: function( fn ) {
- if ( typeof fn === 'function' ) {
- this._queue.sort( fn );
- }
- },
-
- /**
- * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
- * @grammar getFiles( [status1[, status2 ...]] ) => Array
- * @method getFiles
- * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
- */
- getFiles: function() {
- var sts = [].slice.call( arguments, 0 ),
- ret = [],
- i = 0,
- len = this._queue.length,
- file;
-
- for ( ; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
- continue;
- }
-
- ret.push( file );
- }
-
- return ret;
- },
-
- /**
- * 在队列中删除文件。
- * @grammar removeFile( file ) => Array
- * @method removeFile
- * @param {File} 文件对象。
- */
- removeFile: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( existing ) {
- delete this._map[ file.id ];
- this._delFile(file);
- file.destroy();
- this.stats.numOfDeleted++;
-
- }
- },
-
- _fileAdded: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( !existing ) {
- this._map[ file.id ] = file;
-
- file.on( 'statuschange', function( cur, pre ) {
- me._onFileStatusChange( cur, pre );
- });
- }
- },
-
- _delFile : function(file){
- for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
- if(this._queue[i] == file){
- this._queue.splice(i,1);
- break;
- }
- }
- },
-
- _onFileStatusChange: function( curStatus, preStatus ) {
- var stats = this.stats;
-
- switch ( preStatus ) {
- case STATUS.PROGRESS:
- stats.numOfProgress--;
- break;
-
- case STATUS.QUEUED:
- stats.numOfQueue --;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed--;
- break;
-
- case STATUS.INVALID:
- stats.numOfInvalid--;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt--;
- break;
- }
-
- switch ( curStatus ) {
- case STATUS.QUEUED:
- stats.numOfQueue++;
- break;
-
- case STATUS.PROGRESS:
- stats.numOfProgress++;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed++;
- break;
-
- case STATUS.COMPLETE:
- stats.numOfSuccess++;
- break;
-
- case STATUS.CANCELLED:
- stats.numOfCancel++;
- break;
-
-
- case STATUS.INVALID:
- stats.numOfInvalid++;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt++;
- break;
- }
- }
-
- });
-
- Mediator.installTo( Queue.prototype );
+ /**
+ * @fileOverview 文件队列
+ */
+ define('queue',[
+ 'base',
+ 'mediator',
+ 'file'
+ ], function( Base, Mediator, WUFile ) {
+
+ var $ = Base.$,
+ STATUS = WUFile.Status;
+
+ /**
+ * 文件队列, 用来存储各个状态中的文件。
+ * @class Queue
+ * @extends Mediator
+ */
+ function Queue() {
+
+ /**
+ * 统计文件数。
+ * * `numOfQueue` 队列中的文件数。
+ * * `numOfSuccess` 上传成功的文件数
+ * * `numOfCancel` 被取消的文件数
+ * * `numOfProgress` 正在上传中的文件数
+ * * `numOfUploadFailed` 上传错误的文件数。
+ * * `numOfInvalid` 无效的文件数。
+ * * `numOfDeleted` 被移除的文件数。
+ * * `numOfInterrupt` 被中断的文件数。
+ * @property {Object} stats
+ */
+ this.stats = {
+ numOfQueue: 0,
+ numOfSuccess: 0,
+ numOfCancel: 0,
+ numOfProgress: 0,
+ numOfUploadFailed: 0,
+ numOfInvalid: 0,
+ numOfDeleted: 0,
+ numOfInterrupt: 0
+ };
+
+ // 上传队列,仅包括等待上传的文件
+ this._queue = [];
+
+ // 存储所有文件
+ this._map = {};
+ }
+
+ $.extend( Queue.prototype, {
+
+ /**
+ * 将新文件加入对队列尾部
+ *
+ * @method append
+ * @param {File} file 文件对象
+ */
+ append: function( file ) {
+ this._queue.push( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 将新文件加入对队列头部
+ *
+ * @method prepend
+ * @param {File} file 文件对象
+ */
+ prepend: function( file ) {
+ this._queue.unshift( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 获取文件对象
+ *
+ * @method getFile
+ * @param {String} fileId 文件ID
+ * @return {File}
+ */
+ getFile: function( fileId ) {
+ if ( typeof fileId !== 'string' ) {
+ return fileId;
+ }
+ return this._map[ fileId ];
+ },
+
+ /**
+ * 从队列中取出一个指定状态的文件。
+ * @grammar fetch( status ) => File
+ * @method fetch
+ * @param {String} status [文件状态值](#WebUploader:File:File.Status)
+ * @return {File} [File](#WebUploader:File)
+ */
+ fetch: function( status ) {
+ var len = this._queue.length,
+ i, file;
+
+ status = status || STATUS.QUEUED;
+
+ for ( i = 0; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( status === file.getStatus() ) {
+ return file;
+ }
+ }
+
+ return null;
+ },
+
+ /**
+ * 对队列进行排序,能够控制文件上传顺序。
+ * @grammar sort( fn ) => undefined
+ * @method sort
+ * @param {Function} fn 排序方法
+ */
+ sort: function( fn ) {
+ if ( typeof fn === 'function' ) {
+ this._queue.sort( fn );
+ }
+ },
+
+ /**
+ * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
+ * @grammar getFiles( [status1[, status2 ...]] ) => Array
+ * @method getFiles
+ * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
+ */
+ getFiles: function() {
+ var sts = [].slice.call( arguments, 0 ),
+ ret = [],
+ i = 0,
+ len = this._queue.length,
+ file;
+
+ for ( ; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
+ continue;
+ }
+
+ ret.push( file );
+ }
+
+ return ret;
+ },
+
+ /**
+ * 在队列中删除文件。
+ * @grammar removeFile( file ) => Array
+ * @method removeFile
+ * @param {File} 文件对象。
+ */
+ removeFile: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( existing ) {
+ delete this._map[ file.id ];
+ this._delFile(file);
+ file.destroy();
+ this.stats.numOfDeleted++;
+
+ }
+ },
+
+ _fileAdded: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( !existing ) {
+ this._map[ file.id ] = file;
+
+ file.on( 'statuschange', function( cur, pre ) {
+ me._onFileStatusChange( cur, pre );
+ });
+ }
+ },
+
+ _delFile : function(file){
+ for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
+ if(this._queue[i] == file){
+ this._queue.splice(i,1);
+ break;
+ }
+ }
+ },
+
+ _onFileStatusChange: function( curStatus, preStatus ) {
+ var stats = this.stats;
+
+ switch ( preStatus ) {
+ case STATUS.PROGRESS:
+ stats.numOfProgress--;
+ break;
+
+ case STATUS.QUEUED:
+ stats.numOfQueue --;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed--;
+ break;
+
+ case STATUS.INVALID:
+ stats.numOfInvalid--;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt--;
+ break;
+ }
+
+ switch ( curStatus ) {
+ case STATUS.QUEUED:
+ stats.numOfQueue++;
+ break;
+
+ case STATUS.PROGRESS:
+ stats.numOfProgress++;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed++;
+ break;
+
+ case STATUS.COMPLETE:
+ stats.numOfSuccess++;
+ break;
+
+ case STATUS.CANCELLED:
+ stats.numOfCancel++;
+ break;
+
+
+ case STATUS.INVALID:
+ stats.numOfInvalid++;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt++;
+ break;
+ }
+ }
+
+ });
+
+ Mediator.installTo( Queue.prototype );
+
+ return Queue;
+ });
- return Queue;
+ /**
+ * @fileOverview 队列
+ */
+ define('widgets/queue',[
+ 'base',
+ 'uploader',
+ 'queue',
+ 'file',
+ 'lib/file',
+ 'runtime/client',
+ 'widgets/widget'
+ ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
+
+ var $ = Base.$,
+ rExt = /\.\w+$/,
+ Status = WUFile.Status;
+
+ return Uploader.register({
+ name: 'queue',
+
+ init: function( opts ) {
+ var me = this,
+ deferred, len, i, item, arr, accept, runtime;
+
+ if ( $.isPlainObject( opts.accept ) ) {
+ opts.accept = [ opts.accept ];
+ }
+
+ // accept中的中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].extensions;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = '\\.' + arr.join(',')
+ .replace( /,/g, '$|\\.' )
+ .replace( /\*/g, '.*' ) + '$';
+ }
+
+ me.accept = new RegExp( accept, 'i' );
+ }
+
+ me.queue = new Queue();
+ me.stats = me.queue.stats;
+
+ // 如果当前不是html5运行时,那就算了。
+ // 不执行后续操作
+ if ( this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ // 创建一个 html5 运行时的 placeholder
+ // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
+ deferred = Base.Deferred();
+ this.placeholder = runtime = new RuntimeClient('Placeholder');
+ runtime.connectRuntime({
+ runtimeOrder: 'html5'
+ }, function() {
+ me._ruid = runtime.getRuid();
+ deferred.resolve();
+ });
+ return deferred.promise();
+ },
+
+
+ // 为了支持外部直接添加一个原生File对象。
+ _wrapFile: function( file ) {
+ if ( !(file instanceof WUFile) ) {
+
+ if ( !(file instanceof File) ) {
+ if ( !this._ruid ) {
+ throw new Error('Can\'t add external files.');
+ }
+ file = new File( this._ruid, file );
+ }
+
+ file = new WUFile( file );
+ }
+
+ return file;
+ },
+
+ // 判断文件是否可以被加入队列
+ acceptFile: function( file ) {
+ var invalid = !file || !file.size || this.accept &&
+
+ // 如果名字中有后缀,才做后缀白名单处理。
+ rExt.exec( file.name ) && !this.accept.test( file.name );
+
+ return !invalid;
+ },
+
+
+ /**
+ * @event beforeFileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
+ * @for Uploader
+ */
+
+ /**
+ * @event fileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列以后触发。
+ * @for Uploader
+ */
+
+ _addFile: function( file ) {
+ var me = this;
+
+ file = me._wrapFile( file );
+
+ // 不过类型判断允许不允许,先派送 `beforeFileQueued`
+ if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
+ return;
+ }
+
+ // 类型不匹配,则派送错误事件,并返回。
+ if ( !me.acceptFile( file ) ) {
+ me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
+ return;
+ }
+
+ me.queue.append( file );
+ me.owner.trigger( 'fileQueued', file );
+ return file;
+ },
+
+ getFile: function( fileId ) {
+ return this.queue.getFile( fileId );
+ },
+
+ /**
+ * @event filesQueued
+ * @param {File} files 数组,内容为原始File(lib/File)对象。
+ * @description 当一批文件添加进队列以后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @property {Boolean} [auto=false]
+ * @namespace options
+ * @for Uploader
+ * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
+ *
+ */
+
+ /**
+ * @method addFiles
+ * @grammar addFiles( file ) => undefined
+ * @grammar addFiles( [file1, file2 ...] ) => undefined
+ * @param {Array of File or File} [files] Files 对象 数组
+ * @description 添加文件到队列
+ * @for Uploader
+ */
+ addFile: function( files ) {
+ var me = this;
+
+ if ( !files.length ) {
+ files = [ files ];
+ }
+
+ files = $.map( files, function( file ) {
+ return me._addFile( file );
+ });
+
+ if ( files.length ) {
+
+ me.owner.trigger( 'filesQueued', files );
+
+ if ( me.options.auto ) {
+ setTimeout(function() {
+ me.request('start-upload');
+ }, 20 );
+ }
+ }
+ },
+
+ getStats: function() {
+ return this.stats;
+ },
+
+ /**
+ * @event fileDequeued
+ * @param {File} file File对象
+ * @description 当文件被移除队列后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method removeFile
+ * @grammar removeFile( file ) => undefined
+ * @grammar removeFile( id ) => undefined
+ * @grammar removeFile( file, true ) => undefined
+ * @grammar removeFile( id, true ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.removeFile( file );
+ * })
+ */
+ removeFile: function( file, remove ) {
+ var me = this;
+
+ file = file.id ? file : me.queue.getFile( file );
+
+ this.request( 'cancel-file', file );
+
+ if ( remove ) {
+ this.queue.removeFile( file );
+ }
+ },
+
+ /**
+ * @method getFiles
+ * @grammar getFiles() => Array
+ * @grammar getFiles( status1, status2, status... ) => Array
+ * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
+ * @for Uploader
+ * @example
+ * console.log( uploader.getFiles() ); // => all files
+ * console.log( uploader.getFiles('error') ) // => all error files.
+ */
+ getFiles: function() {
+ return this.queue.getFiles.apply( this.queue, arguments );
+ },
+
+ fetchFile: function() {
+ return this.queue.fetch.apply( this.queue, arguments );
+ },
+
+ /**
+ * @method retry
+ * @grammar retry() => undefined
+ * @grammar retry( file ) => undefined
+ * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
+ * @for Uploader
+ * @example
+ * function retry() {
+ * uploader.retry();
+ * }
+ */
+ retry: function( file, noForceStart ) {
+ var me = this,
+ files, i, len;
+
+ if ( file ) {
+ file = file.id ? file : me.queue.getFile( file );
+ file.setStatus( Status.QUEUED );
+ noForceStart || me.request('start-upload');
+ return;
+ }
+
+ files = me.queue.getFiles( Status.ERROR );
+ i = 0;
+ len = files.length;
+
+ for ( ; i < len; i++ ) {
+ file = files[ i ];
+ file.setStatus( Status.QUEUED );
+ }
+
+ me.request('start-upload');
+ },
+
+ /**
+ * @method sort
+ * @grammar sort( fn ) => undefined
+ * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
+ * @for Uploader
+ */
+ sortFiles: function() {
+ return this.queue.sort.apply( this.queue, arguments );
+ },
+
+ /**
+ * @event reset
+ * @description 当 uploader 被重置的时候触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method reset
+ * @grammar reset() => undefined
+ * @description 重置uploader。目前只重置了队列。
+ * @for Uploader
+ * @example
+ * uploader.reset();
+ */
+ reset: function() {
+ this.owner.trigger('reset');
+ this.queue = new Queue();
+ this.stats = this.queue.stats;
+ },
+
+ destroy: function() {
+ this.reset();
+ this.placeholder && this.placeholder.destroy();
+ }
+ });
+
});
-
- /**
- * @fileOverview 队列
- */
- define('widgets/queue',[
- 'base',
- 'uploader',
- 'queue',
- 'file',
- 'lib/file',
- 'runtime/client',
- 'widgets/widget'
- ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
-
- var $ = Base.$,
- rExt = /\.\w+$/,
- Status = WUFile.Status;
-
- return Uploader.register({
- name: 'queue',
-
- init: function( opts ) {
- var me = this,
- deferred, len, i, item, arr, accept, runtime;
-
- if ( $.isPlainObject( opts.accept ) ) {
- opts.accept = [ opts.accept ];
- }
-
- // accept中的中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
-
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].extensions;
- item && arr.push( item );
- }
-
- if ( arr.length ) {
- accept = '\\.' + arr.join(',')
- .replace( /,/g, '$|\\.' )
- .replace( /\*/g, '.*' ) + '$';
- }
-
- me.accept = new RegExp( accept, 'i' );
- }
-
- me.queue = new Queue();
- me.stats = me.queue.stats;
-
- // 如果当前不是html5运行时,那就算了。
- // 不执行后续操作
- if ( this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- // 创建一个 html5 运行时的 placeholder
- // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
- deferred = Base.Deferred();
- this.placeholder = runtime = new RuntimeClient('Placeholder');
- runtime.connectRuntime({
- runtimeOrder: 'html5'
- }, function() {
- me._ruid = runtime.getRuid();
- deferred.resolve();
- });
- return deferred.promise();
- },
-
-
- // 为了支持外部直接添加一个原生File对象。
- _wrapFile: function( file ) {
- if ( !(file instanceof WUFile) ) {
-
- if ( !(file instanceof File) ) {
- if ( !this._ruid ) {
- throw new Error('Can\'t add external files.');
- }
- file = new File( this._ruid, file );
- }
-
- file = new WUFile( file );
- }
-
- return file;
- },
-
- // 判断文件是否可以被加入队列
- acceptFile: function( file ) {
- var invalid = !file || !file.size || this.accept &&
-
- // 如果名字中有后缀,才做后缀白名单处理。
- rExt.exec( file.name ) && !this.accept.test( file.name );
-
- return !invalid;
- },
-
-
- /**
- * @event beforeFileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
- * @for Uploader
- */
-
- /**
- * @event fileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列以后触发。
- * @for Uploader
- */
-
- _addFile: function( file ) {
- var me = this;
-
- file = me._wrapFile( file );
-
- // 不过类型判断允许不允许,先派送 `beforeFileQueued`
- if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
- return;
- }
-
- // 类型不匹配,则派送错误事件,并返回。
- if ( !me.acceptFile( file ) ) {
- me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
- return;
- }
-
- me.queue.append( file );
- me.owner.trigger( 'fileQueued', file );
- return file;
- },
-
- getFile: function( fileId ) {
- return this.queue.getFile( fileId );
- },
-
- /**
- * @event filesQueued
- * @param {File} files 数组,内容为原始File(lib/File)对象。
- * @description 当一批文件添加进队列以后触发。
- * @for Uploader
- */
-
- /**
- * @property {Boolean} [auto=false]
- * @namespace options
- * @for Uploader
- * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
- *
- */
-
- /**
- * @method addFiles
- * @grammar addFiles( file ) => undefined
- * @grammar addFiles( [file1, file2 ...] ) => undefined
- * @param {Array of File or File} [files] Files 对象 数组
- * @description 添加文件到队列
- * @for Uploader
- */
- addFile: function( files ) {
- var me = this;
-
- if ( !files.length ) {
- files = [ files ];
- }
-
- files = $.map( files, function( file ) {
- return me._addFile( file );
- });
-
- if ( files.length ) {
-
- me.owner.trigger( 'filesQueued', files );
-
- if ( me.options.auto ) {
- setTimeout(function() {
- me.request('start-upload');
- }, 20 );
- }
- }
- },
-
- getStats: function() {
- return this.stats;
- },
-
- /**
- * @event fileDequeued
- * @param {File} file File对象
- * @description 当文件被移除队列后触发。
- * @for Uploader
- */
-
- /**
- * @method removeFile
- * @grammar removeFile( file ) => undefined
- * @grammar removeFile( id ) => undefined
- * @grammar removeFile( file, true ) => undefined
- * @grammar removeFile( id, true ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.removeFile( file );
- * })
- */
- removeFile: function( file, remove ) {
- var me = this;
-
- file = file.id ? file : me.queue.getFile( file );
-
- this.request( 'cancel-file', file );
-
- if ( remove ) {
- this.queue.removeFile( file );
- }
- },
-
- /**
- * @method getFiles
- * @grammar getFiles() => Array
- * @grammar getFiles( status1, status2, status... ) => Array
- * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
- * @for Uploader
- * @example
- * console.log( uploader.getFiles() ); // => all files
- * console.log( uploader.getFiles('error') ) // => all error files.
- */
- getFiles: function() {
- return this.queue.getFiles.apply( this.queue, arguments );
- },
-
- fetchFile: function() {
- return this.queue.fetch.apply( this.queue, arguments );
- },
-
- /**
- * @method retry
- * @grammar retry() => undefined
- * @grammar retry( file ) => undefined
- * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
- * @for Uploader
- * @example
- * function retry() {
- * uploader.retry();
- * }
- */
- retry: function( file, noForceStart ) {
- var me = this,
- files, i, len;
-
- if ( file ) {
- file = file.id ? file : me.queue.getFile( file );
- file.setStatus( Status.QUEUED );
- noForceStart || me.request('start-upload');
- return;
- }
-
- files = me.queue.getFiles( Status.ERROR );
- i = 0;
- len = files.length;
-
- for ( ; i < len; i++ ) {
- file = files[ i ];
- file.setStatus( Status.QUEUED );
- }
-
- me.request('start-upload');
- },
-
- /**
- * @method sort
- * @grammar sort( fn ) => undefined
- * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
- * @for Uploader
- */
- sortFiles: function() {
- return this.queue.sort.apply( this.queue, arguments );
- },
-
- /**
- * @event reset
- * @description 当 uploader 被重置的时候触发。
- * @for Uploader
- */
-
- /**
- * @method reset
- * @grammar reset() => undefined
- * @description 重置uploader。目前只重置了队列。
- * @for Uploader
- * @example
- * uploader.reset();
- */
- reset: function() {
- this.owner.trigger('reset');
- this.queue = new Queue();
- this.stats = this.queue.stats;
- },
-
- destroy: function() {
- this.reset();
- this.placeholder && this.placeholder.destroy();
- }
- });
-
- });
- /**
- * @fileOverview 添加获取Runtime相关信息的方法。
- */
- define('widgets/runtime',[
- 'uploader',
- 'runtime/runtime',
- 'widgets/widget'
- ], function( Uploader, Runtime ) {
-
- Uploader.support = function() {
- return Runtime.hasRuntime.apply( Runtime, arguments );
- };
-
- /**
- * @property {Object} [runtimeOrder=html5,flash]
- * @namespace options
- * @for Uploader
- * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
- *
- * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
- */
-
- return Uploader.register({
- name: 'runtime',
-
- init: function() {
- if ( !this.predictRuntimeType() ) {
- throw Error('Runtime Error');
- }
- },
-
- /**
- * 预测Uploader将采用哪个`Runtime`
- * @grammar predictRuntimeType() => String
- * @method predictRuntimeType
- * @for Uploader
- */
- predictRuntimeType: function() {
- var orders = this.options.runtimeOrder || Runtime.orders,
- type = this.type,
- i, len;
-
- if ( !type ) {
- orders = orders.split( /\s*,\s*/g );
-
- for ( i = 0, len = orders.length; i < len; i++ ) {
- if ( Runtime.hasRuntime( orders[ i ] ) ) {
- this.type = type = orders[ i ];
- break;
- }
- }
- }
-
- return type;
- }
- });
- });
- /**
- * @fileOverview Transport
- */
- define('lib/transport',[
- 'base',
- 'runtime/client',
- 'mediator'
- ], function( Base, RuntimeClient, Mediator ) {
-
- var $ = Base.$;
-
- function Transport( opts ) {
- var me = this;
-
- opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
- RuntimeClient.call( this, 'Transport' );
-
- this._blob = null;
- this._formData = opts.formData || {};
- this._headers = opts.headers || {};
-
- this.on( 'progress', this._timeout );
- this.on( 'load error', function() {
- me.trigger( 'progress', 1 );
- clearTimeout( me._timer );
- });
- }
-
- Transport.options = {
- server: '',
- method: 'POST',
-
- // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
- withCredentials: false,
- fileVal: 'file',
- timeout: 2 * 60 * 1000, // 2分钟
- formData: {},
- headers: {},
- sendAsBinary: false
- };
-
- $.extend( Transport.prototype, {
-
- // 添加Blob, 只能添加一次,最后一次有效。
- appendBlob: function( key, blob, filename ) {
- var me = this,
- opts = me.options;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- });
-
- me._blob = blob;
- opts.fileVal = key || opts.fileVal;
- opts.filename = filename || opts.filename;
- },
-
- // 添加其他字段
- append: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._formData, key );
- } else {
- this._formData[ key ] = value;
- }
- },
-
- setRequestHeader: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._headers, key );
- } else {
- this._headers[ key ] = value;
- }
- },
-
- send: function( method ) {
- this.exec( 'send', method );
- this._timeout();
- },
-
- abort: function() {
- clearTimeout( this._timer );
- return this.exec('abort');
- },
-
- destroy: function() {
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- },
-
- getResponseHeaders: function() {
- return this.exec('getResponseHeaders');
- },
-
- getResponse: function() {
- return this.exec('getResponse');
- },
-
- getResponseAsJson: function() {
- return this.exec('getResponseAsJson');
- },
-
- getStatus: function() {
- return this.exec('getStatus');
- },
-
- _timeout: function() {
- var me = this,
- duration = me.options.timeout;
-
- if ( !duration ) {
- return;
- }
-
- clearTimeout( me._timer );
- me._timer = setTimeout(function() {
- me.abort();
- me.trigger( 'error', 'timeout' );
- }, duration );
- }
-
- });
-
- // 让Transport具备事件功能。
- Mediator.installTo( Transport.prototype );
-
- return Transport;
+ /**
+ * @fileOverview 添加获取Runtime相关信息的方法。
+ */
+ define('widgets/runtime',[
+ 'uploader',
+ 'runtime/runtime',
+ 'widgets/widget'
+ ], function( Uploader, Runtime ) {
+
+ Uploader.support = function() {
+ return Runtime.hasRuntime.apply( Runtime, arguments );
+ };
+
+ /**
+ * @property {Object} [runtimeOrder=html5,flash]
+ * @namespace options
+ * @for Uploader
+ * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
+ *
+ * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
+ */
+
+ return Uploader.register({
+ name: 'runtime',
+
+ init: function() {
+ if ( !this.predictRuntimeType() ) {
+ throw Error('Runtime Error');
+ }
+ },
+
+ /**
+ * 预测Uploader将采用哪个`Runtime`
+ * @grammar predictRuntimeType() => String
+ * @method predictRuntimeType
+ * @for Uploader
+ */
+ predictRuntimeType: function() {
+ var orders = this.options.runtimeOrder || Runtime.orders,
+ type = this.type,
+ i, len;
+
+ if ( !type ) {
+ orders = orders.split( /\s*,\s*/g );
+
+ for ( i = 0, len = orders.length; i < len; i++ ) {
+ if ( Runtime.hasRuntime( orders[ i ] ) ) {
+ this.type = type = orders[ i ];
+ break;
+ }
+ }
+ }
+
+ return type;
+ }
+ });
});
+ /**
+ * @fileOverview Transport
+ */
+ define('lib/transport',[
+ 'base',
+ 'runtime/client',
+ 'mediator'
+ ], function( Base, RuntimeClient, Mediator ) {
+
+ var $ = Base.$;
+
+ function Transport( opts ) {
+ var me = this;
+
+ opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
+ RuntimeClient.call( this, 'Transport' );
+
+ this._blob = null;
+ this._formData = opts.formData || {};
+ this._headers = opts.headers || {};
+
+ this.on( 'progress', this._timeout );
+ this.on( 'load error', function() {
+ me.trigger( 'progress', 1 );
+ clearTimeout( me._timer );
+ });
+ }
+
+ Transport.options = {
+ server: '',
+ method: 'POST',
+
+ // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
+ withCredentials: false,
+ fileVal: 'file',
+ timeout: 2 * 60 * 1000, // 2分钟
+ formData: {},
+ headers: {},
+ sendAsBinary: false
+ };
+
+ $.extend( Transport.prototype, {
+
+ // 添加Blob, 只能添加一次,最后一次有效。
+ appendBlob: function( key, blob, filename ) {
+ var me = this,
+ opts = me.options;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ });
+
+ me._blob = blob;
+ opts.fileVal = key || opts.fileVal;
+ opts.filename = filename || opts.filename;
+ },
+
+ // 添加其他字段
+ append: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._formData, key );
+ } else {
+ this._formData[ key ] = value;
+ }
+ },
+
+ setRequestHeader: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._headers, key );
+ } else {
+ this._headers[ key ] = value;
+ }
+ },
+
+ send: function( method ) {
+ this.exec( 'send', method );
+ this._timeout();
+ },
+
+ abort: function() {
+ clearTimeout( this._timer );
+ return this.exec('abort');
+ },
+
+ destroy: function() {
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ },
+
+ getResponseHeaders: function() {
+ return this.exec('getResponseHeaders');
+ },
+
+ getResponse: function() {
+ return this.exec('getResponse');
+ },
+
+ getResponseAsJson: function() {
+ return this.exec('getResponseAsJson');
+ },
+
+ getStatus: function() {
+ return this.exec('getStatus');
+ },
+
+ _timeout: function() {
+ var me = this,
+ duration = me.options.timeout;
+
+ if ( !duration ) {
+ return;
+ }
+
+ clearTimeout( me._timer );
+ me._timer = setTimeout(function() {
+ me.abort();
+ me.trigger( 'error', 'timeout' );
+ }, duration );
+ }
+
+ });
+
+ // 让Transport具备事件功能。
+ Mediator.installTo( Transport.prototype );
+
+ return Transport;
+ });
- /**
- * @fileOverview 负责文件上传相关。
- */
- define('widgets/upload',[
- 'base',
- 'uploader',
- 'file',
- 'lib/transport',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile, Transport ) {
-
- var $ = Base.$,
- isPromise = Base.isPromise,
- Status = WUFile.Status;
-
- // 添加默认配置项
- $.extend( Uploader.options, {
-
-
- /**
- * @property {Boolean} [prepareNextFile=false]
- * @namespace options
- * @for Uploader
- * @description 是否允许在文件传输时提前把下一个文件准备好。
- * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
- * 如果能提前在当前文件传输期处理,可以节省总体耗时。
- */
- prepareNextFile: false,
-
- /**
- * @property {Boolean} [chunked=false]
- * @namespace options
- * @for Uploader
- * @description 是否要分片处理大文件上传。
- */
- chunked: false,
-
- /**
- * @property {Boolean} [chunkSize=5242880]
- * @namespace options
- * @for Uploader
- * @description 如果要分片,分多大一片? 默认大小为5M.
- */
- chunkSize: 5 * 1024 * 1024,
-
- /**
- * @property {Boolean} [chunkRetry=2]
- * @namespace options
- * @for Uploader
- * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
- */
- chunkRetry: 2,
-
- /**
- * @property {Number} [chunkRetryDelay=1000]
- * @namespace options
- * @for Uploader
- * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
- */
- chunkRetryDelay: 1000,
-
- /**
- * @property {Boolean} [threads=3]
- * @namespace options
- * @for Uploader
- * @description 上传并发数。允许同时最大上传进程数。
- */
- threads: 3,
-
-
- /**
- * @property {Object} [formData={}]
- * @namespace options
- * @for Uploader
- * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
- */
- formData: {}
-
- /**
- * @property {Object} [fileVal='file']
- * @namespace options
- * @for Uploader
- * @description 设置文件上传域的name。
- */
-
- /**
- * @property {Object} [method=POST]
- * @namespace options
- * @for Uploader
- * @description 文件上传方式,`POST` 或者 `GET`。
- */
-
- /**
- * @property {Object} [sendAsBinary=false]
- * @namespace options
- * @for Uploader
- * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
- * 其他参数在$_GET数组中。
- */
- });
-
- // 负责将文件切片。
- function CuteFile( file, chunkSize ) {
- var pending = [],
- blob = file.source,
- total = blob.size,
- chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
- start = 0,
- index = 0,
- len, api;
-
- api = {
- file: file,
-
- has: function() {
- return !!pending.length;
- },
-
- shift: function() {
- return pending.shift();
- },
-
- unshift: function( block ) {
- pending.unshift( block );
- }
- };
-
- while ( index < chunks ) {
- len = Math.min( chunkSize, total - start );
-
- pending.push({
- file: file,
- start: start,
- end: chunkSize ? (start + len) : total,
- total: total,
- chunks: chunks,
- chunk: index++,
- cuted: api
- });
- start += len;
- }
-
- file.blocks = pending.concat();
- file.remaning = pending.length;
-
- return api;
- }
-
- Uploader.register({
- name: 'upload',
-
- init: function() {
- var owner = this.owner,
- me = this;
-
- this.runing = false;
- this.progress = false;
-
- owner
- .on( 'startUpload', function() {
- me.progress = true;
- })
- .on( 'uploadFinished', function() {
- me.progress = false;
- });
-
- // 记录当前正在传的数据,跟threads相关
- this.pool = [];
-
- // 缓存分好片的文件。
- this.stack = [];
-
- // 缓存即将上传的文件。
- this.pending = [];
-
- // 跟踪还有多少分片在上传中但是没有完成上传。
- this.remaning = 0;
- this.__tick = Base.bindFn( this._tick, this );
-
- // 销毁上传相关的属性。
- owner.on( 'uploadComplete', function( file ) {
-
- // 把其他块取消了。
- file.blocks && $.each( file.blocks, function( _, v ) {
- v.transport && (v.transport.abort(), v.transport.destroy());
- delete v.transport;
- });
-
- delete file.blocks;
- delete file.remaning;
- });
- },
-
- reset: function() {
- this.request( 'stop-upload', true );
- this.runing = false;
- this.pool = [];
- this.stack = [];
- this.pending = [];
- this.remaning = 0;
- this._trigged = false;
- this._promise = null;
- },
-
- /**
- * @event startUpload
- * @description 当开始上传流程时触发。
- * @for Uploader
- */
-
- /**
- * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
- *
- * 可以指定开始某一个文件。
- * @grammar upload() => undefined
- * @grammar upload( file | fileId) => undefined
- * @method upload
- * @for Uploader
- */
- startUpload: function(file) {
- var me = this;
-
- // 移出invalid的文件
- $.each( me.request( 'get-files', Status.INVALID ), function() {
- me.request( 'remove-file', this );
- });
-
- // 如果指定了开始某个文件,则只开始指定的文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if (file.getStatus() === Status.INTERRUPT) {
- file.setStatus( Status.QUEUED );
-
- $.each( me.pool, function( _, v ) {
-
- // 之前暂停过。
- if (v.file !== file) {
- return;
- }
-
- v.transport && v.transport.send();
- file.setStatus( Status.PROGRESS );
- });
-
-
- } else if (file.getStatus() !== Status.PROGRESS) {
- file.setStatus( Status.QUEUED );
- }
- } else {
- $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
- this.setStatus( Status.QUEUED );
- });
- }
-
- if ( me.runing ) {
- me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
- return Base.nextTick( me.__tick );
- }
-
- me.runing = true;
- var files = [];
-
- // 如果有暂停的,则续传
- file || $.each( me.pool, function( _, v ) {
- var file = v.file;
-
- if ( file.getStatus() === Status.INTERRUPT ) {
- me._trigged = false;
- files.push(file);
-
- if (v.waiting) {
- return;
- }
-
- // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
- v.transport ? v.transport.send() : me._doSend(v);
- }
- });
-
- $.each(files, function() {
- this.setStatus( Status.PROGRESS );
- });
-
- file || $.each( me.request( 'get-files',
- Status.INTERRUPT ), function() {
- this.setStatus( Status.PROGRESS );
- });
-
- me._trigged = false;
- Base.nextTick( me.__tick );
- me.owner.trigger('startUpload');
- },
-
- /**
- * @event stopUpload
- * @description 当开始上传流程暂停时触发。
- * @for Uploader
- */
-
- /**
- * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
- *
- * 如果第一个参数是文件,则只暂停指定文件。
- * @grammar stop() => undefined
- * @grammar stop( true ) => undefined
- * @grammar stop( file ) => undefined
- * @method stop
- * @for Uploader
- */
- stopUpload: function( file, interrupt ) {
- var me = this;
-
- if (file === true) {
- interrupt = file;
- file = null;
- }
-
- if ( me.runing === false ) {
- return;
- }
-
- // 如果只是暂停某个文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if ( file.getStatus() !== Status.PROGRESS &&
- file.getStatus() !== Status.QUEUED ) {
- return;
- }
-
- file.setStatus( Status.INTERRUPT );
-
-
- $.each( me.pool, function( _, v ) {
-
- // 只 abort 指定的文件,每一个分片。
- if (v.file === file) {
- v.transport && v.transport.abort();
-
- if (interrupt) {
- me._putback(v);
- me._popBlock(v);
- }
- }
- });
-
- me.owner.trigger('stopUpload', file);// 暂停,trigger event
-
- return Base.nextTick( me.__tick );
- }
-
- me.runing = false;
-
- // 正在准备中的文件。
- if (this._promise && this._promise.file) {
- this._promise.file.setStatus( Status.INTERRUPT );
- }
-
- interrupt && $.each( me.pool, function( _, v ) {
- v.transport && v.transport.abort();
- v.file.setStatus( Status.INTERRUPT );
- });
-
- me.owner.trigger('stopUpload');
- },
-
- /**
- * @method cancelFile
- * @grammar cancelFile( file ) => undefined
- * @grammar cancelFile( id ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 标记文件状态为已取消, 同时将中断文件传输。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.cancelFile( file );
- * })
- */
- cancelFile: function( file ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- file.setStatus( Status.CANCELLED );
- this.owner.trigger( 'fileDequeued', file );
- },
-
- /**
- * 判断`Uploader`是否正在上传中。
- * @grammar isInProgress() => Boolean
- * @method isInProgress
- * @for Uploader
- */
- isInProgress: function() {
- return !!this.progress;
- },
-
- _getStats: function() {
- return this.request('get-stats');
- },
-
- /**
- * 跳过一个文件上传,直接标记指定文件为已上传状态。
- * @grammar skipFile( file ) => undefined
- * @method skipFile
- * @for Uploader
- */
- skipFile: function( file, status ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- file.setStatus( status || Status.COMPLETE );
- file.skipped = true;
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- this.owner.trigger( 'uploadSkip', file );
- },
-
- /**
- * @event uploadFinished
- * @description 当所有文件上传结束时触发。
- * @for Uploader
- */
- _tick: function() {
- var me = this,
- opts = me.options,
- fn, val;
-
- // 上一个promise还没有结束,则等待完成后再执行。
- if ( me._promise ) {
- return me._promise.always( me.__tick );
- }
-
- // 还有位置,且还有文件要处理的话。
- if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
- me._trigged = false;
-
- fn = function( val ) {
- me._promise = null;
-
- // 有可能是reject过来的,所以要检测val的类型。
- val && val.file && me._startSend( val );
- Base.nextTick( me.__tick );
- };
-
- me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
-
- // 没有要上传的了,且没有正在传输的了。
- } else if ( !me.remaning && !me._getStats().numOfQueue &&
- !me._getStats().numOfInterrupt ) {
- me.runing = false;
-
- me._trigged || Base.nextTick(function() {
- me.owner.trigger('uploadFinished');
- });
- me._trigged = true;
- }
- },
-
- _putback: function(block) {
- var idx;
-
- block.cuted.unshift(block);
- idx = this.stack.indexOf(block.cuted);
-
- if (!~idx) {
- // 如果不在里面,说明移除过,需要把计数还原回去。
- this.remaning++;
- block.file.remaning++;
- this.stack.unshift(block.cuted);
- }
- },
-
- _getStack: function() {
- var i = 0,
- act;
-
- while ( (act = this.stack[ i++ ]) ) {
- if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
- return act;
- } else if (!act.has() ||
- act.file.getStatus() !== Status.PROGRESS &&
- act.file.getStatus() !== Status.INTERRUPT ) {
-
- // 把已经处理完了的,或者,状态为非 progress(上传中)、
- // interupt(暂停中) 的移除。
- this.stack.splice( --i, 1 );
- }
- }
-
- return null;
- },
-
- _nextBlock: function() {
- var me = this,
- opts = me.options,
- act, next, done, preparing;
-
- // 如果当前文件还有没有需要传输的,则直接返回剩下的。
- if ( (act = this._getStack()) ) {
-
- // 是否提前准备下一个文件
- if ( opts.prepareNextFile && !me.pending.length ) {
- me._prepareNextFile();
- }
-
- return act.shift();
-
- // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
- } else if ( me.runing ) {
-
- // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
- if ( !me.pending.length && me._getStats().numOfQueue ) {
- me._prepareNextFile();
- }
-
- next = me.pending.shift();
- done = function( file ) {
- if ( !file ) {
- return null;
- }
-
- act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
- me.stack.push(act);
- return act.shift();
- };
-
- // 文件可能还在prepare中,也有可能已经完全准备好了。
- if ( isPromise( next) ) {
- preparing = next.file;
- next = next[ next.pipe ? 'pipe' : 'then' ]( done );
- next.file = preparing;
- return next;
- }
-
- return done( next );
- }
- },
-
-
- /**
- * @event uploadStart
- * @param {File} file File对象
- * @description 某个文件开始上传前触发,一个文件只会触发一次。
- * @for Uploader
- */
- _prepareNextFile: function() {
- var me = this,
- file = me.request('fetch-file'),
- pending = me.pending,
- promise;
-
- if ( file ) {
- promise = me.request( 'before-send-file', file, function() {
-
- // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
- if ( file.getStatus() === Status.PROGRESS ||
- file.getStatus() === Status.INTERRUPT ) {
- return file;
- }
-
- return me._finishFile( file );
- });
-
- me.owner.trigger( 'uploadStart', file );
- file.setStatus( Status.PROGRESS );
-
- promise.file = file;
-
- // 如果还在pending中,则替换成文件本身。
- promise.done(function() {
- var idx = $.inArray( promise, pending );
-
- ~idx && pending.splice( idx, 1, file );
- });
-
- // befeore-send-file的钩子就有错误发生。
- promise.fail(function( reason ) {
- file.setStatus( Status.ERROR, reason );
- me.owner.trigger( 'uploadError', file, reason );
- me.owner.trigger( 'uploadComplete', file );
- });
-
- pending.push( promise );
- }
- },
-
- // 让出位置了,可以让其他分片开始上传
- _popBlock: function( block ) {
- var idx = $.inArray( block, this.pool );
-
- this.pool.splice( idx, 1 );
- block.file.remaning--;
- this.remaning--;
- },
-
- // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
- _startSend: function( block ) {
- var me = this,
- file = block.file,
- promise;
-
- // 有可能在 before-send-file 的 promise 期间改变了文件状态。
- // 如:暂停,取消
- // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
- if ( file.getStatus() !== Status.PROGRESS ) {
-
- // 如果是中断,则还需要放回去。
- if (file.getStatus() === Status.INTERRUPT) {
- me._putback(block);
- }
-
- return;
- }
-
- me.pool.push( block );
- me.remaning++;
-
- // 如果没有分片,则直接使用原始的。
- // 不会丢失content-type信息。
- block.blob = block.chunks === 1 ? file.source :
- file.source.slice( block.start, block.end );
-
- // hook, 每个分片发送之前可能要做些异步的事情。
- block.waiting = promise = me.request( 'before-send', block, function() {
- delete block.waiting;
-
- // 有可能文件已经上传出错了,所以不需要再传输了。
- if ( file.getStatus() === Status.PROGRESS ) {
- me._doSend( block );
- } else if (block.file.getStatus() !== Status.INTERRUPT) {
- me._popBlock(block);
- }
-
- Base.nextTick(me.__tick);
- });
-
- // 如果为fail了,则跳过此分片。
- promise.fail(function() {
- delete block.waiting;
-
- if ( file.remaning === 1 ) {
- me._finishFile( file ).always(function() {
- block.percentage = 1;
- me._popBlock( block );
- me.owner.trigger( 'uploadComplete', file );
- Base.nextTick( me.__tick );
- });
- } else {
- block.percentage = 1;
- me.updateFileProgress( file );
- me._popBlock( block );
- Base.nextTick( me.__tick );
- }
- });
- },
-
-
- /**
- * @event uploadBeforeSend
- * @param {Object} object
- * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
- * @param {Object} headers 可以扩展此对象来控制上传头部。
- * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
- * @for Uploader
- */
-
- /**
- * @event uploadAccept
- * @param {Object} object
- * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
- * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
- * @for Uploader
- */
-
- /**
- * @event uploadProgress
- * @param {File} file File对象
- * @param {Number} percentage 上传进度
- * @description 上传过程中触发,携带上传进度。
- * @for Uploader
- */
-
-
- /**
- * @event uploadError
- * @param {File} file File对象
- * @param {String} reason 出错的code
- * @description 当文件上传出错时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadSuccess
- * @param {File} file File对象
- * @param {Object} response 服务端返回的数据
- * @description 当文件上传成功时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadComplete
- * @param {File} [file] File对象
- * @description 不管成功或者失败,文件上传完成时触发。
- * @for Uploader
- */
-
- // 做上传操作。
- _doSend: function( block ) {
- var me = this,
- owner = me.owner,
- opts = $.extend({}, me.options, block.options),
- file = block.file,
- tr = new Transport( opts ),
- data = $.extend({}, opts.formData ),
- headers = $.extend({}, opts.headers ),
- requestAccept, ret;
-
- block.transport = tr;
-
- tr.on( 'destroy', function() {
- delete block.transport;
- me._popBlock( block );
- Base.nextTick( me.__tick );
- });
-
- // 广播上传进度。以文件为单位。
- tr.on( 'progress', function( percentage ) {
- block.percentage = percentage;
- me.updateFileProgress( file );
- });
-
- // 用来询问,是否返回的结果是有错误的。
- requestAccept = function( reject ) {
- var fn;
-
- ret = tr.getResponseAsJson() || {};
- ret._raw = tr.getResponse();
- ret._headers = tr.getResponseHeaders();
- block.response = ret;
- fn = function( value ) {
- reject = value;
- };
-
- // 服务端响应了,不代表成功了,询问是否响应正确。
- if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
- reject = reject || 'server';
- }
-
- return reject;
- };
-
- // 尝试重试,然后广播文件上传出错。
- tr.on( 'error', function( type, flag ) {
- // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
- // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
- var typeArr = type.split( '|' ), status, statusText;
- type = typeArr[0];
- status = parseFloat( typeArr[1] ),
- statusText = typeArr[2];
-
- block.retried = block.retried || 0;
-
- // 自动重试
- if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
- block.retried < opts.chunkRetry ) {
-
- block.retried++;
-
- me.retryTimer = setTimeout(function() {
- tr.send();
- }, opts.chunkRetryDelay || 1000);
-
- } else {
-
- // http status 500 ~ 600
- if ( !flag && type === 'server' ) {
- type = requestAccept( type );
- }
-
- file.setStatus( Status.ERROR, type );
- owner.trigger( 'uploadError', file, type, status, statusText );
- owner.trigger( 'uploadComplete', file );
- }
- });
-
- // 上传成功
- tr.on( 'load', function() {
- var reason;
-
- // 如果非预期,转向上传出错。
- if ( (reason = requestAccept()) ) {
- tr.trigger( 'error', reason, true );
- return;
- }
-
- // 全部上传完成。
- if ( file.remaning === 1 ) {
- me._finishFile( file, ret );
- } else {
- tr.destroy();
- }
- });
-
- // 配置默认的上传字段。
- data = $.extend( data, {
- id: file.id,
- name: file.name,
- type: file.type,
- lastModifiedDate: file.lastModifiedDate,
- size: file.size
- });
-
- block.chunks > 1 && $.extend( data, {
- chunks: block.chunks,
- chunk: block.chunk
- });
-
- // 在发送之间可以添加字段什么的。。。
- // 如果默认的字段不够使用,可以通过监听此事件来扩展
- owner.trigger( 'uploadBeforeSend', block, data, headers );
-
- // 开始发送。
- tr.appendBlob( opts.fileVal, block.blob, file.name );
- tr.append( data );
- tr.setRequestHeader( headers );
- tr.send();
- },
-
- // 完成上传。
- _finishFile: function( file, ret, hds ) {
- var owner = this.owner;
-
- return owner
- .request( 'after-send-file', arguments, function() {
- file.setStatus( Status.COMPLETE );
- owner.trigger( 'uploadSuccess', file, ret, hds );
- })
- .fail(function( reason ) {
-
- // 如果外部已经标记为invalid什么的,不再改状态。
- if ( file.getStatus() === Status.PROGRESS ) {
- file.setStatus( Status.ERROR, reason );
- }
-
- owner.trigger( 'uploadError', file, reason );
- })
- .always(function() {
- owner.trigger( 'uploadComplete', file );
- });
- },
-
- updateFileProgress: function(file) {
- var totalPercent = 0,
- uploaded = 0;
-
- if (!file.blocks) {
- return;
- }
-
- $.each( file.blocks, function( _, v ) {
- uploaded += (v.percentage || 0) * (v.end - v.start);
- });
-
- totalPercent = uploaded / file.size;
- this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
- },
-
- destroy: function() {
- clearTimeout(this.retryTimer);
- }
-
- });
- });
-
- /**
- * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
- */
-
- define('widgets/validator',[
- 'base',
- 'uploader',
- 'file',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile ) {
-
- var $ = Base.$,
- validators = {},
- api;
-
- /**
- * @event error
- * @param {String} type 错误类型。
- * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
- *
- * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
- * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
- * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
- * @for Uploader
- */
-
- // 暴露给外面的api
- api = {
-
- // 添加验证器
- addValidator: function( type, cb ) {
- validators[ type ] = cb;
- },
-
- // 移除验证器
- removeValidator: function( type ) {
- delete validators[ type ];
- }
- };
-
- // 在Uploader初始化的时候启动Validators的初始化
- Uploader.register({
- name: 'validator',
-
- init: function() {
- var me = this;
- Base.nextTick(function() {
- $.each( validators, function() {
- this.call( me.owner );
- });
- });
- }
- });
-
- /**
- * @property {int} [fileNumLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总数量, 超出则不允许加入队列。
- */
- api.addValidator( 'fileNumLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileNumLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
- if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
- return false;
- }
- if ( count >= max && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return count >= max ? false : true;
- });
-
- uploader.on( 'fileQueued', function() {
- count++;
- });
-
- uploader.on( 'fileDequeued', function() {
- count--;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
-
- /**
- * @property {int} [fileSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileSizeLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var invalid = count + file.size > max;
-
- if ( invalid && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return invalid ? false : true;
- });
-
- uploader.on( 'fileQueued', function( file ) {
- count += file.size;
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- count -= file.size;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
- /**
- * @property {int} [fileSingleSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSingleSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- max = opts.fileSingleSizeLimit;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
-
- if ( file.size > max ) {
- file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
- this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
- return false;
- }
-
- });
-
- });
-
- /**
- * @property {Boolean} [duplicate=undefined]
- * @namespace options
- * @for Uploader
- * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
- */
- api.addValidator( 'duplicate', function() {
- var uploader = this,
- opts = uploader.options,
- mapping = {};
-
- if ( opts.duplicate ) {
- return;
- }
-
- function hashString( str ) {
- var hash = 0,
- i = 0,
- len = str.length,
- _char;
-
- for ( ; i < len; i++ ) {
- _char = str.charCodeAt( i );
- hash = _char + (hash << 6) + (hash << 16) - hash;
- }
-
- return hash;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var hash = file.__hash || (file.__hash = hashString( file.name +
- file.size + file.lastModifiedDate ));
-
- // 已经重复了
- if ( mapping[ hash ] ) {
- this.trigger( 'error', 'F_DUPLICATE', file );
- return false;
- }
- });
-
- uploader.on( 'fileQueued', function( file ) {
- var hash = file.__hash;
-
- hash && (mapping[ hash ] = true);
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- var hash = file.__hash;
-
- hash && (delete mapping[ hash ]);
- });
+ /**
+ * @fileOverview 负责文件上传相关。
+ */
+ define('widgets/upload',[
+ 'base',
+ 'uploader',
+ 'file',
+ 'lib/transport',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile, Transport ) {
+
+ var $ = Base.$,
+ isPromise = Base.isPromise,
+ Status = WUFile.Status;
+
+ // 添加默认配置项
+ $.extend( Uploader.options, {
+
+
+ /**
+ * @property {Boolean} [prepareNextFile=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否允许在文件传输时提前把下一个文件准备好。
+ * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
+ * 如果能提前在当前文件传输期处理,可以节省总体耗时。
+ */
+ prepareNextFile: false,
+
+ /**
+ * @property {Boolean} [chunked=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否要分片处理大文件上传。
+ */
+ chunked: false,
+
+ /**
+ * @property {Boolean} [chunkSize=5242880]
+ * @namespace options
+ * @for Uploader
+ * @description 如果要分片,分多大一片? 默认大小为5M.
+ */
+ chunkSize: 5 * 1024 * 1024,
+
+ /**
+ * @property {Boolean} [chunkRetry=2]
+ * @namespace options
+ * @for Uploader
+ * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
+ */
+ chunkRetry: 2,
+
+ /**
+ * @property {Number} [chunkRetryDelay=1000]
+ * @namespace options
+ * @for Uploader
+ * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
+ */
+ chunkRetryDelay: 1000,
+
+ /**
+ * @property {Boolean} [threads=3]
+ * @namespace options
+ * @for Uploader
+ * @description 上传并发数。允许同时最大上传进程数。
+ */
+ threads: 3,
+
+
+ /**
+ * @property {Object} [formData={}]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
+ */
+ formData: {}
+
+ /**
+ * @property {Object} [fileVal='file']
+ * @namespace options
+ * @for Uploader
+ * @description 设置文件上传域的name。
+ */
+
+ /**
+ * @property {Object} [method=POST]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传方式,`POST` 或者 `GET`。
+ */
+
+ /**
+ * @property {Object} [sendAsBinary=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
+ * 其他参数在$_GET数组中。
+ */
+ });
+
+ // 负责将文件切片。
+ function CuteFile( file, chunkSize ) {
+ var pending = [],
+ blob = file.source,
+ total = blob.size,
+ chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
+ start = 0,
+ index = 0,
+ len, api;
+
+ api = {
+ file: file,
+
+ has: function() {
+ return !!pending.length;
+ },
+
+ shift: function() {
+ return pending.shift();
+ },
+
+ unshift: function( block ) {
+ pending.unshift( block );
+ }
+ };
+
+ while ( index < chunks ) {
+ len = Math.min( chunkSize, total - start );
+
+ pending.push({
+ file: file,
+ start: start,
+ end: chunkSize ? (start + len) : total,
+ total: total,
+ chunks: chunks,
+ chunk: index++,
+ cuted: api
+ });
+ start += len;
+ }
+
+ file.blocks = pending.concat();
+ file.remaning = pending.length;
+
+ return api;
+ }
+
+ Uploader.register({
+ name: 'upload',
+
+ init: function() {
+ var owner = this.owner,
+ me = this;
+
+ this.runing = false;
+ this.progress = false;
+
+ owner
+ .on( 'startUpload', function() {
+ me.progress = true;
+ })
+ .on( 'uploadFinished', function() {
+ me.progress = false;
+ });
+
+ // 记录当前正在传的数据,跟threads相关
+ this.pool = [];
+
+ // 缓存分好片的文件。
+ this.stack = [];
+
+ // 缓存即将上传的文件。
+ this.pending = [];
+
+ // 跟踪还有多少分片在上传中但是没有完成上传。
+ this.remaning = 0;
+ this.__tick = Base.bindFn( this._tick, this );
+
+ // 销毁上传相关的属性。
+ owner.on( 'uploadComplete', function( file ) {
+
+ // 把其他块取消了。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ v.transport && (v.transport.abort(), v.transport.destroy());
+ delete v.transport;
+ });
+
+ delete file.blocks;
+ delete file.remaning;
+ });
+ },
+
+ reset: function() {
+ this.request( 'stop-upload', true );
+ this.runing = false;
+ this.pool = [];
+ this.stack = [];
+ this.pending = [];
+ this.remaning = 0;
+ this._trigged = false;
+ this._promise = null;
+ },
+
+ /**
+ * @event startUpload
+ * @description 当开始上传流程时触发。
+ * @for Uploader
+ */
+
+ /**
+ * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
+ *
+ * 可以指定开始某一个文件。
+ * @grammar upload() => undefined
+ * @grammar upload( file | fileId) => undefined
+ * @method upload
+ * @for Uploader
+ */
+ startUpload: function(file) {
+ var me = this;
+
+ // 移出invalid的文件
+ $.each( me.request( 'get-files', Status.INVALID ), function() {
+ me.request( 'remove-file', this );
+ });
+
+ // 如果指定了开始某个文件,则只开始指定的文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
+
+ if (file.getStatus() === Status.INTERRUPT) {
+ file.setStatus( Status.QUEUED );
+
+ $.each( me.pool, function( _, v ) {
+
+ // 之前暂停过。
+ if (v.file !== file) {
+ return;
+ }
+
+ v.transport && v.transport.send();
+ file.setStatus( Status.PROGRESS );
+ });
+
+
+ } else if (file.getStatus() !== Status.PROGRESS) {
+ file.setStatus( Status.QUEUED );
+ }
+ } else {
+ $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
+ this.setStatus( Status.QUEUED );
+ });
+ }
+
+ if ( me.runing ) {
+ me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
+ return Base.nextTick( me.__tick );
+ }
+
+ me.runing = true;
+ var files = [];
+
+ // 如果有暂停的,则续传
+ file || $.each( me.pool, function( _, v ) {
+ var file = v.file;
+
+ if ( file.getStatus() === Status.INTERRUPT ) {
+ me._trigged = false;
+ files.push(file);
+
+ if (v.waiting) {
+ return;
+ }
+
+ // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
+ v.transport ? v.transport.send() : me._doSend(v);
+ }
+ });
+
+ $.each(files, function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ file || $.each( me.request( 'get-files',
+ Status.INTERRUPT ), function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ me._trigged = false;
+ Base.nextTick( me.__tick );
+ me.owner.trigger('startUpload');
+ },
+
+ /**
+ * @event stopUpload
+ * @description 当开始上传流程暂停时触发。
+ * @for Uploader
+ */
+
+ /**
+ * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
+ *
+ * 如果第一个参数是文件,则只暂停指定文件。
+ * @grammar stop() => undefined
+ * @grammar stop( true ) => undefined
+ * @grammar stop( file ) => undefined
+ * @method stop
+ * @for Uploader
+ */
+ stopUpload: function( file, interrupt ) {
+ var me = this;
+
+ if (file === true) {
+ interrupt = file;
+ file = null;
+ }
+
+ if ( me.runing === false ) {
+ return;
+ }
+
+ // 如果只是暂停某个文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
+
+ if ( file.getStatus() !== Status.PROGRESS &&
+ file.getStatus() !== Status.QUEUED ) {
+ return;
+ }
+
+ file.setStatus( Status.INTERRUPT );
+
+
+ $.each( me.pool, function( _, v ) {
+
+ // 只 abort 指定的文件,每一个分片。
+ if (v.file === file) {
+ v.transport && v.transport.abort();
+
+ if (interrupt) {
+ me._putback(v);
+ me._popBlock(v);
+ }
+ }
+ });
+
+ me.owner.trigger('stopUpload', file);// 暂停,trigger event
+
+ return Base.nextTick( me.__tick );
+ }
+
+ me.runing = false;
+
+ // 正在准备中的文件。
+ if (this._promise && this._promise.file) {
+ this._promise.file.setStatus( Status.INTERRUPT );
+ }
+
+ interrupt && $.each( me.pool, function( _, v ) {
+ v.transport && v.transport.abort();
+ v.file.setStatus( Status.INTERRUPT );
+ });
+
+ me.owner.trigger('stopUpload');
+ },
+
+ /**
+ * @method cancelFile
+ * @grammar cancelFile( file ) => undefined
+ * @grammar cancelFile( id ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 标记文件状态为已取消, 同时将中断文件传输。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.cancelFile( file );
+ * })
+ */
+ cancelFile: function( file ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
+ });
+
+ file.setStatus( Status.CANCELLED );
+ this.owner.trigger( 'fileDequeued', file );
+ },
+
+ /**
+ * 判断`Uploader`是否正在上传中。
+ * @grammar isInProgress() => Boolean
+ * @method isInProgress
+ * @for Uploader
+ */
+ isInProgress: function() {
+ return !!this.progress;
+ },
+
+ _getStats: function() {
+ return this.request('get-stats');
+ },
+
+ /**
+ * 跳过一个文件上传,直接标记指定文件为已上传状态。
+ * @grammar skipFile( file ) => undefined
+ * @method skipFile
+ * @for Uploader
+ */
+ skipFile: function( file, status ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ file.setStatus( status || Status.COMPLETE );
+ file.skipped = true;
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
+ });
+
+ this.owner.trigger( 'uploadSkip', file );
+ },
+
+ /**
+ * @event uploadFinished
+ * @description 当所有文件上传结束时触发。
+ * @for Uploader
+ */
+ _tick: function() {
+ var me = this,
+ opts = me.options,
+ fn, val;
+
+ // 上一个promise还没有结束,则等待完成后再执行。
+ if ( me._promise ) {
+ return me._promise.always( me.__tick );
+ }
+
+ // 还有位置,且还有文件要处理的话。
+ if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
+ me._trigged = false;
+
+ fn = function( val ) {
+ me._promise = null;
+
+ // 有可能是reject过来的,所以要检测val的类型。
+ val && val.file && me._startSend( val );
+ Base.nextTick( me.__tick );
+ };
+
+ me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
+
+ // 没有要上传的了,且没有正在传输的了。
+ } else if ( !me.remaning && !me._getStats().numOfQueue &&
+ !me._getStats().numOfInterrupt ) {
+ me.runing = false;
+
+ me._trigged || Base.nextTick(function() {
+ me.owner.trigger('uploadFinished');
+ });
+ me._trigged = true;
+ }
+ },
+
+ _putback: function(block) {
+ var idx;
+
+ block.cuted.unshift(block);
+ idx = this.stack.indexOf(block.cuted);
+
+ if (!~idx) {
+ // 如果不在里面,说明移除过,需要把计数还原回去。
+ this.remaning++;
+ block.file.remaning++;
+ this.stack.unshift(block.cuted);
+ }
+ },
+
+ _getStack: function() {
+ var i = 0,
+ act;
+
+ while ( (act = this.stack[ i++ ]) ) {
+ if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
+ return act;
+ } else if (!act.has() ||
+ act.file.getStatus() !== Status.PROGRESS &&
+ act.file.getStatus() !== Status.INTERRUPT ) {
+
+ // 把已经处理完了的,或者,状态为非 progress(上传中)、
+ // interupt(暂停中) 的移除。
+ this.stack.splice( --i, 1 );
+ }
+ }
+
+ return null;
+ },
+
+ _nextBlock: function() {
+ var me = this,
+ opts = me.options,
+ act, next, done, preparing;
+
+ // 如果当前文件还有没有需要传输的,则直接返回剩下的。
+ if ( (act = this._getStack()) ) {
+
+ // 是否提前准备下一个文件
+ if ( opts.prepareNextFile && !me.pending.length ) {
+ me._prepareNextFile();
+ }
+
+ return act.shift();
+
+ // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
+ } else if ( me.runing ) {
+
+ // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
+ if ( !me.pending.length && me._getStats().numOfQueue ) {
+ me._prepareNextFile();
+ }
+
+ next = me.pending.shift();
+ done = function( file ) {
+ if ( !file ) {
+ return null;
+ }
+
+ act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
+ me.stack.push(act);
+ return act.shift();
+ };
+
+ // 文件可能还在prepare中,也有可能已经完全准备好了。
+ if ( isPromise( next) ) {
+ preparing = next.file;
+ next = next[ next.pipe ? 'pipe' : 'then' ]( done );
+ next.file = preparing;
+ return next;
+ }
+
+ return done( next );
+ }
+ },
+
+
+ /**
+ * @event uploadStart
+ * @param {File} file File对象
+ * @description 某个文件开始上传前触发,一个文件只会触发一次。
+ * @for Uploader
+ */
+ _prepareNextFile: function() {
+ var me = this,
+ file = me.request('fetch-file'),
+ pending = me.pending,
+ promise;
+
+ if ( file ) {
+ promise = me.request( 'before-send-file', file, function() {
+
+ // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
+ if ( file.getStatus() === Status.PROGRESS ||
+ file.getStatus() === Status.INTERRUPT ) {
+ return file;
+ }
+
+ return me._finishFile( file );
+ });
+
+ me.owner.trigger( 'uploadStart', file );
+ file.setStatus( Status.PROGRESS );
+
+ promise.file = file;
+
+ // 如果还在pending中,则替换成文件本身。
+ promise.done(function() {
+ var idx = $.inArray( promise, pending );
+
+ ~idx && pending.splice( idx, 1, file );
+ });
+
+ // befeore-send-file的钩子就有错误发生。
+ promise.fail(function( reason ) {
+ file.setStatus( Status.ERROR, reason );
+ me.owner.trigger( 'uploadError', file, reason );
+ me.owner.trigger( 'uploadComplete', file );
+ });
+
+ pending.push( promise );
+ }
+ },
+
+ // 让出位置了,可以让其他分片开始上传
+ _popBlock: function( block ) {
+ var idx = $.inArray( block, this.pool );
+
+ this.pool.splice( idx, 1 );
+ block.file.remaning--;
+ this.remaning--;
+ },
+
+ // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
+ _startSend: function( block ) {
+ var me = this,
+ file = block.file,
+ promise;
+
+ // 有可能在 before-send-file 的 promise 期间改变了文件状态。
+ // 如:暂停,取消
+ // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
+ if ( file.getStatus() !== Status.PROGRESS ) {
+
+ // 如果是中断,则还需要放回去。
+ if (file.getStatus() === Status.INTERRUPT) {
+ me._putback(block);
+ }
+
+ return;
+ }
+
+ me.pool.push( block );
+ me.remaning++;
+
+ // 如果没有分片,则直接使用原始的。
+ // 不会丢失content-type信息。
+ block.blob = block.chunks === 1 ? file.source :
+ file.source.slice( block.start, block.end );
+
+ // hook, 每个分片发送之前可能要做些异步的事情。
+ block.waiting = promise = me.request( 'before-send', block, function() {
+ delete block.waiting;
+
+ // 有可能文件已经上传出错了,所以不需要再传输了。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ me._doSend( block );
+ } else if (block.file.getStatus() !== Status.INTERRUPT) {
+ me._popBlock(block);
+ }
+
+ Base.nextTick(me.__tick);
+ });
+
+ // 如果为fail了,则跳过此分片。
+ promise.fail(function() {
+ delete block.waiting;
+
+ if ( file.remaning === 1 ) {
+ me._finishFile( file ).always(function() {
+ block.percentage = 1;
+ me._popBlock( block );
+ me.owner.trigger( 'uploadComplete', file );
+ Base.nextTick( me.__tick );
+ });
+ } else {
+ block.percentage = 1;
+ me.updateFileProgress( file );
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ }
+ });
+ },
+
+
+ /**
+ * @event uploadBeforeSend
+ * @param {Object} object
+ * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
+ * @param {Object} headers 可以扩展此对象来控制上传头部。
+ * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadAccept
+ * @param {Object} object
+ * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
+ * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadProgress
+ * @param {File} file File对象
+ * @param {Number} percentage 上传进度
+ * @description 上传过程中触发,携带上传进度。
+ * @for Uploader
+ */
+
+
+ /**
+ * @event uploadError
+ * @param {File} file File对象
+ * @param {String} reason 出错的code
+ * @description 当文件上传出错时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadSuccess
+ * @param {File} file File对象
+ * @param {Object} response 服务端返回的数据
+ * @description 当文件上传成功时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadComplete
+ * @param {File} [file] File对象
+ * @description 不管成功或者失败,文件上传完成时触发。
+ * @for Uploader
+ */
+
+ // 做上传操作。
+ _doSend: function( block ) {
+ var me = this,
+ owner = me.owner,
+ opts = $.extend({}, me.options, block.options),
+ file = block.file,
+ tr = new Transport( opts ),
+ data = $.extend({}, opts.formData ),
+ headers = $.extend({}, opts.headers ),
+ requestAccept, ret;
+
+ block.transport = tr;
+
+ tr.on( 'destroy', function() {
+ delete block.transport;
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ });
+
+ // 广播上传进度。以文件为单位。
+ tr.on( 'progress', function( percentage ) {
+ block.percentage = percentage;
+ me.updateFileProgress( file );
+ });
+
+ // 用来询问,是否返回的结果是有错误的。
+ requestAccept = function( reject ) {
+ var fn;
+
+ ret = tr.getResponseAsJson() || {};
+ ret._raw = tr.getResponse();
+ ret._headers = tr.getResponseHeaders();
+ block.response = ret;
+ fn = function( value ) {
+ reject = value;
+ };
+
+ // 服务端响应了,不代表成功了,询问是否响应正确。
+ if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
+ reject = reject || 'server';
+ }
+
+ return reject;
+ };
+
+ // 尝试重试,然后广播文件上传出错。
+ tr.on( 'error', function( type, flag ) {
+ // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
+ // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
+ var typeArr = type.split( '|' ), status, statusText;
+ type = typeArr[0];
+ status = parseFloat( typeArr[1] ),
+ statusText = typeArr[2];
+
+ block.retried = block.retried || 0;
+
+ // 自动重试
+ if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
+ block.retried < opts.chunkRetry ) {
+
+ block.retried++;
+
+ me.retryTimer = setTimeout(function() {
+ tr.send();
+ }, opts.chunkRetryDelay || 1000);
+
+ } else {
+
+ // http status 500 ~ 600
+ if ( !flag && type === 'server' ) {
+ type = requestAccept( type );
+ }
+
+ file.setStatus( Status.ERROR, type );
+ owner.trigger( 'uploadError', file, type, status, statusText );
+ owner.trigger( 'uploadComplete', file );
+ }
+ });
+
+ // 上传成功
+ tr.on( 'load', function() {
+ var reason;
+
+ // 如果非预期,转向上传出错。
+ if ( (reason = requestAccept()) ) {
+ tr.trigger( 'error', reason, true );
+ return;
+ }
+
+ // 全部上传完成。
+ if ( file.remaning === 1 ) {
+ me._finishFile( file, ret );
+ } else {
+ tr.destroy();
+ }
+ });
+
+ // 配置默认的上传字段。
+ data = $.extend( data, {
+ id: file.id,
+ name: file.name,
+ type: file.type,
+ lastModifiedDate: file.lastModifiedDate,
+ size: file.size
+ });
+
+ block.chunks > 1 && $.extend( data, {
+ chunks: block.chunks,
+ chunk: block.chunk
+ });
+
+ // 在发送之间可以添加字段什么的。。。
+ // 如果默认的字段不够使用,可以通过监听此事件来扩展
+ owner.trigger( 'uploadBeforeSend', block, data, headers );
+
+ // 开始发送。
+ tr.appendBlob( opts.fileVal, block.blob, file.name );
+ tr.append( data );
+ tr.setRequestHeader( headers );
+ tr.send();
+ },
+
+ // 完成上传。
+ _finishFile: function( file, ret, hds ) {
+ var owner = this.owner;
+
+ return owner
+ .request( 'after-send-file', arguments, function() {
+ file.setStatus( Status.COMPLETE );
+ owner.trigger( 'uploadSuccess', file, ret, hds );
+ })
+ .fail(function( reason ) {
+
+ // 如果外部已经标记为invalid什么的,不再改状态。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ file.setStatus( Status.ERROR, reason );
+ }
+
+ owner.trigger( 'uploadError', file, reason );
+ })
+ .always(function() {
+ owner.trigger( 'uploadComplete', file );
+ });
+ },
+
+ updateFileProgress: function(file) {
+ var totalPercent = 0,
+ uploaded = 0;
+
+ if (!file.blocks) {
+ return;
+ }
+
+ $.each( file.blocks, function( _, v ) {
+ uploaded += (v.percentage || 0) * (v.end - v.start);
+ });
+
+ totalPercent = uploaded / file.size;
+ this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
+ },
+
+ destroy: function() {
+ clearTimeout(this.retryTimer);
+ }
+
+ });
+ });
- uploader.on( 'reset', function() {
- mapping = {};
- });
- });
+ /**
+ * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
+ */
+
+ define('widgets/validator',[
+ 'base',
+ 'uploader',
+ 'file',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile ) {
+
+ var $ = Base.$,
+ validators = {},
+ api;
+
+ /**
+ * @event error
+ * @param {String} type 错误类型。
+ * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
+ *
+ * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
+ * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
+ * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
+ * @for Uploader
+ */
+
+ // 暴露给外面的api
+ api = {
+
+ // 添加验证器
+ addValidator: function( type, cb ) {
+ validators[ type ] = cb;
+ },
+
+ // 移除验证器
+ removeValidator: function( type ) {
+ delete validators[ type ];
+ }
+ };
+
+ // 在Uploader初始化的时候启动Validators的初始化
+ Uploader.register({
+ name: 'validator',
+
+ init: function() {
+ var me = this;
+ Base.nextTick(function() {
+ $.each( validators, function() {
+ this.call( me.owner );
+ });
+ });
+ }
+ });
+
+ /**
+ * @property {int} [fileNumLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总数量, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileNumLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileNumLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
+ if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
+ return false;
+ }
+ if ( count >= max && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return count >= max ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function() {
+ count++;
+ });
+
+ uploader.on( 'fileDequeued', function() {
+ count--;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+
+ /**
+ * @property {int} [fileSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileSizeLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var invalid = count + file.size > max;
+
+ if ( invalid && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return invalid ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ count += file.size;
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ count -= file.size;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+ /**
+ * @property {int} [fileSingleSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSingleSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ max = opts.fileSingleSizeLimit;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+
+ if ( file.size > max ) {
+ file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
+ this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
+ return false;
+ }
+
+ });
+
+ });
+
+ /**
+ * @property {Boolean} [duplicate=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
+ */
+ api.addValidator( 'duplicate', function() {
+ var uploader = this,
+ opts = uploader.options,
+ mapping = {};
+
+ if ( opts.duplicate ) {
+ return;
+ }
+
+ function hashString( str ) {
+ var hash = 0,
+ i = 0,
+ len = str.length,
+ _char;
+
+ for ( ; i < len; i++ ) {
+ _char = str.charCodeAt( i );
+ hash = _char + (hash << 6) + (hash << 16) - hash;
+ }
+
+ return hash;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var hash = file.__hash || (file.__hash = hashString( file.name +
+ file.size + file.lastModifiedDate ));
+
+ // 已经重复了
+ if ( mapping[ hash ] ) {
+ this.trigger( 'error', 'F_DUPLICATE', file );
+ return false;
+ }
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (mapping[ hash ] = true);
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (delete mapping[ hash ]);
+ });
+
+ uploader.on( 'reset', function() {
+ mapping = {};
+ });
+ });
+
+ return api;
+ });
- return api;
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/compbase',[],function() {
+
+ function CompBase( owner, runtime ) {
+
+ this.owner = owner;
+ this.options = owner.options;
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.getRuid = function() {
+ return runtime.uid;
+ };
+
+ this.trigger = function() {
+ return owner.trigger.apply( owner, arguments );
+ };
+ }
+
+ return CompBase;
});
-
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/compbase',[],function() {
-
- function CompBase( owner, runtime ) {
-
- this.owner = owner;
- this.options = owner.options;
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.getRuid = function() {
- return runtime.uid;
- };
-
- this.trigger = function() {
- return owner.trigger.apply( owner, arguments );
- };
- }
-
- return CompBase;
+ /**
+ * @fileOverview Html5Runtime
+ */
+ define('runtime/html5/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var type = 'html5',
+ components = {};
+
+ function Html5Runtime() {
+ var pool = {},
+ me = this,
+ destroy = this.destroy;
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ if ( components[ comp ] ) {
+ instance = pool[ uid ] = pool[ uid ] ||
+ new components[ comp ]( client, me );
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+ };
+
+ me.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+ }
+
+ Base.inherits( Runtime, {
+ constructor: Html5Runtime,
+
+ // 不需要连接其他程序,直接执行callback
+ init: function() {
+ var me = this;
+ setTimeout(function() {
+ me.trigger('ready');
+ }, 1 );
+ }
+
+ });
+
+ // 注册Components
+ Html5Runtime.register = function( name, component ) {
+ var klass = components[ name ] = Base.inherits( CompBase, component );
+ return klass;
+ };
+
+ // 注册html5运行时。
+ // 只有在支持的前提下注册。
+ if ( window.Blob && window.FileReader && window.DataView ) {
+ Runtime.addRuntime( type, Html5Runtime );
+ }
+
+ return Html5Runtime;
});
- /**
- * @fileOverview Html5Runtime
- */
- define('runtime/html5/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var type = 'html5',
- components = {};
-
- function Html5Runtime() {
- var pool = {},
- me = this,
- destroy = this.destroy;
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- if ( components[ comp ] ) {
- instance = pool[ uid ] = pool[ uid ] ||
- new components[ comp ]( client, me );
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
- };
-
- me.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
- }
-
- Base.inherits( Runtime, {
- constructor: Html5Runtime,
-
- // 不需要连接其他程序,直接执行callback
- init: function() {
- var me = this;
- setTimeout(function() {
- me.trigger('ready');
- }, 1 );
- }
-
- });
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/html5/blob',[
+ 'runtime/html5/runtime',
+ 'lib/blob'
+ ], function( Html5Runtime, Blob ) {
+
+ return Html5Runtime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.owner.source,
+ slice = blob.slice || blob.webkitSlice || blob.mozSlice;
+
+ blob = slice.call( blob, start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
+ });
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/dnd',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ var $ = Base.$,
+ prefix = 'webuploader-dnd-';
+
+ return Html5Runtime.register( 'DragAndDrop', {
+ init: function() {
+ var elem = this.elem = this.options.container;
+
+ this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
+ this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
+ this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
+ this.dropHandler = Base.bindFn( this._dropHandler, this );
+ this.dndOver = false;
+
+ elem.on( 'dragenter', this.dragEnterHandler );
+ elem.on( 'dragover', this.dragOverHandler );
+ elem.on( 'dragleave', this.dragLeaveHandler );
+ elem.on( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).on( 'dragover', this.dragOverHandler );
+ $( document ).on( 'drop', this.dropHandler );
+ }
+ },
+
+ _dragEnterHandler: function( e ) {
+ var me = this,
+ denied = me._denied || false,
+ items;
+
+ e = e.originalEvent || e;
+
+ if ( !me.dndOver ) {
+ me.dndOver = true;
+
+ // 注意只有 chrome 支持。
+ items = e.dataTransfer.items;
+
+ if ( items && items.length ) {
+ me._denied = denied = !me.trigger( 'accept', items );
+ }
+
+ me.elem.addClass( prefix + 'over' );
+ me.elem[ denied ? 'addClass' :
+ 'removeClass' ]( prefix + 'denied' );
+ }
+
+ e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+
+ return false;
+ },
+
+ _dragOverHandler: function( e ) {
+ // 只处理框内的。
+ var parentElem = this.elem.parent().get( 0 );
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ clearTimeout( this._leaveTimer );
+ this._dragEnterHandler.call( this, e );
+
+ return false;
+ },
+
+ _dragLeaveHandler: function() {
+ var me = this,
+ handler;
+
+ handler = function() {
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
+ };
+
+ clearTimeout( me._leaveTimer );
+ me._leaveTimer = setTimeout( handler, 100 );
+ return false;
+ },
+
+ _dropHandler: function( e ) {
+ var me = this,
+ ruid = me.getRuid(),
+ parentElem = me.elem.parent().get( 0 ),
+ dataTransfer, data;
+
+ // 只处理框内的。
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ e = e.originalEvent || e;
+ dataTransfer = e.dataTransfer;
+
+ // 如果是页面内拖拽,还不能处理,不阻止事件。
+ // 此处 ie11 下会报参数错误,
+ try {
+ data = dataTransfer.getData('text/html');
+ } catch( err ) {
+ }
+
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over' );
+
+ if ( !dataTransfer || data ) {
+ return;
+ }
+
+ me._getTansferFiles( dataTransfer, function( results ) {
+ me.trigger( 'drop', $.map( results, function( file ) {
+ return new File( ruid, file );
+ }) );
+ });
+
+ return false;
+ },
+
+ // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
+ _getTansferFiles: function( dataTransfer, callback ) {
+ var results = [],
+ promises = [],
+ items, files, file, item, i, len, canAccessFolder;
+
+ items = dataTransfer.items;
+ files = dataTransfer.files;
+
+ canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+
+ for ( i = 0, len = files.length; i < len; i++ ) {
+ file = files[ i ];
+ item = items && items[ i ];
+
+ if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+
+ promises.push( this._traverseDirectoryTree(
+ item.webkitGetAsEntry(), results ) );
+ } else {
+ results.push( file );
+ }
+ }
+
+ Base.when.apply( Base, promises ).done(function() {
+
+ if ( !results.length ) {
+ return;
+ }
+
+ callback( results );
+ });
+ },
+
+ _traverseDirectoryTree: function( entry, results ) {
+ var deferred = Base.Deferred(),
+ me = this;
+
+ if ( entry.isFile ) {
+ entry.file(function( file ) {
+ results.push( file );
+ deferred.resolve();
+ });
+ } else if ( entry.isDirectory ) {
+ entry.createReader().readEntries(function( entries ) {
+ var len = entries.length,
+ promises = [],
+ arr = [], // 为了保证顺序。
+ i;
+
+ for ( i = 0; i < len; i++ ) {
+ promises.push( me._traverseDirectoryTree(
+ entries[ i ], arr ) );
+ }
+
+ Base.when.apply( Base, promises ).then(function() {
+ results.push.apply( results, arr );
+ deferred.resolve();
+ }, deferred.reject );
+ });
+ }
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ var elem = this.elem;
+
+ // 还没 init 就调用 destroy
+ if (!elem) {
+ return;
+ }
+
+ elem.off( 'dragenter', this.dragEnterHandler );
+ elem.off( 'dragover', this.dragOverHandler );
+ elem.off( 'dragleave', this.dragLeaveHandler );
+ elem.off( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).off( 'dragover', this.dragOverHandler );
+ $( document ).off( 'drop', this.dropHandler );
+ }
+ }
+ });
+ });
- // 注册Components
- Html5Runtime.register = function( name, component ) {
- var klass = components[ name ] = Base.inherits( CompBase, component );
- return klass;
- };
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/filepaste',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ return Html5Runtime.register( 'FilePaste', {
+ init: function() {
+ var opts = this.options,
+ elem = this.elem = opts.container,
+ accept = '.*',
+ arr, i, len, item;
+
+ // accetp的mimeTypes中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].mimeTypes;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = arr.join(',');
+ accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
+ }
+ }
+ this.accept = accept = new RegExp( accept, 'i' );
+ this.hander = Base.bindFn( this._pasteHander, this );
+ elem.on( 'paste', this.hander );
+ },
+
+ _pasteHander: function( e ) {
+ var allowed = [],
+ ruid = this.getRuid(),
+ items, item, blob, i, len;
+
+ e = e.originalEvent || e;
+ items = e.clipboardData.items;
+
+ for ( i = 0, len = items.length; i < len; i++ ) {
+ item = items[ i ];
+
+ if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
+ continue;
+ }
+
+ allowed.push( new File( ruid, blob ) );
+ }
+
+ if ( allowed.length ) {
+ // 不阻止非文件粘贴(文字粘贴)的事件冒泡
+ e.preventDefault();
+ e.stopPropagation();
+ this.trigger( 'paste', allowed );
+ }
+ },
+
+ destroy: function() {
+ this.elem.off( 'paste', this.hander );
+ }
+ });
+ });
- // 注册html5运行时。
- // 只有在支持的前提下注册。
- if ( window.Blob && window.FileReader && window.DataView ) {
- Runtime.addRuntime( type, Html5Runtime );
- }
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/html5/filepicker',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var $ = Base.$;
+
+ return Html5Runtime.register( 'FilePicker', {
+ init: function() {
+ var container = this.getRuntime().getContainer(),
+ me = this,
+ owner = me.owner,
+ opts = me.options,
+ label = this.label = $( document.createElement('label') ),
+ input = this.input = $( document.createElement('input') ),
+ arr, i, len, mouseHandler, changeHandler;
+
+ input.attr( 'type', 'file' );
+ // input.attr( 'capture', 'camera');
+ input.attr( 'name', opts.name );
+ input.addClass('webuploader-element-invisible');
+
+ label.on( 'click', function(e) {
+ input.trigger('click');
+ e.stopPropagation();
+ owner.trigger('dialogopen');
+ });
+
+ label.css({
+ opacity: 0,
+ width: '100%',
+ height: '100%',
+ display: 'block',
+ cursor: 'pointer',
+ background: '#ffffff'
+ });
+
+ if ( opts.multiple ) {
+ input.attr( 'multiple', 'multiple' );
+ }
+
+ // @todo Firefox不支持单独指定后缀
+ if ( opts.accept && opts.accept.length > 0 ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ arr.push( opts.accept[ i ].mimeTypes );
+ }
+
+ input.attr( 'accept', arr.join(',') );
+ }
+
+ container.append( input );
+ container.append( label );
+
+ mouseHandler = function( e ) {
+ owner.trigger( e.type );
+ };
+
+ changeHandler = function( e ) {
+ var clone;
+
+ // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
+ if (e.target.files.length === 0){
+ return false;
+ }
+
+ // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
+ me.files = e.target.files;
+
+
+ // reset input
+ clone = this.cloneNode( true );
+ clone.value = null;
+ this.parentNode.replaceChild( clone, this );
+
+ input.off();
+ input = $( clone ).on( 'change', changeHandler )
+ .on( 'mouseenter mouseleave', mouseHandler );
+
+ owner.trigger('change');
+ }
+ input.on( 'change', changeHandler);
+ label.on( 'mouseenter mouseleave', mouseHandler );
+
+ },
+
+
+ getFiles: function() {
+ return this.files;
+ },
+
+ destroy: function() {
+ this.input.off();
+ this.label.off();
+ }
+ });
+ });
- return Html5Runtime;
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/util',[
+ 'base'
+ ], function( Base ) {
+
+ var urlAPI = window.createObjectURL && window ||
+ window.URL && URL.revokeObjectURL && URL ||
+ window.webkitURL,
+ createObjectURL = Base.noop,
+ revokeObjectURL = createObjectURL;
+
+ if ( urlAPI ) {
+
+ // 更安全的方式调用,比如android里面就能把context改成其他的对象。
+ createObjectURL = function() {
+ return urlAPI.createObjectURL.apply( urlAPI, arguments );
+ };
+
+ revokeObjectURL = function() {
+ return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
+ };
+ }
+
+ return {
+ createObjectURL: createObjectURL,
+ revokeObjectURL: revokeObjectURL,
+
+ dataURL2Blob: function( dataURI ) {
+ var byteStr, intArray, ab, i, mimetype, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ ab = new ArrayBuffer( byteStr.length );
+ intArray = new Uint8Array( ab );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
+
+ return this.arrayBufferToBlob( ab, mimetype );
+ },
+
+ dataURL2ArrayBuffer: function( dataURI ) {
+ var byteStr, intArray, i, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ intArray = new Uint8Array( byteStr.length );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ return intArray.buffer;
+ },
+
+ arrayBufferToBlob: function( buffer, type ) {
+ var builder = window.BlobBuilder || window.WebKitBlobBuilder,
+ bb;
+
+ // android不支持直接new Blob, 只能借助blobbuilder.
+ if ( builder ) {
+ bb = new builder();
+ bb.append( buffer );
+ return bb.getBlob( type );
+ }
+
+ return new Blob([ buffer ], type ? { type: type } : {} );
+ },
+
+ // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
+ // 你得到的结果是png.
+ canvasToDataUrl: function( canvas, type, quality ) {
+ return canvas.toDataURL( type, quality / 100 );
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ parseMeta: function( blob, callback ) {
+ callback( false, {});
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ updateImageHead: function( data ) {
+ return data;
+ }
+ };
});
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/html5/blob',[
- 'runtime/html5/runtime',
- 'lib/blob'
- ], function( Html5Runtime, Blob ) {
-
- return Html5Runtime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.owner.source,
- slice = blob.slice || blob.webkitSlice || blob.mozSlice;
-
- blob = slice.call( blob, start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/imagemeta',[
+ 'runtime/html5/util'
+ ], function( Util ) {
+
+ var api;
+
+ api = {
+ parsers: {
+ 0xffe1: []
+ },
+
+ maxMetaDataSize: 262144,
+
+ parse: function( blob, cb ) {
+ var me = this,
+ fr = new FileReader();
+
+ fr.onload = function() {
+ cb( false, me._parse( this.result ) );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ fr.onerror = function( e ) {
+ cb( e.message );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ blob = blob.slice( 0, me.maxMetaDataSize );
+ fr.readAsArrayBuffer( blob.getSource() );
+ },
+
+ _parse: function( buffer, noParse ) {
+ if ( buffer.byteLength < 6 ) {
+ return;
+ }
+
+ var dataview = new DataView( buffer ),
+ offset = 2,
+ maxOffset = dataview.byteLength - 4,
+ headLength = offset,
+ ret = {},
+ markerBytes, markerLength, parsers, i;
+
+ if ( dataview.getUint16( 0 ) === 0xffd8 ) {
+
+ while ( offset < maxOffset ) {
+ markerBytes = dataview.getUint16( offset );
+
+ if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
+ markerBytes === 0xfffe ) {
+
+ markerLength = dataview.getUint16( offset + 2 ) + 2;
+
+ if ( offset + markerLength > dataview.byteLength ) {
+ break;
+ }
+
+ parsers = api.parsers[ markerBytes ];
+
+ if ( !noParse && parsers ) {
+ for ( i = 0; i < parsers.length; i += 1 ) {
+ parsers[ i ].call( api, dataview, offset,
+ markerLength, ret );
+ }
+ }
+
+ offset += markerLength;
+ headLength = offset;
+ } else {
+ break;
+ }
+ }
+
+ if ( headLength > 6 ) {
+ if ( buffer.slice ) {
+ ret.imageHead = buffer.slice( 2, headLength );
+ } else {
+ // Workaround for IE10, which does not yet
+ // support ArrayBuffer.slice:
+ ret.imageHead = new Uint8Array( buffer )
+ .subarray( 2, headLength );
+ }
+ }
+ }
+
+ return ret;
+ },
+
+ updateImageHead: function( buffer, head ) {
+ var data = this._parse( buffer, true ),
+ buf1, buf2, bodyoffset;
+
+
+ bodyoffset = 2;
+ if ( data.imageHead ) {
+ bodyoffset = 2 + data.imageHead.byteLength;
+ }
+
+ if ( buffer.slice ) {
+ buf2 = buffer.slice( bodyoffset );
+ } else {
+ buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
+ }
+
+ buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
+
+ buf1[ 0 ] = 0xFF;
+ buf1[ 1 ] = 0xD8;
+ buf1.set( new Uint8Array( head ), 2 );
+ buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
+
+ return buf1.buffer;
+ }
+ };
+
+ Util.parseMeta = function() {
+ return api.parse.apply( api, arguments );
+ };
+
+ Util.updateImageHead = function() {
+ return api.updateImageHead.apply( api, arguments );
+ };
+
+ return api;
});
/**
- * @fileOverview FilePaste
+ * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
+ * 暂时项目中只用了orientation.
+ *
+ * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
+ * @fileOverview EXIF解析
*/
- define('runtime/html5/dnd',[
+
+ // Sample
+ // ====================================
+ // Make : Apple
+ // Model : iPhone 4S
+ // Orientation : 1
+ // XResolution : 72 [72/1]
+ // YResolution : 72 [72/1]
+ // ResolutionUnit : 2
+ // Software : QuickTime 7.7.1
+ // DateTime : 2013:09:01 22:53:55
+ // ExifIFDPointer : 190
+ // ExposureTime : 0.058823529411764705 [1/17]
+ // FNumber : 2.4 [12/5]
+ // ExposureProgram : Normal program
+ // ISOSpeedRatings : 800
+ // ExifVersion : 0220
+ // DateTimeOriginal : 2013:09:01 22:52:51
+ // DateTimeDigitized : 2013:09:01 22:52:51
+ // ComponentsConfiguration : YCbCr
+ // ShutterSpeedValue : 4.058893515764426
+ // ApertureValue : 2.5260688216892597 [4845/1918]
+ // BrightnessValue : -0.3126686601998395
+ // MeteringMode : Pattern
+ // Flash : Flash did not fire, compulsory flash mode
+ // FocalLength : 4.28 [107/25]
+ // SubjectArea : [4 values]
+ // FlashpixVersion : 0100
+ // ColorSpace : 1
+ // PixelXDimension : 2448
+ // PixelYDimension : 3264
+ // SensingMethod : One-chip color area sensor
+ // ExposureMode : 0
+ // WhiteBalance : Auto white balance
+ // FocalLengthIn35mmFilm : 35
+ // SceneCaptureType : Standard
+ define('runtime/html5/imagemeta/exif',[
+ 'base',
+ 'runtime/html5/imagemeta'
+ ], function( Base, ImageMeta ) {
+
+ var EXIF = {};
+
+ EXIF.ExifMap = function() {
+ return this;
+ };
+
+ EXIF.ExifMap.prototype.map = {
+ 'Orientation': 0x0112
+ };
+
+ EXIF.ExifMap.prototype.get = function( id ) {
+ return this[ id ] || this[ this.map[ id ] ];
+ };
+
+ EXIF.exifTagTypes = {
+ // byte, 8-bit unsigned int:
+ 1: {
+ getValue: function( dataView, dataOffset ) {
+ return dataView.getUint8( dataOffset );
+ },
+ size: 1
+ },
+
+ // ascii, 8-bit byte:
+ 2: {
+ getValue: function( dataView, dataOffset ) {
+ return String.fromCharCode( dataView.getUint8( dataOffset ) );
+ },
+ size: 1,
+ ascii: true
+ },
+
+ // short, 16 bit int:
+ 3: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint16( dataOffset, littleEndian );
+ },
+ size: 2
+ },
+
+ // long, 32 bit int:
+ 4: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // rational = two long values,
+ // first is numerator, second is denominator:
+ 5: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian ) /
+ dataView.getUint32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ },
+
+ // slong, 32 bit signed int:
+ 9: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // srational, two slongs, first is numerator, second is denominator:
+ 10: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian ) /
+ dataView.getInt32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ }
+ };
+
+ // undefined, 8-bit byte, value depending on field:
+ EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
+
+ EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
+ littleEndian ) {
+
+ var tagType = EXIF.exifTagTypes[ type ],
+ tagSize, dataOffset, values, i, str, c;
+
+ if ( !tagType ) {
+ Base.log('Invalid Exif data: Invalid tag type.');
+ return;
+ }
+
+ tagSize = tagType.size * length;
+
+ // Determine if the value is contained in the dataOffset bytes,
+ // or if the value at the dataOffset is a pointer to the actual data:
+ dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
+ littleEndian ) : (offset + 8);
+
+ if ( dataOffset + tagSize > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid data offset.');
+ return;
+ }
+
+ if ( length === 1 ) {
+ return tagType.getValue( dataView, dataOffset, littleEndian );
+ }
+
+ values = [];
+
+ for ( i = 0; i < length; i += 1 ) {
+ values[ i ] = tagType.getValue( dataView,
+ dataOffset + i * tagType.size, littleEndian );
+ }
+
+ if ( tagType.ascii ) {
+ str = '';
+
+ // Concatenate the chars:
+ for ( i = 0; i < values.length; i += 1 ) {
+ c = values[ i ];
+
+ // Ignore the terminating NULL byte(s):
+ if ( c === '\u0000' ) {
+ break;
+ }
+ str += c;
+ }
+
+ return str;
+ }
+ return values;
+ };
+
+ EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
+ data ) {
+
+ var tag = dataView.getUint16( offset, littleEndian );
+ data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
+ dataView.getUint16( offset + 2, littleEndian ), // tag type
+ dataView.getUint32( offset + 4, littleEndian ), // tag length
+ littleEndian );
+ };
+
+ EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
+ littleEndian, data ) {
+
+ var tagsNumber, dirEndOffset, i;
+
+ if ( dirOffset + 6 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory offset.');
+ return;
+ }
+
+ tagsNumber = dataView.getUint16( dirOffset, littleEndian );
+ dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
+
+ if ( dirEndOffset + 4 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory size.');
+ return;
+ }
+
+ for ( i = 0; i < tagsNumber; i += 1 ) {
+ this.parseExifTag( dataView, tiffOffset,
+ dirOffset + 2 + 12 * i, // tag offset
+ littleEndian, data );
+ }
+
+ // Return the offset to the next directory:
+ return dataView.getUint32( dirEndOffset, littleEndian );
+ };
+
+ // EXIF.getExifThumbnail = function(dataView, offset, length) {
+ // var hexData,
+ // i,
+ // b;
+ // if (!length || offset + length > dataView.byteLength) {
+ // Base.log('Invalid Exif data: Invalid thumbnail data.');
+ // return;
+ // }
+ // hexData = [];
+ // for (i = 0; i < length; i += 1) {
+ // b = dataView.getUint8(offset + i);
+ // hexData.push((b < 16 ? '0' : '') + b.toString(16));
+ // }
+ // return 'data:image/jpeg,%' + hexData.join('%');
+ // };
+
+ EXIF.parseExifData = function( dataView, offset, length, data ) {
+
+ var tiffOffset = offset + 10,
+ littleEndian, dirOffset;
+
+ // Check for the ASCII code for "Exif" (0x45786966):
+ if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
+ // No Exif data, might be XMP data instead
+ return;
+ }
+ if ( tiffOffset + 8 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid segment size.');
+ return;
+ }
+
+ // Check for the two null bytes:
+ if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
+ Base.log('Invalid Exif data: Missing byte alignment offset.');
+ return;
+ }
+
+ // Check the byte alignment:
+ switch ( dataView.getUint16( tiffOffset ) ) {
+ case 0x4949:
+ littleEndian = true;
+ break;
+
+ case 0x4D4D:
+ littleEndian = false;
+ break;
+
+ default:
+ Base.log('Invalid Exif data: Invalid byte alignment marker.');
+ return;
+ }
+
+ // Check for the TIFF tag marker (0x002A):
+ if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
+ Base.log('Invalid Exif data: Missing TIFF marker.');
+ return;
+ }
+
+ // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
+ dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
+ // Create the exif object to store the tags:
+ data.exif = new EXIF.ExifMap();
+ // Parse the tags of the main image directory and retrieve the
+ // offset to the next directory, usually the thumbnail directory:
+ dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
+ tiffOffset + dirOffset, littleEndian, data );
+
+ // 尝试读取缩略图
+ // if ( dirOffset ) {
+ // thumbnailData = {exif: {}};
+ // dirOffset = EXIF.parseExifTags(
+ // dataView,
+ // tiffOffset,
+ // tiffOffset + dirOffset,
+ // littleEndian,
+ // thumbnailData
+ // );
+
+ // // Check for JPEG Thumbnail offset:
+ // if (thumbnailData.exif[0x0201]) {
+ // data.exif.Thumbnail = EXIF.getExifThumbnail(
+ // dataView,
+ // tiffOffset + thumbnailData.exif[0x0201],
+ // thumbnailData.exif[0x0202] // Thumbnail data length
+ // );
+ // }
+ // }
+ };
+
+ ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
+ return EXIF;
+ });
+ /**
+ * @fileOverview Image
+ */
+ define('runtime/html5/image',[
'base',
'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ 'runtime/html5/util'
+ ], function( Base, Html5Runtime, Util ) {
- var $ = Base.$,
- prefix = 'webuploader-dnd-';
+ var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
+
+ return Html5Runtime.register( 'Image', {
+
+ // flag: 标记是否被修改过。
+ modified: false,
- return Html5Runtime.register( 'DragAndDrop', {
init: function() {
- var elem = this.elem = this.options.container;
+ var me = this,
+ img = new Image();
- this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
- this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
- this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
- this.dropHandler = Base.bindFn( this._dropHandler, this );
- this.dndOver = false;
+ img.onload = function() {
- elem.on( 'dragenter', this.dragEnterHandler );
- elem.on( 'dragover', this.dragOverHandler );
- elem.on( 'dragleave', this.dragLeaveHandler );
- elem.on( 'drop', this.dropHandler );
+ me._info = {
+ type: me.type,
+ width: this.width,
+ height: this.height
+ };
- if ( this.options.disableGlobalDnd ) {
- $( document ).on( 'dragover', this.dragOverHandler );
- $( document ).on( 'drop', this.dropHandler );
- }
+ //debugger;
+
+ // 读取meta信息。
+ if ( !me._metas && 'image/jpeg' === me.type ) {
+ Util.parseMeta( me._blob, function( error, ret ) {
+ me._metas = ret;
+ me.owner.trigger('load');
+ });
+ } else {
+ me.owner.trigger('load');
+ }
+ };
+
+ img.onerror = function() {
+ me.owner.trigger('error');
+ };
+
+ me._img = img;
},
- _dragEnterHandler: function( e ) {
+ loadFromBlob: function( blob ) {
var me = this,
- denied = me._denied || false,
- items;
+ img = me._img;
- e = e.originalEvent || e;
+ me._blob = blob;
+ me.type = blob.type;
+ img.src = Util.createObjectURL( blob.getSource() );
+ me.owner.once( 'load', function() {
+ Util.revokeObjectURL( img.src );
+ });
+ },
- if ( !me.dndOver ) {
- me.dndOver = true;
+ resize: function( width, height ) {
+ var canvas = this._canvas ||
+ (this._canvas = document.createElement('canvas'));
- // 注意只有 chrome 支持。
- items = e.dataTransfer.items;
+ this._resize( this._img, canvas, width, height );
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'resize' );
+ },
- if ( items && items.length ) {
- me._denied = denied = !me.trigger( 'accept', items );
+ crop: function( x, y, w, h, s ) {
+ var cvs = this._canvas ||
+ (this._canvas = document.createElement('canvas')),
+ opts = this.options,
+ img = this._img,
+ iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ orientation = this.getOrientation();
+
+ s = s || 1;
+
+ // todo 解决 orientation 的问题。
+ // values that require 90 degree rotation
+ // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // switch ( orientation ) {
+ // case 6:
+ // tmp = x;
+ // x = y;
+ // y = iw * s - tmp - w;
+ // console.log(ih * s, tmp, w)
+ // break;
+ // }
+
+ // (w ^= h, h ^= w, w ^= h);
+ // }
+
+ cvs.width = w;
+ cvs.height = h;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+ this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
+
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'crop' );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this._blob,
+ opts = this.options,
+ canvas;
+
+ type = type || this.type;
+
+ // blob需要重新生成。
+ if ( this.modified || this.type !== type ) {
+ canvas = this._canvas;
+
+ if ( type === 'image/jpeg' ) {
+
+ blob = Util.canvasToDataUrl( canvas, type, opts.quality );
+
+ if ( opts.preserveHeaders && this._metas &&
+ this._metas.imageHead ) {
+
+ blob = Util.dataURL2ArrayBuffer( blob );
+ blob = Util.updateImageHead( blob,
+ this._metas.imageHead );
+ blob = Util.arrayBufferToBlob( blob, type );
+ return blob;
+ }
+ } else {
+ blob = Util.canvasToDataUrl( canvas, type );
}
- me.elem.addClass( prefix + 'over' );
- me.elem[ denied ? 'addClass' :
- 'removeClass' ]( prefix + 'denied' );
+ blob = Util.dataURL2Blob( blob );
}
- e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+ return blob;
+ },
- return false;
+ getAsDataUrl: function( type ) {
+ var opts = this.options;
+
+ type = type || this.type;
+
+ if ( type === 'image/jpeg' ) {
+ return Util.canvasToDataUrl( this._canvas, type, opts.quality );
+ } else {
+ return this._canvas.toDataURL( type );
+ }
},
- _dragOverHandler: function( e ) {
- // 只处理框内的。
- var parentElem = this.elem.parent().get( 0 );
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
+ getOrientation: function() {
+ return this._metas && this._metas.exif &&
+ this._metas.exif.get('Orientation') || 1;
+ },
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
}
- clearTimeout( this._leaveTimer );
- this._dragEnterHandler.call( this, e );
+ // getter
+ return this._info;
+ },
- return false;
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._metas = val;
+ return this;
+ }
+
+ // getter
+ return this._metas;
},
- _dragLeaveHandler: function() {
- var me = this,
- handler;
+ destroy: function() {
+ var canvas = this._canvas;
+ this._img.onload = null;
- handler = function() {
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
- };
+ if ( canvas ) {
+ canvas.getContext('2d')
+ .clearRect( 0, 0, canvas.width, canvas.height );
+ canvas.width = canvas.height = 0;
+ this._canvas = null;
+ }
- clearTimeout( me._leaveTimer );
- me._leaveTimer = setTimeout( handler, 100 );
- return false;
+ // 释放内存。非常重要,否则释放不了image的内存。
+ this._img.src = BLANK;
+ this._img = this._blob = null;
},
- _dropHandler: function( e ) {
- var me = this,
- ruid = me.getRuid(),
- parentElem = me.elem.parent().get( 0 ),
- dataTransfer, data;
+ _resize: function( img, cvs, width, height ) {
+ var opts = this.options,
+ naturalWidth = img.width,
+ naturalHeight = img.height,
+ orientation = this.getOrientation(),
+ scale, w, h, x, y;
- // 只处理框内的。
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
+ // values that require 90 degree rotation
+ if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // 交换width, height的值。
+ width ^= height;
+ height ^= width;
+ width ^= height;
}
- e = e.originalEvent || e;
- dataTransfer = e.dataTransfer;
+ scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
+ height / naturalHeight );
- // 如果是页面内拖拽,还不能处理,不阻止事件。
- // 此处 ie11 下会报参数错误,
- try {
- data = dataTransfer.getData('text/html');
- } catch( err ) {
- }
+ // 不允许放大。
+ opts.allowMagnify || (scale = Math.min( 1, scale ));
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over' );
+ w = naturalWidth * scale;
+ h = naturalHeight * scale;
- if ( !dataTransfer || data ) {
- return;
+ if ( opts.crop ) {
+ cvs.width = width;
+ cvs.height = height;
+ } else {
+ cvs.width = w;
+ cvs.height = h;
}
- me._getTansferFiles( dataTransfer, function( results ) {
- me.trigger( 'drop', $.map( results, function( file ) {
- return new File( ruid, file );
- }) );
- });
+ x = (cvs.width - w) / 2;
+ y = (cvs.height - h) / 2;
- return false;
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+
+ this._renderImageToCanvas( cvs, img, x, y, w, h );
},
- // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
- _getTansferFiles: function( dataTransfer, callback ) {
- var results = [],
- promises = [],
- items, files, file, item, i, len, canAccessFolder;
+ _rotate2Orientaion: function( canvas, orientation ) {
+ var width = canvas.width,
+ height = canvas.height,
+ ctx = canvas.getContext('2d');
- items = dataTransfer.items;
- files = dataTransfer.files;
+ switch ( orientation ) {
+ case 5:
+ case 6:
+ case 7:
+ case 8:
+ canvas.width = height;
+ canvas.height = width;
+ break;
+ }
- canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+ switch ( orientation ) {
+ case 2: // horizontal flip
+ ctx.translate( width, 0 );
+ ctx.scale( -1, 1 );
+ break;
- for ( i = 0, len = files.length; i < len; i++ ) {
- file = files[ i ];
- item = items && items[ i ];
+ case 3: // 180 rotate left
+ ctx.translate( width, height );
+ ctx.rotate( Math.PI );
+ break;
- if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+ case 4: // vertical flip
+ ctx.translate( 0, height );
+ ctx.scale( 1, -1 );
+ break;
- promises.push( this._traverseDirectoryTree(
- item.webkitGetAsEntry(), results ) );
- } else {
- results.push( file );
- }
- }
+ case 5: // vertical flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.scale( 1, -1 );
+ break;
- Base.when.apply( Base, promises ).done(function() {
+ case 6: // 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( 0, -height );
+ break;
- if ( !results.length ) {
- return;
- }
+ case 7: // horizontal flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( width, -height );
+ ctx.scale( -1, 1 );
+ break;
- callback( results );
- });
+ case 8: // 90 rotate left
+ ctx.rotate( -0.5 * Math.PI );
+ ctx.translate( -width, 0 );
+ break;
+ }
},
- _traverseDirectoryTree: function( entry, results ) {
- var deferred = Base.Deferred(),
- me = this;
-
- if ( entry.isFile ) {
- entry.file(function( file ) {
- results.push( file );
- deferred.resolve();
- });
- } else if ( entry.isDirectory ) {
- entry.createReader().readEntries(function( entries ) {
- var len = entries.length,
- promises = [],
- arr = [], // 为了保证顺序。
- i;
+ // https://github.com/stomita/ios-imagefile-megapixel/
+ // blob/master/src/megapix-image.js
+ _renderImageToCanvas: (function() {
- for ( i = 0; i < len; i++ ) {
- promises.push( me._traverseDirectoryTree(
- entries[ i ], arr ) );
- }
+ // 如果不是ios, 不需要这么复杂!
+ if ( !Base.os.ios ) {
+ return function( canvas ) {
+ var args = Base.slice( arguments, 1 ),
+ ctx = canvas.getContext('2d');
- Base.when.apply( Base, promises ).then(function() {
- results.push.apply( results, arr );
- deferred.resolve();
- }, deferred.reject );
- });
+ ctx.drawImage.apply( ctx, args );
+ };
}
- return deferred.promise();
- },
+ /**
+ * Detecting vertical squash in loaded image.
+ * Fixes a bug which squash image vertically while drawing into
+ * canvas for some images.
+ */
+ function detectVerticalSquash( img, iw, ih ) {
+ var canvas = document.createElement('canvas'),
+ ctx = canvas.getContext('2d'),
+ sy = 0,
+ ey = ih,
+ py = ih,
+ data, alpha, ratio;
- destroy: function() {
- var elem = this.elem;
- // 还没 init 就调用 destroy
- if (!elem) {
- return;
- }
+ canvas.width = 1;
+ canvas.height = ih;
+ ctx.drawImage( img, 0, 0 );
+ data = ctx.getImageData( 0, 0, 1, ih ).data;
- elem.off( 'dragenter', this.dragEnterHandler );
- elem.off( 'dragover', this.dragOverHandler );
- elem.off( 'dragleave', this.dragLeaveHandler );
- elem.off( 'drop', this.dropHandler );
+ // search image edge pixel position in case
+ // it is squashed vertically.
+ while ( py > sy ) {
+ alpha = data[ (py - 1) * 4 + 3 ];
- if ( this.options.disableGlobalDnd ) {
- $( document ).off( 'dragover', this.dragOverHandler );
- $( document ).off( 'drop', this.dropHandler );
+ if ( alpha === 0 ) {
+ ey = py;
+ } else {
+ sy = py;
+ }
+
+ py = (ey + sy) >> 1;
+ }
+
+ ratio = (py / ih);
+ return (ratio === 0) ? 1 : ratio;
}
- }
- });
- });
-
- /**
- * @fileOverview FilePaste
- */
- define('runtime/html5/filepaste',[
- 'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
- return Html5Runtime.register( 'FilePaste', {
- init: function() {
- var opts = this.options,
- elem = this.elem = opts.container,
- accept = '.*',
- arr, i, len, item;
+ // fix ie7 bug
+ // http://stackoverflow.com/questions/11929099/
+ // html5-canvas-drawimage-ratio-bug-ios
+ if ( Base.os.ios >= 7 ) {
+ return function( canvas, img, x, y, w, h ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ vertSquashRatio = detectVerticalSquash( img, iw, ih );
- // accetp的mimeTypes中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
+ return canvas.getContext('2d').drawImage( img, 0, 0,
+ iw * vertSquashRatio, ih * vertSquashRatio,
+ x, y, w, h );
+ };
+ }
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].mimeTypes;
- item && arr.push( item );
- }
+ /**
+ * Detect subsampling in loaded image.
+ * In iOS, larger images than 2M pixels may be
+ * subsampled in rendering.
+ */
+ function detectSubsampling( img ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ canvas, ctx;
- if ( arr.length ) {
- accept = arr.join(',');
- accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
+ // subsampling may happen overmegapixel image
+ if ( iw * ih > 1024 * 1024 ) {
+ canvas = document.createElement('canvas');
+ canvas.width = canvas.height = 1;
+ ctx = canvas.getContext('2d');
+ ctx.drawImage( img, -iw + 1, 0 );
+
+ // subsampled image becomes half smaller in rendering size.
+ // check alpha channel value to confirm image is covering
+ // edge pixel or not. if alpha value is 0
+ // image is not covering, hence subsampled.
+ return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
+ } else {
+ return false;
}
}
- this.accept = accept = new RegExp( accept, 'i' );
- this.hander = Base.bindFn( this._pasteHander, this );
- elem.on( 'paste', this.hander );
- },
-
- _pasteHander: function( e ) {
- var allowed = [],
- ruid = this.getRuid(),
- items, item, blob, i, len;
- e = e.originalEvent || e;
- items = e.clipboardData.items;
- for ( i = 0, len = items.length; i < len; i++ ) {
- item = items[ i ];
+ return function( canvas, img, x, y, width, height ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ ctx = canvas.getContext('2d'),
+ subsampled = detectSubsampling( img ),
+ doSquash = this.type === 'image/jpeg',
+ d = 1024,
+ sy = 0,
+ dy = 0,
+ tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
- if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
- continue;
+ if ( subsampled ) {
+ iw /= 2;
+ ih /= 2;
}
- allowed.push( new File( ruid, blob ) );
- }
+ ctx.save();
+ tmpCanvas = document.createElement('canvas');
+ tmpCanvas.width = tmpCanvas.height = d;
- if ( allowed.length ) {
- // 不阻止非文件粘贴(文字粘贴)的事件冒泡
- e.preventDefault();
- e.stopPropagation();
- this.trigger( 'paste', allowed );
- }
- },
+ tmpCtx = tmpCanvas.getContext('2d');
+ vertSquashRatio = doSquash ?
+ detectVerticalSquash( img, iw, ih ) : 1;
- destroy: function() {
- this.elem.off( 'paste', this.hander );
- }
+ dw = Math.ceil( d * width / iw );
+ dh = Math.ceil( d * height / ih / vertSquashRatio );
+
+ while ( sy < ih ) {
+ sx = 0;
+ dx = 0;
+ while ( sx < iw ) {
+ tmpCtx.clearRect( 0, 0, d, d );
+ tmpCtx.drawImage( img, -sx, -sy );
+ ctx.drawImage( tmpCanvas, 0, 0, d, d,
+ x + dx, y + dy, dw, dh );
+ sx += d;
+ dx += dw;
+ }
+ sy += d;
+ dy += dh;
+ }
+ ctx.restore();
+ tmpCanvas = tmpCtx = null;
+ };
+ })()
});
});
/**
- * @fileOverview FilePicker
+ * @fileOverview Transport
+ * @todo 支持chunked传输,优势:
+ * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
+ * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
*/
- define('runtime/html5/filepicker',[
+ define('runtime/html5/transport',[
'base',
'runtime/html5/runtime'
], function( Base, Html5Runtime ) {
- var $ = Base.$;
+ var noop = Base.noop,
+ $ = Base.$;
- return Html5Runtime.register( 'FilePicker', {
+ return Html5Runtime.register( 'Transport', {
init: function() {
- var container = this.getRuntime().getContainer(),
- me = this,
- owner = me.owner,
- opts = me.options,
- label = this.label = $( document.createElement('label') ),
- input = this.input = $( document.createElement('input') ),
- arr, i, len, mouseHandler, changeHandler;
+ this._status = 0;
+ this._response = null;
+ },
- input.attr( 'type', 'file' );
- input.attr( 'capture', 'camera');
- input.attr( 'name', opts.name );
- input.addClass('webuploader-element-invisible');
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ formData, binary, fr;
- label.on( 'click', function(e) {
- input.trigger('click');
- e.stopPropagation();
- owner.trigger('dialogopen');
- });
+ if ( opts.sendAsBinary ) {
+ server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData )) : '';
- label.css({
- opacity: 0,
- width: '100%',
- height: '100%',
- display: 'block',
- cursor: 'pointer',
- background: '#ffffff'
- });
+ binary = blob.getSource();
+ } else {
+ formData = new FormData();
+ $.each( owner._formData, function( k, v ) {
+ formData.append( k, v );
+ });
- if ( opts.multiple ) {
- input.attr( 'multiple', 'multiple' );
+ formData.append( opts.fileVal, blob.getSource(),
+ opts.filename || owner._formData.name || '' );
}
- // @todo Firefox不支持单独指定后缀
- if ( opts.accept && opts.accept.length > 0 ) {
- arr = [];
+ if ( opts.withCredentials && 'withCredentials' in xhr ) {
+ xhr.open( opts.method, server, true );
+ xhr.withCredentials = true;
+ } else {
+ xhr.open( opts.method, server );
+ }
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- arr.push( opts.accept[ i ].mimeTypes );
+ this._setRequestHeader( xhr, opts.headers );
+
+ if ( binary ) {
+ // 强制设置成 content-type 为文件流。
+ xhr.overrideMimeType &&
+ xhr.overrideMimeType('application/octet-stream');
+
+ // android直接发送blob会导致服务端接收到的是空文件。
+ // bug详情。
+ // https://code.google.com/p/android/issues/detail?id=39882
+ // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
+ if ( Base.os.android ) {
+ fr = new FileReader();
+
+ fr.onload = function() {
+ xhr.send( this.result );
+ fr = fr.onload = null;
+ };
+
+ fr.readAsArrayBuffer( binary );
+ } else {
+ xhr.send( binary );
}
+ } else {
+ xhr.send( formData );
+ }
+ },
- input.attr( 'accept', arr.join(',') );
+ getResponse: function() {
+ return this._response;
+ },
+
+ getResponseAsJson: function() {
+ return this._parseJson( this._response );
+ },
+
+ getResponseHeaders: function() {
+ return this._headers;
+ },
+
+ getStatus: function() {
+ return this._status;
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ xhr.abort();
+
+ this._xhr = xhr = null;
}
+ },
- container.append( input );
- container.append( label );
+ destroy: function() {
+ this.abort();
+ },
- mouseHandler = function( e ) {
- owner.trigger( e.type );
+ _parseHeader: function(raw) {
+ var ret = {};
+
+ raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
+ ret[key.trim()] = value.trim();
+ });
+
+ return ret;
+ },
+
+ _initAjax: function() {
+ var me = this,
+ xhr = new XMLHttpRequest(),
+ opts = this.options;
+
+ if ( opts.withCredentials && !('withCredentials' in xhr) &&
+ typeof XDomainRequest !== 'undefined' ) {
+ xhr = new XDomainRequest();
+ }
+
+ xhr.upload.onprogress = function( e ) {
+ var percentage = 0;
+
+ if ( e.lengthComputable ) {
+ percentage = e.loaded / e.total;
+ }
+
+ return me.trigger( 'progress', percentage );
};
- changeHandler = function( e ) {
- var clone;
+ xhr.onreadystatechange = function() {
- // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
- if (e.target.files.length === 0){
- return false;
+ if ( xhr.readyState !== 4 ) {
+ return;
}
- // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
- me.files = e.target.files;
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ me._xhr = null;
+ me._status = xhr.status;
+ var separator = '|', // 分隔符
+ // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
+ status = separator + xhr.status +
+ separator + xhr.statusText;
- // reset input
- clone = this.cloneNode( true );
- clone.value = null;
- this.parentNode.replaceChild( clone, this );
+ if ( xhr.status >= 200 && xhr.status < 300 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger('load');
+ } else if ( xhr.status >= 500 && xhr.status < 600 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger( 'error', 'server' + status );
+ }
- input.off();
- input = $( clone ).on( 'change', changeHandler )
- .on( 'mouseenter mouseleave', mouseHandler );
- owner.trigger('change');
- }
- input.on( 'change', changeHandler);
- label.on( 'mouseenter mouseleave', mouseHandler );
+ return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
+ };
+
+ me._xhr = xhr;
+ return xhr;
+ },
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.setRequestHeader( key, val );
+ });
},
+ _parseJson: function( str ) {
+ var json;
- getFiles: function() {
- return this.files;
- },
+ try {
+ json = JSON.parse( str );
+ } catch ( ex ) {
+ json = {};
+ }
- destroy: function() {
- this.input.off();
- this.label.off();
+ return json;
}
});
});
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/util',[
- 'base'
- ], function( Base ) {
-
- var urlAPI = window.createObjectURL && window ||
- window.URL && URL.revokeObjectURL && URL ||
- window.webkitURL,
- createObjectURL = Base.noop,
- revokeObjectURL = createObjectURL;
-
- if ( urlAPI ) {
-
- // 更安全的方式调用,比如android里面就能把context改成其他的对象。
- createObjectURL = function() {
- return urlAPI.createObjectURL.apply( urlAPI, arguments );
- };
-
- revokeObjectURL = function() {
- return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
- };
- }
-
- return {
- createObjectURL: createObjectURL,
- revokeObjectURL: revokeObjectURL,
-
- dataURL2Blob: function( dataURI ) {
- var byteStr, intArray, ab, i, mimetype, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- ab = new ArrayBuffer( byteStr.length );
- intArray = new Uint8Array( ab );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
-
- return this.arrayBufferToBlob( ab, mimetype );
- },
-
- dataURL2ArrayBuffer: function( dataURI ) {
- var byteStr, intArray, i, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- intArray = new Uint8Array( byteStr.length );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- return intArray.buffer;
- },
-
- arrayBufferToBlob: function( buffer, type ) {
- var builder = window.BlobBuilder || window.WebKitBlobBuilder,
- bb;
-
- // android不支持直接new Blob, 只能借助blobbuilder.
- if ( builder ) {
- bb = new builder();
- bb.append( buffer );
- return bb.getBlob( type );
- }
-
- return new Blob([ buffer ], type ? { type: type } : {} );
- },
-
- // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
- // 你得到的结果是png.
- canvasToDataUrl: function( canvas, type, quality ) {
- return canvas.toDataURL( type, quality / 100 );
- },
-
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- parseMeta: function( blob, callback ) {
- callback( false, {});
- },
-
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- updateImageHead: function( data ) {
- return data;
- }
- };
- });
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/imagemeta',[
- 'runtime/html5/util'
- ], function( Util ) {
-
- var api;
-
- api = {
- parsers: {
- 0xffe1: []
- },
-
- maxMetaDataSize: 262144,
-
- parse: function( blob, cb ) {
- var me = this,
- fr = new FileReader();
-
- fr.onload = function() {
- cb( false, me._parse( this.result ) );
- fr = fr.onload = fr.onerror = null;
- };
-
- fr.onerror = function( e ) {
- cb( e.message );
- fr = fr.onload = fr.onerror = null;
- };
-
- blob = blob.slice( 0, me.maxMetaDataSize );
- fr.readAsArrayBuffer( blob.getSource() );
- },
-
- _parse: function( buffer, noParse ) {
- if ( buffer.byteLength < 6 ) {
- return;
- }
-
- var dataview = new DataView( buffer ),
- offset = 2,
- maxOffset = dataview.byteLength - 4,
- headLength = offset,
- ret = {},
- markerBytes, markerLength, parsers, i;
-
- if ( dataview.getUint16( 0 ) === 0xffd8 ) {
-
- while ( offset < maxOffset ) {
- markerBytes = dataview.getUint16( offset );
-
- if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
- markerBytes === 0xfffe ) {
-
- markerLength = dataview.getUint16( offset + 2 ) + 2;
-
- if ( offset + markerLength > dataview.byteLength ) {
- break;
- }
-
- parsers = api.parsers[ markerBytes ];
-
- if ( !noParse && parsers ) {
- for ( i = 0; i < parsers.length; i += 1 ) {
- parsers[ i ].call( api, dataview, offset,
- markerLength, ret );
- }
- }
-
- offset += markerLength;
- headLength = offset;
- } else {
- break;
- }
- }
-
- if ( headLength > 6 ) {
- if ( buffer.slice ) {
- ret.imageHead = buffer.slice( 2, headLength );
- } else {
- // Workaround for IE10, which does not yet
- // support ArrayBuffer.slice:
- ret.imageHead = new Uint8Array( buffer )
- .subarray( 2, headLength );
- }
- }
- }
-
- return ret;
- },
-
- updateImageHead: function( buffer, head ) {
- var data = this._parse( buffer, true ),
- buf1, buf2, bodyoffset;
-
-
- bodyoffset = 2;
- if ( data.imageHead ) {
- bodyoffset = 2 + data.imageHead.byteLength;
- }
-
- if ( buffer.slice ) {
- buf2 = buffer.slice( bodyoffset );
- } else {
- buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
- }
-
- buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
-
- buf1[ 0 ] = 0xFF;
- buf1[ 1 ] = 0xD8;
- buf1.set( new Uint8Array( head ), 2 );
- buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
-
- return buf1.buffer;
- }
- };
-
- Util.parseMeta = function() {
- return api.parse.apply( api, arguments );
- };
-
- Util.updateImageHead = function() {
- return api.updateImageHead.apply( api, arguments );
- };
-
- return api;
- });
- /**
- * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
- * 暂时项目中只用了orientation.
- *
- * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
- * @fileOverview EXIF解析
- */
-
- // Sample
- // ====================================
- // Make : Apple
- // Model : iPhone 4S
- // Orientation : 1
- // XResolution : 72 [72/1]
- // YResolution : 72 [72/1]
- // ResolutionUnit : 2
- // Software : QuickTime 7.7.1
- // DateTime : 2013:09:01 22:53:55
- // ExifIFDPointer : 190
- // ExposureTime : 0.058823529411764705 [1/17]
- // FNumber : 2.4 [12/5]
- // ExposureProgram : Normal program
- // ISOSpeedRatings : 800
- // ExifVersion : 0220
- // DateTimeOriginal : 2013:09:01 22:52:51
- // DateTimeDigitized : 2013:09:01 22:52:51
- // ComponentsConfiguration : YCbCr
- // ShutterSpeedValue : 4.058893515764426
- // ApertureValue : 2.5260688216892597 [4845/1918]
- // BrightnessValue : -0.3126686601998395
- // MeteringMode : Pattern
- // Flash : Flash did not fire, compulsory flash mode
- // FocalLength : 4.28 [107/25]
- // SubjectArea : [4 values]
- // FlashpixVersion : 0100
- // ColorSpace : 1
- // PixelXDimension : 2448
- // PixelYDimension : 3264
- // SensingMethod : One-chip color area sensor
- // ExposureMode : 0
- // WhiteBalance : Auto white balance
- // FocalLengthIn35mmFilm : 35
- // SceneCaptureType : Standard
- define('runtime/html5/imagemeta/exif',[
- 'base',
- 'runtime/html5/imagemeta'
- ], function( Base, ImageMeta ) {
-
- var EXIF = {};
-
- EXIF.ExifMap = function() {
- return this;
- };
-
- EXIF.ExifMap.prototype.map = {
- 'Orientation': 0x0112
- };
-
- EXIF.ExifMap.prototype.get = function( id ) {
- return this[ id ] || this[ this.map[ id ] ];
- };
-
- EXIF.exifTagTypes = {
- // byte, 8-bit unsigned int:
- 1: {
- getValue: function( dataView, dataOffset ) {
- return dataView.getUint8( dataOffset );
- },
- size: 1
- },
-
- // ascii, 8-bit byte:
- 2: {
- getValue: function( dataView, dataOffset ) {
- return String.fromCharCode( dataView.getUint8( dataOffset ) );
- },
- size: 1,
- ascii: true
- },
-
- // short, 16 bit int:
- 3: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint16( dataOffset, littleEndian );
- },
- size: 2
- },
-
- // long, 32 bit int:
- 4: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // rational = two long values,
- // first is numerator, second is denominator:
- 5: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian ) /
- dataView.getUint32( dataOffset + 4, littleEndian );
- },
- size: 8
- },
-
- // slong, 32 bit signed int:
- 9: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // srational, two slongs, first is numerator, second is denominator:
- 10: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian ) /
- dataView.getInt32( dataOffset + 4, littleEndian );
- },
- size: 8
- }
- };
-
- // undefined, 8-bit byte, value depending on field:
- EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
-
- EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
- littleEndian ) {
-
- var tagType = EXIF.exifTagTypes[ type ],
- tagSize, dataOffset, values, i, str, c;
-
- if ( !tagType ) {
- Base.log('Invalid Exif data: Invalid tag type.');
- return;
- }
-
- tagSize = tagType.size * length;
-
- // Determine if the value is contained in the dataOffset bytes,
- // or if the value at the dataOffset is a pointer to the actual data:
- dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
- littleEndian ) : (offset + 8);
-
- if ( dataOffset + tagSize > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid data offset.');
- return;
- }
-
- if ( length === 1 ) {
- return tagType.getValue( dataView, dataOffset, littleEndian );
- }
-
- values = [];
-
- for ( i = 0; i < length; i += 1 ) {
- values[ i ] = tagType.getValue( dataView,
- dataOffset + i * tagType.size, littleEndian );
- }
-
- if ( tagType.ascii ) {
- str = '';
-
- // Concatenate the chars:
- for ( i = 0; i < values.length; i += 1 ) {
- c = values[ i ];
-
- // Ignore the terminating NULL byte(s):
- if ( c === '\u0000' ) {
- break;
- }
- str += c;
- }
-
- return str;
- }
- return values;
- };
-
- EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
- data ) {
-
- var tag = dataView.getUint16( offset, littleEndian );
- data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
- dataView.getUint16( offset + 2, littleEndian ), // tag type
- dataView.getUint32( offset + 4, littleEndian ), // tag length
- littleEndian );
- };
-
- EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
- littleEndian, data ) {
-
- var tagsNumber, dirEndOffset, i;
-
- if ( dirOffset + 6 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory offset.');
- return;
- }
-
- tagsNumber = dataView.getUint16( dirOffset, littleEndian );
- dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
-
- if ( dirEndOffset + 4 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory size.');
- return;
- }
-
- for ( i = 0; i < tagsNumber; i += 1 ) {
- this.parseExifTag( dataView, tiffOffset,
- dirOffset + 2 + 12 * i, // tag offset
- littleEndian, data );
- }
-
- // Return the offset to the next directory:
- return dataView.getUint32( dirEndOffset, littleEndian );
- };
-
- // EXIF.getExifThumbnail = function(dataView, offset, length) {
- // var hexData,
- // i,
- // b;
- // if (!length || offset + length > dataView.byteLength) {
- // Base.log('Invalid Exif data: Invalid thumbnail data.');
- // return;
- // }
- // hexData = [];
- // for (i = 0; i < length; i += 1) {
- // b = dataView.getUint8(offset + i);
- // hexData.push((b < 16 ? '0' : '') + b.toString(16));
- // }
- // return 'data:image/jpeg,%' + hexData.join('%');
- // };
-
- EXIF.parseExifData = function( dataView, offset, length, data ) {
-
- var tiffOffset = offset + 10,
- littleEndian, dirOffset;
-
- // Check for the ASCII code for "Exif" (0x45786966):
- if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
- // No Exif data, might be XMP data instead
- return;
- }
- if ( tiffOffset + 8 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid segment size.');
- return;
- }
-
- // Check for the two null bytes:
- if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
- Base.log('Invalid Exif data: Missing byte alignment offset.');
- return;
- }
-
- // Check the byte alignment:
- switch ( dataView.getUint16( tiffOffset ) ) {
- case 0x4949:
- littleEndian = true;
- break;
-
- case 0x4D4D:
- littleEndian = false;
- break;
-
- default:
- Base.log('Invalid Exif data: Invalid byte alignment marker.');
- return;
- }
-
- // Check for the TIFF tag marker (0x002A):
- if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
- Base.log('Invalid Exif data: Missing TIFF marker.');
- return;
- }
-
- // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
- dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
- // Create the exif object to store the tags:
- data.exif = new EXIF.ExifMap();
- // Parse the tags of the main image directory and retrieve the
- // offset to the next directory, usually the thumbnail directory:
- dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
- tiffOffset + dirOffset, littleEndian, data );
-
- // 尝试读取缩略图
- // if ( dirOffset ) {
- // thumbnailData = {exif: {}};
- // dirOffset = EXIF.parseExifTags(
- // dataView,
- // tiffOffset,
- // tiffOffset + dirOffset,
- // littleEndian,
- // thumbnailData
- // );
-
- // // Check for JPEG Thumbnail offset:
- // if (thumbnailData.exif[0x0201]) {
- // data.exif.Thumbnail = EXIF.getExifThumbnail(
- // dataView,
- // tiffOffset + thumbnailData.exif[0x0201],
- // thumbnailData.exif[0x0202] // Thumbnail data length
- // );
- // }
- // }
- };
-
- ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
- return EXIF;
- });
- /**
- * @fileOverview Image
- */
- define('runtime/html5/image',[
- 'base',
- 'runtime/html5/runtime',
- 'runtime/html5/util'
- ], function( Base, Html5Runtime, Util ) {
-
- var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
-
- return Html5Runtime.register( 'Image', {
-
- // flag: 标记是否被修改过。
- modified: false,
-
- init: function() {
- var me = this,
- img = new Image();
-
- img.onload = function() {
-
- me._info = {
- type: me.type,
- width: this.width,
- height: this.height
- };
-
- //debugger;
-
- // 读取meta信息。
- if ( !me._metas && 'image/jpeg' === me.type ) {
- Util.parseMeta( me._blob, function( error, ret ) {
- me._metas = ret;
- me.owner.trigger('load');
- });
- } else {
- me.owner.trigger('load');
- }
- };
-
- img.onerror = function() {
- me.owner.trigger('error');
- };
-
- me._img = img;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- img = me._img;
-
- me._blob = blob;
- me.type = blob.type;
- img.src = Util.createObjectURL( blob.getSource() );
- me.owner.once( 'load', function() {
- Util.revokeObjectURL( img.src );
- });
- },
-
- resize: function( width, height ) {
- var canvas = this._canvas ||
- (this._canvas = document.createElement('canvas'));
-
- this._resize( this._img, canvas, width, height );
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'resize' );
- },
-
- crop: function( x, y, w, h, s ) {
- var cvs = this._canvas ||
- (this._canvas = document.createElement('canvas')),
- opts = this.options,
- img = this._img,
- iw = img.naturalWidth,
- ih = img.naturalHeight,
- orientation = this.getOrientation();
-
- s = s || 1;
-
- // todo 解决 orientation 的问题。
- // values that require 90 degree rotation
- // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // switch ( orientation ) {
- // case 6:
- // tmp = x;
- // x = y;
- // y = iw * s - tmp - w;
- // console.log(ih * s, tmp, w)
- // break;
- // }
-
- // (w ^= h, h ^= w, w ^= h);
- // }
-
- cvs.width = w;
- cvs.height = h;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
- this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
-
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'crop' );
- },
-
- getAsBlob: function( type ) {
- var blob = this._blob,
- opts = this.options,
- canvas;
-
- type = type || this.type;
-
- // blob需要重新生成。
- if ( this.modified || this.type !== type ) {
- canvas = this._canvas;
-
- if ( type === 'image/jpeg' ) {
-
- blob = Util.canvasToDataUrl( canvas, type, opts.quality );
-
- if ( opts.preserveHeaders && this._metas &&
- this._metas.imageHead ) {
-
- blob = Util.dataURL2ArrayBuffer( blob );
- blob = Util.updateImageHead( blob,
- this._metas.imageHead );
- blob = Util.arrayBufferToBlob( blob, type );
- return blob;
- }
- } else {
- blob = Util.canvasToDataUrl( canvas, type );
- }
-
- blob = Util.dataURL2Blob( blob );
- }
-
- return blob;
- },
-
- getAsDataUrl: function( type ) {
- var opts = this.options;
-
- type = type || this.type;
-
- if ( type === 'image/jpeg' ) {
- return Util.canvasToDataUrl( this._canvas, type, opts.quality );
- } else {
- return this._canvas.toDataURL( type );
- }
- },
-
- getOrientation: function() {
- return this._metas && this._metas.exif &&
- this._metas.exif.get('Orientation') || 1;
- },
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._metas = val;
- return this;
- }
-
- // getter
- return this._metas;
- },
-
- destroy: function() {
- var canvas = this._canvas;
- this._img.onload = null;
-
- if ( canvas ) {
- canvas.getContext('2d')
- .clearRect( 0, 0, canvas.width, canvas.height );
- canvas.width = canvas.height = 0;
- this._canvas = null;
- }
-
- // 释放内存。非常重要,否则释放不了image的内存。
- this._img.src = BLANK;
- this._img = this._blob = null;
- },
-
- _resize: function( img, cvs, width, height ) {
- var opts = this.options,
- naturalWidth = img.width,
- naturalHeight = img.height,
- orientation = this.getOrientation(),
- scale, w, h, x, y;
-
- // values that require 90 degree rotation
- if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // 交换width, height的值。
- width ^= height;
- height ^= width;
- width ^= height;
- }
-
- scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
- height / naturalHeight );
-
- // 不允许放大。
- opts.allowMagnify || (scale = Math.min( 1, scale ));
-
- w = naturalWidth * scale;
- h = naturalHeight * scale;
-
- if ( opts.crop ) {
- cvs.width = width;
- cvs.height = height;
- } else {
- cvs.width = w;
- cvs.height = h;
- }
-
- x = (cvs.width - w) / 2;
- y = (cvs.height - h) / 2;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
-
- this._renderImageToCanvas( cvs, img, x, y, w, h );
- },
-
- _rotate2Orientaion: function( canvas, orientation ) {
- var width = canvas.width,
- height = canvas.height,
- ctx = canvas.getContext('2d');
-
- switch ( orientation ) {
- case 5:
- case 6:
- case 7:
- case 8:
- canvas.width = height;
- canvas.height = width;
- break;
- }
-
- switch ( orientation ) {
- case 2: // horizontal flip
- ctx.translate( width, 0 );
- ctx.scale( -1, 1 );
- break;
-
- case 3: // 180 rotate left
- ctx.translate( width, height );
- ctx.rotate( Math.PI );
- break;
-
- case 4: // vertical flip
- ctx.translate( 0, height );
- ctx.scale( 1, -1 );
- break;
-
- case 5: // vertical flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.scale( 1, -1 );
- break;
-
- case 6: // 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( 0, -height );
- break;
-
- case 7: // horizontal flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( width, -height );
- ctx.scale( -1, 1 );
- break;
-
- case 8: // 90 rotate left
- ctx.rotate( -0.5 * Math.PI );
- ctx.translate( -width, 0 );
- break;
- }
- },
-
- // https://github.com/stomita/ios-imagefile-megapixel/
- // blob/master/src/megapix-image.js
- _renderImageToCanvas: (function() {
-
- // 如果不是ios, 不需要这么复杂!
- if ( !Base.os.ios ) {
- return function( canvas ) {
- var args = Base.slice( arguments, 1 ),
- ctx = canvas.getContext('2d');
-
- ctx.drawImage.apply( ctx, args );
- };
- }
-
- /**
- * Detecting vertical squash in loaded image.
- * Fixes a bug which squash image vertically while drawing into
- * canvas for some images.
- */
- function detectVerticalSquash( img, iw, ih ) {
- var canvas = document.createElement('canvas'),
- ctx = canvas.getContext('2d'),
- sy = 0,
- ey = ih,
- py = ih,
- data, alpha, ratio;
-
-
- canvas.width = 1;
- canvas.height = ih;
- ctx.drawImage( img, 0, 0 );
- data = ctx.getImageData( 0, 0, 1, ih ).data;
-
- // search image edge pixel position in case
- // it is squashed vertically.
- while ( py > sy ) {
- alpha = data[ (py - 1) * 4 + 3 ];
-
- if ( alpha === 0 ) {
- ey = py;
- } else {
- sy = py;
- }
-
- py = (ey + sy) >> 1;
- }
-
- ratio = (py / ih);
- return (ratio === 0) ? 1 : ratio;
- }
-
- // fix ie7 bug
- // http://stackoverflow.com/questions/11929099/
- // html5-canvas-drawimage-ratio-bug-ios
- if ( Base.os.ios >= 7 ) {
- return function( canvas, img, x, y, w, h ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- vertSquashRatio = detectVerticalSquash( img, iw, ih );
-
- return canvas.getContext('2d').drawImage( img, 0, 0,
- iw * vertSquashRatio, ih * vertSquashRatio,
- x, y, w, h );
- };
- }
-
- /**
- * Detect subsampling in loaded image.
- * In iOS, larger images than 2M pixels may be
- * subsampled in rendering.
- */
- function detectSubsampling( img ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- canvas, ctx;
-
- // subsampling may happen overmegapixel image
- if ( iw * ih > 1024 * 1024 ) {
- canvas = document.createElement('canvas');
- canvas.width = canvas.height = 1;
- ctx = canvas.getContext('2d');
- ctx.drawImage( img, -iw + 1, 0 );
-
- // subsampled image becomes half smaller in rendering size.
- // check alpha channel value to confirm image is covering
- // edge pixel or not. if alpha value is 0
- // image is not covering, hence subsampled.
- return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
- } else {
- return false;
- }
- }
-
-
- return function( canvas, img, x, y, width, height ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- ctx = canvas.getContext('2d'),
- subsampled = detectSubsampling( img ),
- doSquash = this.type === 'image/jpeg',
- d = 1024,
- sy = 0,
- dy = 0,
- tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
-
- if ( subsampled ) {
- iw /= 2;
- ih /= 2;
- }
-
- ctx.save();
- tmpCanvas = document.createElement('canvas');
- tmpCanvas.width = tmpCanvas.height = d;
-
- tmpCtx = tmpCanvas.getContext('2d');
- vertSquashRatio = doSquash ?
- detectVerticalSquash( img, iw, ih ) : 1;
-
- dw = Math.ceil( d * width / iw );
- dh = Math.ceil( d * height / ih / vertSquashRatio );
-
- while ( sy < ih ) {
- sx = 0;
- dx = 0;
- while ( sx < iw ) {
- tmpCtx.clearRect( 0, 0, d, d );
- tmpCtx.drawImage( img, -sx, -sy );
- ctx.drawImage( tmpCanvas, 0, 0, d, d,
- x + dx, y + dy, dw, dh );
- sx += d;
- dx += dw;
- }
- sy += d;
- dy += dh;
- }
- ctx.restore();
- tmpCanvas = tmpCtx = null;
- };
- })()
- });
- });
-
- /**
- * @fileOverview Transport
- * @todo 支持chunked传输,优势:
- * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
- * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
- */
- define('runtime/html5/transport',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
-
- var noop = Base.noop,
- $ = Base.$;
-
- return Html5Runtime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- formData, binary, fr;
-
- if ( opts.sendAsBinary ) {
- server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData )) : '';
-
- binary = blob.getSource();
- } else {
- formData = new FormData();
- $.each( owner._formData, function( k, v ) {
- formData.append( k, v );
- });
-
- formData.append( opts.fileVal, blob.getSource(),
- opts.filename || owner._formData.name || '' );
- }
-
- if ( opts.withCredentials && 'withCredentials' in xhr ) {
- xhr.open( opts.method, server, true );
- xhr.withCredentials = true;
- } else {
- xhr.open( opts.method, server );
- }
-
- this._setRequestHeader( xhr, opts.headers );
-
- if ( binary ) {
- // 强制设置成 content-type 为文件流。
- xhr.overrideMimeType &&
- xhr.overrideMimeType('application/octet-stream');
-
- // android直接发送blob会导致服务端接收到的是空文件。
- // bug详情。
- // https://code.google.com/p/android/issues/detail?id=39882
- // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
- if ( Base.os.android ) {
- fr = new FileReader();
-
- fr.onload = function() {
- xhr.send( this.result );
- fr = fr.onload = null;
- };
-
- fr.readAsArrayBuffer( binary );
- } else {
- xhr.send( binary );
- }
- } else {
- xhr.send( formData );
- }
- },
-
- getResponse: function() {
- return this._response;
- },
-
- getResponseAsJson: function() {
- return this._parseJson( this._response );
- },
-
- getResponseHeaders: function() {
- return this._headers;
- },
-
- getStatus: function() {
- return this._status;
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- xhr.abort();
-
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _parseHeader: function(raw) {
- var ret = {};
-
- raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
- ret[key.trim()] = value.trim();
- });
-
- return ret;
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new XMLHttpRequest(),
- opts = this.options;
-
- if ( opts.withCredentials && !('withCredentials' in xhr) &&
- typeof XDomainRequest !== 'undefined' ) {
- xhr = new XDomainRequest();
- }
-
- xhr.upload.onprogress = function( e ) {
- var percentage = 0;
-
- if ( e.lengthComputable ) {
- percentage = e.loaded / e.total;
- }
-
- return me.trigger( 'progress', percentage );
- };
-
- xhr.onreadystatechange = function() {
-
- if ( xhr.readyState !== 4 ) {
- return;
- }
-
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- me._xhr = null;
- me._status = xhr.status;
-
- var separator = '|', // 分隔符
- // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
- status = separator + xhr.status +
- separator + xhr.statusText;
-
- if ( xhr.status >= 200 && xhr.status < 300 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger('load');
- } else if ( xhr.status >= 500 && xhr.status < 600 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger( 'error', 'server' + status );
- }
-
-
- return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
- };
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.setRequestHeader( key, val );
- });
- },
-
- _parseJson: function( str ) {
- var json;
-
- try {
- json = JSON.parse( str );
- } catch ( ex ) {
- json = {};
- }
-
- return json;
- }
- });
- });
-
- /**
- * @fileOverview 只有html5实现的文件版本。
- */
- define('preset/html5only',[
- 'base',
-
- // widgets
- 'widgets/filednd',
- 'widgets/filepaste',
- 'widgets/filepicker',
- 'widgets/image',
- 'widgets/queue',
- 'widgets/runtime',
- 'widgets/upload',
- 'widgets/validator',
-
- // runtimes
- // html5
- 'runtime/html5/blob',
- 'runtime/html5/dnd',
- 'runtime/html5/filepaste',
- 'runtime/html5/filepicker',
- 'runtime/html5/imagemeta/exif',
- 'runtime/html5/image',
- 'runtime/html5/transport'
- ], function( Base ) {
- return Base;
+ /**
+ * @fileOverview 只有html5实现的文件版本。
+ */
+ define('preset/html5only',[
+ 'base',
+
+ // widgets
+ 'widgets/filednd',
+ 'widgets/filepaste',
+ 'widgets/filepicker',
+ 'widgets/image',
+ 'widgets/queue',
+ 'widgets/runtime',
+ 'widgets/upload',
+ 'widgets/validator',
+
+ // runtimes
+ // html5
+ 'runtime/html5/blob',
+ 'runtime/html5/dnd',
+ 'runtime/html5/filepaste',
+ 'runtime/html5/filepicker',
+ 'runtime/html5/imagemeta/exif',
+ 'runtime/html5/image',
+ 'runtime/html5/transport'
+ ], function( Base ) {
+ return Base;
});
define('webuploader',[
'preset/html5only'
], function( preset ) {
return preset;
- });
- return require('webuploader');
-});
+ });
+ return require('webuploader');
+});
diff --git a/dist/webuploader.html5nodepend.min.js b/dist/webuploader.html5nodepend.min.js
index 1affbe6f5..0bc647732 100644
--- a/dist/webuploader.html5nodepend.min.js
+++ b/dist/webuploader.html5nodepend.min.js
@@ -1,2 +1,2 @@
/* WebUploader 0.1.8-alpha */!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-builtin",[],function(){function b(a,b){var c;if(a){if("function"!=typeof a&&"number"==typeof a.length){for(c=0;cf;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},e.isWindow=function(a){return a&&a.window===a},e.isPlainObject=function(a){if("object"!==f(a)||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(b){return!1}return!0},e.isObject=function(a){return"object"===f(a)},e.trim=function(a){return a?a.trim():""},e.isFunction=function(a){return"function"===f(a)},h=null,e}),b("dollar",["dollar-builtin"],function(a){return a}),b("promise-builtin",["dollar"],function(a){function b(b){var c,d,e,f,g,h,i=[],j=!b&&[],k=function(a){for(h=a,c=!0,g=e||0,e=0,f=i.length,d=!0;i&&f>g;g++)i[g].apply(a[0],a[1]);d=!1,i&&(j?j.length&&k(j.shift()):i=[])},l={add:function(){if(i){var b=i.length;!function c(b){a.each(b,function(b,d){var e=a.type(d);"function"===e?i.push(d):d&&d.length&&"string"!==e&&c(d)})}(arguments),d?f=i.length:h&&(e=b,k(h))}return this},disable:function(){return i=j=h=void 0,this},lock:function(){return j=void 0,h||l.disable(),this},fireWith:function(a,b){return!i||c&&!j||(b=b||[],b=[a,b.slice?b.slice():b],d?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this}};return l}function c(d){var e=[["resolve","done",b(!0),"resolved"],["reject","fail",b(!0),"rejected"],["notify","progress",b()]],f="pending",g={state:function(){return f},always:function(){return h.done(arguments).fail(arguments),this},then:function(){var b=arguments;return c(function(c){a.each(e,function(d,e){var f=e[0],i=a.isFunction(b[d])&&b[d];h[e[1]](function(){var b;b=i&&i.apply(this,arguments),b&&a.isFunction(b.promise)?b.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===g?c.promise():this,i?[b]:arguments)})}),b=null}).promise()},promise:function(b){return null!=b?a.extend(b,g):g}},h={};return g.pipe=g.then,a.each(e,function(a,b){var c=b[2],d=b[3];g[b[1]]=c.add,d&&c.add(function(){f=d},e[1^a][2].disable,e[2][2].lock),h[b[0]]=function(){return h[b[0]+"With"](this===h?g:this,arguments),this},h[b[0]+"With"]=c.fireWith}),g.promise(h),d&&d.call(h,h),h}var d;return d={Deferred:c,isPromise:function(a){return a&&"function"==typeof a.then},when:function(b){var d,e,f,g=0,h=[].slice,i=h.call(arguments),j=i.length,k=1!==j||b&&a.isFunction(b.promise)?j:0,l=1===k?b:c(),m=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?h.call(arguments):e,c===d?l.notifyWith(b,c):--k||l.resolveWith(b,c)}};if(j>1)for(d=new Array(j),e=new Array(j),f=new Array(j);j>g;g++)i[g]&&a.isFunction(i[g].promise)?i[g].promise().done(m(g,f,i)).fail(l.reject).progress(m(g,e,d)):--k;return k||l.resolveWith(f,i),l.promise()}}}),b("promise",["promise-builtin"],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.8-alpha",$: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;++e1?(d.isPlainObject(b)&&d.isPlainObject(c[a])?d.extend(c[a],b):c[a]=b,void 0):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?("name"===a&&(g.name=c.name),void 0):(g[a.replace(/[A-Z]/g,"-$&").toLowerCase()]=a,void 0)})):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||c.lastModified&&new Date(c.lastModified).toLocaleString()||(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",style:"webuploader-pick"},b.inherits(c,{constructor:e,init:function(){var c=this,e=c.options,g=e.button,h=e.style;h&&g.addClass("webuploader-pick"),c.on("all",function(a){var b;switch(a){case"mouseenter":h&&g.addClass("webuploader-pick-hover");break;case"mouseleave":h&&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[0]&&b[0].offsetWidth||b.outerWidth()||b.width(),d=b[0]&&b[0].offsetHeight||b.outerHeight()||b.height(),e=b.offset();c&&d&&a.css({bottom:"auto",right:"auto",width:c+"px",height:d+"px"}).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.on("dialogopen",function(){e.owner.trigger("dialogOpen",j.button)}),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()}),d(i,a.source.size,function(){a._info&&i.info(a._info),a._meta&&i.meta(a._meta),i.loadFromBlob(a.source)}),void 0):(b(!0),void 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=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.sizeb;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],this._delFile(a),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)}))},_delFile:function(a){for(var b=this._queue.length-1;b>=0;b--)if(this._queue[b]==a){this._queue.splice(b,1);break}},_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):(b.owner.trigger("error","Q_TYPE_DENIED",a),void 0):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)}),a.length&&(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),b||f.request("start-upload"),void 0;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()},getResponseHeaders:function(){return this.exec("getResponseHeaders")},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,chunkRetryDelay:1e3,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?(b=b.id?b:c.request("get-file",b),b.getStatus()===h.INTERRUPT?(b.setStatus(h.QUEUED),f.each(c.pool,function(a,c){c.file===b&&(c.transport&&c.transport.send(),b.setStatus(h.PROGRESS))})):b.getStatus()!==h.PROGRESS&&b.setStatus(h.QUEUED)):f.each(c.request("get-files",[h.INITED]),function(){this.setStatus(h.QUEUED)}),c.runing)return c.owner.trigger("startUpload",b),a.nextTick(c.__tick);c.runing=!0;var d=[];b||f.each(c.pool,function(a,b){var e=b.file;if(e.getStatus()===h.INTERRUPT){if(c._trigged=!1,d.push(e),b.waiting)return;b.transport?b.transport.send():c._doSend(b)}}),f.each(d,function(){this.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,e){e.file===b&&(e.transport&&e.transport.abort(),c&&(d._putback(e),d._popBlock(e)))}),d.owner.trigger("stopUpload",b),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):(d.pool.length1&&~"http,abort,server".indexOf(a.replace(/-.*/,""))&&b.retried1&&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))},destroy:function(){clearTimeout(this.retryTimer)}})}),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 this.trigger("beforeFileQueuedCheckfileNumLimit",a,c)?(c>=d&&e&&(e=!1,this.trigger("error","Q_EXCEED_NUM_LIMIT",d,a),setTimeout(function(){e=!0},1)),c>=d?!1:!0):!1}),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("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 g.dndOver=!1,g.elem.removeClass(e+"over"),b&&!f?(g._getTansferFiles(b,function(a){g.trigger("drop",d.map(a,function(a){return new c(h,a)}))}),!1):void 0},_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,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("capture","camera"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.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;ei&&(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;g6&&(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 a.log("Invalid Exif data: Invalid tag type."),void 0;if(i=o.size*g,j=i>4?d+b.getUint32(e+8,h):e+8,j+i>b.byteLength)return a.log("Invalid Exif data: Invalid data offset."),void 0;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;lb.byteLength)return a.log("Invalid Exif data: Invalid directory offset."),void 0;if(g=b.getUint16(d,e),h=d+2+12*g,h+4>b.byteLength)return a.log("Invalid Exif data: Invalid directory size."),void 0;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 a.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==b.getUint16(d+8))return a.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(b.getUint16(i)){case 18761:g=!0;break;case 19789:g=!1;break;default:return a.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==b.getUint16(i+2,g))return a.log("Invalid Exif data: Missing TIFF marker."),void 0;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/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._metas=a,this):this._metas},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+=g.attachInfoToQuery!==!1?(/\?/.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)},getResponseHeaders:function(){return this._headers},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()},_parseHeader:function(a){var b={};return a&&a.replace(/^([^\:]+):(.*)$/gm,function(a,c,d){b[c.trim()]=d.trim()}),b},_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(){if(4===b.readyState){b.upload.onprogress=c,b.onreadystatechange=c,a._xhr=null,a._status=b.status;var d="|",e=d+b.status+d+b.statusText;return b.status>=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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("preset/html5only",["base","widgets/filednd","widgets/filepaste","widgets/filepicker","widgets/image","widgets/queue","widgets/runtime","widgets/upload","widgets/validator","runtime/html5/blob","runtime/html5/dnd","runtime/html5/filepaste","runtime/html5/filepicker","runtime/html5/imagemeta/exif","runtime/html5/image","runtime/html5/transport"],function(a){return a}),b("webuploader",["preset/html5only"],function(a){return a}),c("webuploader")});
\ No newline at end of file
+return b.setStatus(h.INTERRUPT),f.each(d.pool,function(a,e){e.file===b&&(e.transport&&e.transport.abort(),c&&(d._putback(e),d._popBlock(e)))}),d.owner.trigger("stopUpload",b),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):(d.pool.length1&&~"http,abort,server".indexOf(a.replace(/-.*/,""))&&b.retried1&&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))},destroy:function(){clearTimeout(this.retryTimer)}})}),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 this.trigger("beforeFileQueuedCheckfileNumLimit",a,c)?(c>=d&&e&&(e=!1,this.trigger("error","Q_EXCEED_NUM_LIMIT",d,a),setTimeout(function(){e=!0},1)),c>=d?!1:!0):!1}),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("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 g.dndOver=!1,g.elem.removeClass(e+"over"),b&&!f?(g._getTansferFiles(b,function(a){g.trigger("drop",d.map(a,function(a){return new c(h,a)}))}),!1):void 0},_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,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.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;ei&&(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;g6&&(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 a.log("Invalid Exif data: Invalid tag type."),void 0;if(i=o.size*g,j=i>4?d+b.getUint32(e+8,h):e+8,j+i>b.byteLength)return a.log("Invalid Exif data: Invalid data offset."),void 0;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;lb.byteLength)return a.log("Invalid Exif data: Invalid directory offset."),void 0;if(g=b.getUint16(d,e),h=d+2+12*g,h+4>b.byteLength)return a.log("Invalid Exif data: Invalid directory size."),void 0;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 a.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==b.getUint16(d+8))return a.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(b.getUint16(i)){case 18761:g=!0;break;case 19789:g=!1;break;default:return a.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==b.getUint16(i+2,g))return a.log("Invalid Exif data: Missing TIFF marker."),void 0;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/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._metas=a,this):this._metas},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+=g.attachInfoToQuery!==!1?(/\?/.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)},getResponseHeaders:function(){return this._headers},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()},_parseHeader:function(a){var b={};return a&&a.replace(/^([^\:]+):(.*)$/gm,function(a,c,d){b[c.trim()]=d.trim()}),b},_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(){if(4===b.readyState){b.upload.onprogress=c,b.onreadystatechange=c,a._xhr=null,a._status=b.status;var d="|",e=d+b.status+d+b.statusText;return b.status>=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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("preset/html5only",["base","widgets/filednd","widgets/filepaste","widgets/filepicker","widgets/image","widgets/queue","widgets/runtime","widgets/upload","widgets/validator","runtime/html5/blob","runtime/html5/dnd","runtime/html5/filepaste","runtime/html5/filepicker","runtime/html5/imagemeta/exif","runtime/html5/image","runtime/html5/transport"],function(a){return a}),b("webuploader",["preset/html5only"],function(a){return a}),c("webuploader")});
\ No newline at end of file
diff --git a/dist/webuploader.html5only.js b/dist/webuploader.html5only.js
index 51218dc04..b974494d7 100644
--- a/dist/webuploader.html5only.js
+++ b/dist/webuploader.html5only.js
@@ -1,6156 +1,6156 @@
-/*! WebUploader 0.1.8-alpha */
+/*! WebUploader 0.1.8-alpha */
-/**
- * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
- *
- * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
- */
-(function( root, factory ) {
- var modules = {},
-
- // 内部require, 简单不完全实现。
- // https://github.com/amdjs/amdjs-api/wiki/require
- _require = function( deps, callback ) {
- var args, len, i;
-
- // 如果deps不是数组,则直接返回指定module
- if ( typeof deps === 'string' ) {
- return getModule( deps );
- } else {
- args = [];
- for( len = deps.length, i = 0; i < len; i++ ) {
- args.push( getModule( deps[ i ] ) );
- }
-
- return callback.apply( null, args );
- }
- },
-
- // 内部define,暂时不支持不指定id.
- _define = function( id, deps, factory ) {
- if ( arguments.length === 2 ) {
- factory = deps;
- deps = null;
- }
-
- _require( deps || [], function() {
- setModule( id, factory, arguments );
- });
- },
-
- // 设置module, 兼容CommonJs写法。
- setModule = function( id, factory, args ) {
- var module = {
- exports: factory
- },
- returned;
-
- if ( typeof factory === 'function' ) {
- args.length || (args = [ _require, module.exports, module ]);
- returned = factory.apply( null, args );
- returned !== undefined && (module.exports = returned);
- }
-
- modules[ id ] = module.exports;
- },
-
- // 根据id获取module
- getModule = function( id ) {
- var module = modules[ id ] || root[ id ];
-
- if ( !module ) {
- throw new Error( '`' + id + '` is undefined' );
- }
-
- return module;
- },
-
- // 将所有modules,将路径ids装换成对象。
- exportsTo = function( obj ) {
- var key, host, parts, part, last, ucFirst;
-
- // make the first character upper case.
- ucFirst = function( str ) {
- return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
- };
-
- for ( key in modules ) {
- host = obj;
-
- if ( !modules.hasOwnProperty( key ) ) {
- continue;
- }
-
- parts = key.split('/');
- last = ucFirst( parts.pop() );
-
- while( (part = ucFirst( parts.shift() )) ) {
- host[ part ] = host[ part ] || {};
- host = host[ part ];
- }
-
- host[ last ] = modules[ key ];
- }
-
- return obj;
- },
-
- makeExport = function( dollar ) {
- root.__dollar = dollar;
-
- // exports every module.
- return exportsTo( factory( root, _define, _require ) );
- },
-
- origin;
-
- if ( typeof module === 'object' && typeof module.exports === 'object' ) {
-
- // For CommonJS and CommonJS-like environments where a proper window is present,
- module.exports = makeExport();
- } else if ( typeof define === 'function' && define.amd ) {
-
- // Allow using this built library as an AMD module
- // in another project. That other project will only
- // see this AMD call, not the internal modules in
- // the closure below.
- define([ 'jquery' ], makeExport );
- } else {
-
- // Browser globals case. Just assign the
- // result to a property on the global.
- origin = root.WebUploader;
- root.WebUploader = makeExport();
- root.WebUploader.noConflict = function() {
- root.WebUploader = origin;
- };
- }
-})( window, function( window, define, require ) {
-
+/**
+ * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
+ *
+ * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
+ */
+(function( root, factory ) {
+ var modules = {},
+
+ // 内部require, 简单不完全实现。
+ // https://github.com/amdjs/amdjs-api/wiki/require
+ _require = function( deps, callback ) {
+ var args, len, i;
+
+ // 如果deps不是数组,则直接返回指定module
+ if ( typeof deps === 'string' ) {
+ return getModule( deps );
+ } else {
+ args = [];
+ for( len = deps.length, i = 0; i < len; i++ ) {
+ args.push( getModule( deps[ i ] ) );
+ }
+
+ return callback.apply( null, args );
+ }
+ },
+
+ // 内部define,暂时不支持不指定id.
+ _define = function( id, deps, factory ) {
+ if ( arguments.length === 2 ) {
+ factory = deps;
+ deps = null;
+ }
+
+ _require( deps || [], function() {
+ setModule( id, factory, arguments );
+ });
+ },
+
+ // 设置module, 兼容CommonJs写法。
+ setModule = function( id, factory, args ) {
+ var module = {
+ exports: factory
+ },
+ returned;
+
+ if ( typeof factory === 'function' ) {
+ args.length || (args = [ _require, module.exports, module ]);
+ returned = factory.apply( null, args );
+ returned !== undefined && (module.exports = returned);
+ }
+
+ modules[ id ] = module.exports;
+ },
+
+ // 根据id获取module
+ getModule = function( id ) {
+ var module = modules[ id ] || root[ id ];
+
+ if ( !module ) {
+ throw new Error( '`' + id + '` is undefined' );
+ }
+
+ return module;
+ },
+
+ // 将所有modules,将路径ids装换成对象。
+ exportsTo = function( obj ) {
+ var key, host, parts, part, last, ucFirst;
+
+ // make the first character upper case.
+ ucFirst = function( str ) {
+ return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
+ };
+
+ for ( key in modules ) {
+ host = obj;
+
+ if ( !modules.hasOwnProperty( key ) ) {
+ continue;
+ }
+
+ parts = key.split('/');
+ last = ucFirst( parts.pop() );
+
+ while( (part = ucFirst( parts.shift() )) ) {
+ host[ part ] = host[ part ] || {};
+ host = host[ part ];
+ }
+
+ host[ last ] = modules[ key ];
+ }
+
+ return obj;
+ },
+
+ makeExport = function( dollar ) {
+ root.__dollar = dollar;
+
+ // exports every module.
+ return exportsTo( factory( root, _define, _require ) );
+ },
+
+ origin;
+
+ if ( typeof module === 'object' && typeof module.exports === 'object' ) {
+
+ // For CommonJS and CommonJS-like environments where a proper window is present,
+ module.exports = makeExport();
+ } else if ( typeof define === 'function' && define.amd ) {
+
+ // Allow using this built library as an AMD module
+ // in another project. That other project will only
+ // see this AMD call, not the internal modules in
+ // the closure below.
+ define([ 'jquery' ], makeExport );
+ } else {
+
+ // Browser globals case. Just assign the
+ // result to a property on the global.
+ origin = root.WebUploader;
+ root.WebUploader = makeExport();
+ root.WebUploader.noConflict = function() {
+ root.WebUploader = origin;
+ };
+ }
+})( window, function( window, define, require ) {
+
- /**
- * @fileOverview jQuery or Zepto
- * @require "jquery"
- * @require "zepto"
- */
- define('dollar-third',[],function() {
- var req = window.require;
- var $ = window.__dollar ||
- window.jQuery ||
- window.Zepto ||
- req('jquery') ||
- req('zepto');
-
- if ( !$ ) {
- throw new Error('jQuery or Zepto not found!');
- }
+ /**
+ * @fileOverview jQuery or Zepto
+ * @require "jquery"
+ * @require "zepto"
+ */
+ define('dollar-third',[],function() {
+ var req = window.require;
+ var $ = window.__dollar ||
+ window.jQuery ||
+ window.Zepto ||
+ req('jquery') ||
+ req('zepto');
+
+ if ( !$ ) {
+ throw new Error('jQuery or Zepto not found!');
+ }
+
+ return $;
+ });
- return $;
+ /**
+ * @fileOverview Dom 操作相关
+ */
+ define('dollar',[
+ 'dollar-third'
+ ], function( _ ) {
+ return _;
});
-
- /**
- * @fileOverview Dom 操作相关
- */
- define('dollar',[
- 'dollar-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 使用jQuery的Promise
+ */
+ define('promise-third',[
+ 'dollar'
+ ], function( $ ) {
+ return {
+ Deferred: $.Deferred,
+ when: $.when,
+
+ isPromise: function( anything ) {
+ return anything && typeof anything.then === 'function';
+ }
+ };
});
- /**
- * @fileOverview 使用jQuery的Promise
- */
- define('promise-third',[
- 'dollar'
- ], function( $ ) {
- return {
- Deferred: $.Deferred,
- when: $.when,
-
- isPromise: function( anything ) {
- return anything && typeof anything.then === 'function';
- }
- };
+ /**
+ * @fileOverview Promise/A+
+ */
+ define('promise',[
+ 'promise-third'
+ ], function( _ ) {
+ return _;
});
- /**
- * @fileOverview Promise/A+
- */
- define('promise',[
- 'promise-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 基础类方法。
+ */
+
+ /**
+ * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
+ *
+ * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
+ * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
+ *
+ * * module `base`:WebUploader.Base
+ * * module `file`: WebUploader.File
+ * * module `lib/dnd`: WebUploader.Lib.Dnd
+ * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
+ *
+ *
+ * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
+ * @module WebUploader
+ * @title WebUploader API文档
+ */
+ define('base',[
+ 'dollar',
+ 'promise'
+ ], function( $, promise ) {
+
+ var noop = function() {},
+ call = Function.call;
+
+ // http://jsperf.com/uncurrythis
+ // 反科里化
+ function uncurryThis( fn ) {
+ return function() {
+ return call.apply( fn, arguments );
+ };
+ }
+
+ function bindFn( fn, context ) {
+ return function() {
+ return fn.apply( context, arguments );
+ };
+ }
+
+ function createObject( proto ) {
+ var f;
+
+ if ( Object.create ) {
+ return Object.create( proto );
+ } else {
+ f = function() {};
+ f.prototype = proto;
+ return new f();
+ }
+ }
+
+
+ /**
+ * 基础类,提供一些简单常用的方法。
+ * @class Base
+ */
+ return {
+
+ /**
+ * @property {String} version 当前版本号。
+ */
+ version: '0.1.8-alpha',
+
+ /**
+ * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
+ */
+ $: $,
+
+ Deferred: promise.Deferred,
+
+ isPromise: promise.isPromise,
+
+ when: promise.when,
+
+ /**
+ * @description 简单的浏览器检查结果。
+ *
+ * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
+ * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
+ * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
+ * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
+ * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
+ * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
+ *
+ * @property {Object} [browser]
+ */
+ browser: (function( ua ) {
+ var ret = {},
+ webkit = ua.match( /WebKit\/([\d.]+)/ ),
+ chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
+ ua.match( /CriOS\/([\d.]+)/ ),
+
+ ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
+ ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
+ firefox = ua.match( /Firefox\/([\d.]+)/ ),
+ safari = ua.match( /Safari\/([\d.]+)/ ),
+ opera = ua.match( /OPR\/([\d.]+)/ );
+
+ webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
+ chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
+ ie && (ret.ie = parseFloat( ie[ 1 ] ));
+ firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
+ safari && (ret.safari = parseFloat( safari[ 1 ] ));
+ opera && (ret.opera = parseFloat( opera[ 1 ] ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * @description 操作系统检查结果。
+ *
+ * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
+ * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
+ * @property {Object} [os]
+ */
+ os: (function( ua ) {
+ var ret = {},
+
+ // osx = !!ua.match( /\(Macintosh\; Intel / ),
+ android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
+ ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
+
+ // osx && (ret.osx = true);
+ android && (ret.android = parseFloat( android[ 1 ] ));
+ ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * 实现类与类之间的继承。
+ * @method inherits
+ * @grammar Base.inherits( super ) => child
+ * @grammar Base.inherits( super, protos ) => child
+ * @grammar Base.inherits( super, protos, statics ) => child
+ * @param {Class} super 父类
+ * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
+ * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
+ * @param {Object} [statics] 静态属性或方法。
+ * @return {Class} 返回子类。
+ * @example
+ * function Person() {
+ * console.log( 'Super' );
+ * }
+ * Person.prototype.hello = function() {
+ * console.log( 'hello' );
+ * };
+ *
+ * var Manager = Base.inherits( Person, {
+ * world: function() {
+ * console.log( 'World' );
+ * }
+ * });
+ *
+ * // 因为没有指定构造器,父类的构造器将会执行。
+ * var instance = new Manager(); // => Super
+ *
+ * // 继承子父类的方法
+ * instance.hello(); // => hello
+ * instance.world(); // => World
+ *
+ * // 子类的__super__属性指向父类
+ * console.log( Manager.__super__ === Person ); // => true
+ */
+ inherits: function( Super, protos, staticProtos ) {
+ var child;
+
+ if ( typeof protos === 'function' ) {
+ child = protos;
+ protos = null;
+ } else if ( protos && protos.hasOwnProperty('constructor') ) {
+ child = protos.constructor;
+ } else {
+ child = function() {
+ return Super.apply( this, arguments );
+ };
+ }
+
+ // 复制静态方法
+ $.extend( true, child, Super, staticProtos || {} );
+
+ /* jshint camelcase: false */
+
+ // 让子类的__super__属性指向父类。
+ child.__super__ = Super.prototype;
+
+ // 构建原型,添加原型方法或属性。
+ // 暂时用Object.create实现。
+ child.prototype = createObject( Super.prototype );
+ protos && $.extend( true, child.prototype, protos );
+
+ return child;
+ },
+
+ /**
+ * 一个不做任何事情的方法。可以用来赋值给默认的callback.
+ * @method noop
+ */
+ noop: noop,
+
+ /**
+ * 返回一个新的方法,此方法将已指定的`context`来执行。
+ * @grammar Base.bindFn( fn, context ) => Function
+ * @method bindFn
+ * @example
+ * var doSomething = function() {
+ * console.log( this.name );
+ * },
+ * obj = {
+ * name: 'Object Name'
+ * },
+ * aliasFn = Base.bind( doSomething, obj );
+ *
+ * aliasFn(); // => Object Name
+ *
+ */
+ bindFn: bindFn,
+
+ /**
+ * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
+ * @grammar Base.log( args... ) => undefined
+ * @method log
+ */
+ log: (function() {
+ if ( window.console ) {
+ return bindFn( console.log, console );
+ }
+ return noop;
+ })(),
+
+ nextTick: (function() {
+
+ return function( cb ) {
+ setTimeout( cb, 1 );
+ };
+
+ // @bug 当浏览器不在当前窗口时就停了。
+ // var next = window.requestAnimationFrame ||
+ // window.webkitRequestAnimationFrame ||
+ // window.mozRequestAnimationFrame ||
+ // function( cb ) {
+ // window.setTimeout( cb, 1000 / 60 );
+ // };
+
+ // // fix: Uncaught TypeError: Illegal invocation
+ // return bindFn( next, window );
+ })(),
+
+ /**
+ * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
+ * 将用来将非数组对象转化成数组对象。
+ * @grammar Base.slice( target, start[, end] ) => Array
+ * @method slice
+ * @example
+ * function doSomthing() {
+ * var args = Base.slice( arguments, 1 );
+ * console.log( args );
+ * }
+ *
+ * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
+ */
+ slice: uncurryThis( [].slice ),
+
+ /**
+ * 生成唯一的ID
+ * @method guid
+ * @grammar Base.guid() => String
+ * @grammar Base.guid( prefx ) => String
+ */
+ guid: (function() {
+ var counter = 0;
+
+ return function( prefix ) {
+ var guid = (+new Date()).toString( 32 ),
+ i = 0;
+
+ for ( ; i < 5; i++ ) {
+ guid += Math.floor( Math.random() * 65535 ).toString( 32 );
+ }
+
+ return (prefix || 'wu_') + guid + (counter++).toString( 32 );
+ };
+ })(),
+
+ /**
+ * 格式化文件大小, 输出成带单位的字符串
+ * @method formatSize
+ * @grammar Base.formatSize( size ) => String
+ * @grammar Base.formatSize( size, pointLength ) => String
+ * @grammar Base.formatSize( size, pointLength, units ) => String
+ * @param {Number} size 文件大小
+ * @param {Number} [pointLength=2] 精确到的小数点数。
+ * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
+ * @example
+ * console.log( Base.formatSize( 100 ) ); // => 100B
+ * console.log( Base.formatSize( 1024 ) ); // => 1.00K
+ * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
+ * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
+ * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
+ * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
+ */
+ formatSize: function( size, pointLength, units ) {
+ var unit;
+
+ units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
+
+ while ( (unit = units.shift()) && size > 1024 ) {
+ size = size / 1024;
+ }
+
+ return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
+ unit;
+ }
+ };
});
- /**
- * @fileOverview 基础类方法。
- */
-
- /**
- * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
- *
- * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
- * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
- *
- * * module `base`:WebUploader.Base
- * * module `file`: WebUploader.File
- * * module `lib/dnd`: WebUploader.Lib.Dnd
- * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
- *
- *
- * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
- * @module WebUploader
- * @title WebUploader API文档
- */
- define('base',[
- 'dollar',
- 'promise'
- ], function( $, promise ) {
-
- var noop = function() {},
- call = Function.call;
-
- // http://jsperf.com/uncurrythis
- // 反科里化
- function uncurryThis( fn ) {
- return function() {
- return call.apply( fn, arguments );
- };
- }
-
- function bindFn( fn, context ) {
- return function() {
- return fn.apply( context, arguments );
- };
- }
-
- function createObject( proto ) {
- var f;
-
- if ( Object.create ) {
- return Object.create( proto );
- } else {
- f = function() {};
- f.prototype = proto;
- return new f();
- }
- }
-
-
- /**
- * 基础类,提供一些简单常用的方法。
- * @class Base
- */
- return {
-
- /**
- * @property {String} version 当前版本号。
- */
- version: '0.1.8-alpha',
-
- /**
- * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
- */
- $: $,
-
- Deferred: promise.Deferred,
-
- isPromise: promise.isPromise,
-
- when: promise.when,
-
- /**
- * @description 简单的浏览器检查结果。
- *
- * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
- * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
- * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
- * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
- * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
- * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
- *
- * @property {Object} [browser]
- */
- browser: (function( ua ) {
- var ret = {},
- webkit = ua.match( /WebKit\/([\d.]+)/ ),
- chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
- ua.match( /CriOS\/([\d.]+)/ ),
-
- ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
- ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
- firefox = ua.match( /Firefox\/([\d.]+)/ ),
- safari = ua.match( /Safari\/([\d.]+)/ ),
- opera = ua.match( /OPR\/([\d.]+)/ );
-
- webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
- chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
- ie && (ret.ie = parseFloat( ie[ 1 ] ));
- firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
- safari && (ret.safari = parseFloat( safari[ 1 ] ));
- opera && (ret.opera = parseFloat( opera[ 1 ] ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * @description 操作系统检查结果。
- *
- * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
- * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
- * @property {Object} [os]
- */
- os: (function( ua ) {
- var ret = {},
-
- // osx = !!ua.match( /\(Macintosh\; Intel / ),
- android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
- ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
-
- // osx && (ret.osx = true);
- android && (ret.android = parseFloat( android[ 1 ] ));
- ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * 实现类与类之间的继承。
- * @method inherits
- * @grammar Base.inherits( super ) => child
- * @grammar Base.inherits( super, protos ) => child
- * @grammar Base.inherits( super, protos, statics ) => child
- * @param {Class} super 父类
- * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
- * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
- * @param {Object} [statics] 静态属性或方法。
- * @return {Class} 返回子类。
- * @example
- * function Person() {
- * console.log( 'Super' );
- * }
- * Person.prototype.hello = function() {
- * console.log( 'hello' );
- * };
- *
- * var Manager = Base.inherits( Person, {
- * world: function() {
- * console.log( 'World' );
- * }
- * });
- *
- * // 因为没有指定构造器,父类的构造器将会执行。
- * var instance = new Manager(); // => Super
- *
- * // 继承子父类的方法
- * instance.hello(); // => hello
- * instance.world(); // => World
- *
- * // 子类的__super__属性指向父类
- * console.log( Manager.__super__ === Person ); // => true
- */
- inherits: function( Super, protos, staticProtos ) {
- var child;
-
- if ( typeof protos === 'function' ) {
- child = protos;
- protos = null;
- } else if ( protos && protos.hasOwnProperty('constructor') ) {
- child = protos.constructor;
- } else {
- child = function() {
- return Super.apply( this, arguments );
- };
- }
-
- // 复制静态方法
- $.extend( true, child, Super, staticProtos || {} );
-
- /* jshint camelcase: false */
-
- // 让子类的__super__属性指向父类。
- child.__super__ = Super.prototype;
-
- // 构建原型,添加原型方法或属性。
- // 暂时用Object.create实现。
- child.prototype = createObject( Super.prototype );
- protos && $.extend( true, child.prototype, protos );
-
- return child;
- },
-
- /**
- * 一个不做任何事情的方法。可以用来赋值给默认的callback.
- * @method noop
- */
- noop: noop,
-
- /**
- * 返回一个新的方法,此方法将已指定的`context`来执行。
- * @grammar Base.bindFn( fn, context ) => Function
- * @method bindFn
- * @example
- * var doSomething = function() {
- * console.log( this.name );
- * },
- * obj = {
- * name: 'Object Name'
- * },
- * aliasFn = Base.bind( doSomething, obj );
- *
- * aliasFn(); // => Object Name
- *
- */
- bindFn: bindFn,
-
- /**
- * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
- * @grammar Base.log( args... ) => undefined
- * @method log
- */
- log: (function() {
- if ( window.console ) {
- return bindFn( console.log, console );
- }
- return noop;
- })(),
-
- nextTick: (function() {
-
- return function( cb ) {
- setTimeout( cb, 1 );
- };
-
- // @bug 当浏览器不在当前窗口时就停了。
- // var next = window.requestAnimationFrame ||
- // window.webkitRequestAnimationFrame ||
- // window.mozRequestAnimationFrame ||
- // function( cb ) {
- // window.setTimeout( cb, 1000 / 60 );
- // };
-
- // // fix: Uncaught TypeError: Illegal invocation
- // return bindFn( next, window );
- })(),
-
- /**
- * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
- * 将用来将非数组对象转化成数组对象。
- * @grammar Base.slice( target, start[, end] ) => Array
- * @method slice
- * @example
- * function doSomthing() {
- * var args = Base.slice( arguments, 1 );
- * console.log( args );
- * }
- *
- * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
- */
- slice: uncurryThis( [].slice ),
-
- /**
- * 生成唯一的ID
- * @method guid
- * @grammar Base.guid() => String
- * @grammar Base.guid( prefx ) => String
- */
- guid: (function() {
- var counter = 0;
-
- return function( prefix ) {
- var guid = (+new Date()).toString( 32 ),
- i = 0;
-
- for ( ; i < 5; i++ ) {
- guid += Math.floor( Math.random() * 65535 ).toString( 32 );
- }
-
- return (prefix || 'wu_') + guid + (counter++).toString( 32 );
- };
- })(),
-
- /**
- * 格式化文件大小, 输出成带单位的字符串
- * @method formatSize
- * @grammar Base.formatSize( size ) => String
- * @grammar Base.formatSize( size, pointLength ) => String
- * @grammar Base.formatSize( size, pointLength, units ) => String
- * @param {Number} size 文件大小
- * @param {Number} [pointLength=2] 精确到的小数点数。
- * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
- * @example
- * console.log( Base.formatSize( 100 ) ); // => 100B
- * console.log( Base.formatSize( 1024 ) ); // => 1.00K
- * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
- * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
- * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
- * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
- */
- formatSize: function( size, pointLength, units ) {
- var unit;
-
- units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
-
- while ( (unit = units.shift()) && size > 1024 ) {
- size = size / 1024;
- }
-
- return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
- unit;
- }
- };
+ /**
+ * 事件处理类,可以独立使用,也可以扩展给对象使用。
+ * @fileOverview Mediator
+ */
+ define('mediator',[
+ 'base'
+ ], function( Base ) {
+ var $ = Base.$,
+ slice = [].slice,
+ separator = /\s+/,
+ protos;
+
+ // 根据条件过滤出事件handlers.
+ function findHandlers( arr, name, callback, context ) {
+ return $.grep( arr, function( handler ) {
+ return handler &&
+ (!name || handler.e === name) &&
+ (!callback || handler.cb === callback ||
+ handler.cb._cb === callback) &&
+ (!context || handler.ctx === context);
+ });
+ }
+
+ function eachEvent( events, callback, iterator ) {
+ // 不支持对象,只支持多个event用空格隔开
+ $.each( (events || '').split( separator ), function( _, key ) {
+ iterator( key, callback );
+ });
+ }
+
+ function triggerHanders( events, args ) {
+ var stoped = false,
+ i = -1,
+ len = events.length,
+ handler;
+
+ while ( ++i < len ) {
+ handler = events[ i ];
+
+ if ( handler.cb.apply( handler.ctx2, args ) === false ) {
+ stoped = true;
+ break;
+ }
+ }
+
+ return !stoped;
+ }
+
+ protos = {
+
+ /**
+ * 绑定事件。
+ *
+ * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
+ * ```javascript
+ * var obj = {};
+ *
+ * // 使得obj有事件行为
+ * Mediator.installTo( obj );
+ *
+ * obj.on( 'testa', function( arg1, arg2 ) {
+ * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
+ * });
+ *
+ * obj.trigger( 'testa', 'arg1', 'arg2' );
+ * ```
+ *
+ * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
+ * 切会影响到`trigger`方法的返回值,为`false`。
+ *
+ * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
+ * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
+ * ```javascript
+ * obj.on( 'all', function( type, arg1, arg2 ) {
+ * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
+ * });
+ * ```
+ *
+ * @method on
+ * @grammar on( name, callback[, context] ) => self
+ * @param {String} name 事件名,支持多个事件用空格隔开
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ * @class Mediator
+ */
+ on: function( name, callback, context ) {
+ var me = this,
+ set;
+
+ if ( !callback ) {
+ return this;
+ }
+
+ set = this._events || (this._events = []);
+
+ eachEvent( name, callback, function( name, callback ) {
+ var handler = { e: name };
+
+ handler.cb = callback;
+ handler.ctx = context;
+ handler.ctx2 = context || me;
+ handler.id = set.length;
+
+ set.push( handler );
+ });
+
+ return this;
+ },
+
+ /**
+ * 绑定事件,且当handler执行完后,自动解除绑定。
+ * @method once
+ * @grammar once( name, callback[, context] ) => self
+ * @param {String} name 事件名
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ once: function( name, callback, context ) {
+ var me = this;
+
+ if ( !callback ) {
+ return me;
+ }
+
+ eachEvent( name, callback, function( name, callback ) {
+ var once = function() {
+ me.off( name, once );
+ return callback.apply( context || me, arguments );
+ };
+
+ once._cb = callback;
+ me.on( name, once, context );
+ });
+
+ return me;
+ },
+
+ /**
+ * 解除事件绑定
+ * @method off
+ * @grammar off( [name[, callback[, context] ] ] ) => self
+ * @param {String} [name] 事件名
+ * @param {Function} [callback] 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ off: function( name, cb, ctx ) {
+ var events = this._events;
+
+ if ( !events ) {
+ return this;
+ }
+
+ if ( !name && !cb && !ctx ) {
+ this._events = [];
+ return this;
+ }
+
+ eachEvent( name, cb, function( name, cb ) {
+ $.each( findHandlers( events, name, cb, ctx ), function() {
+ delete events[ this.id ];
+ });
+ });
+
+ return this;
+ },
+
+ /**
+ * 触发事件
+ * @method trigger
+ * @grammar trigger( name[, args...] ) => self
+ * @param {String} type 事件名
+ * @param {*} [...] 任意参数
+ * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
+ */
+ trigger: function( type ) {
+ var args, events, allEvents;
+
+ if ( !this._events || !type ) {
+ return this;
+ }
+
+ args = slice.call( arguments, 1 );
+ events = findHandlers( this._events, type );
+ allEvents = findHandlers( this._events, 'all' );
+
+ return triggerHanders( events, args ) &&
+ triggerHanders( allEvents, arguments );
+ }
+ };
+
+ /**
+ * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
+ * 主要目的是负责模块与模块之间的合作,降低耦合度。
+ *
+ * @class Mediator
+ */
+ return $.extend({
+
+ /**
+ * 可以通过这个接口,使任何对象具备事件功能。
+ * @method installTo
+ * @param {Object} obj 需要具备事件行为的对象。
+ * @return {Object} 返回obj.
+ */
+ installTo: function( obj ) {
+ return $.extend( obj, protos );
+ }
+
+ }, protos );
});
- /**
- * 事件处理类,可以独立使用,也可以扩展给对象使用。
- * @fileOverview Mediator
- */
- define('mediator',[
- 'base'
- ], function( Base ) {
- var $ = Base.$,
- slice = [].slice,
- separator = /\s+/,
- protos;
-
- // 根据条件过滤出事件handlers.
- function findHandlers( arr, name, callback, context ) {
- return $.grep( arr, function( handler ) {
- return handler &&
- (!name || handler.e === name) &&
- (!callback || handler.cb === callback ||
- handler.cb._cb === callback) &&
- (!context || handler.ctx === context);
- });
- }
-
- function eachEvent( events, callback, iterator ) {
- // 不支持对象,只支持多个event用空格隔开
- $.each( (events || '').split( separator ), function( _, key ) {
- iterator( key, callback );
- });
- }
-
- function triggerHanders( events, args ) {
- var stoped = false,
- i = -1,
- len = events.length,
- handler;
-
- while ( ++i < len ) {
- handler = events[ i ];
-
- if ( handler.cb.apply( handler.ctx2, args ) === false ) {
- stoped = true;
- break;
- }
- }
-
- return !stoped;
- }
-
- protos = {
-
- /**
- * 绑定事件。
- *
- * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
- * ```javascript
- * var obj = {};
- *
- * // 使得obj有事件行为
- * Mediator.installTo( obj );
- *
- * obj.on( 'testa', function( arg1, arg2 ) {
- * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
- * });
- *
- * obj.trigger( 'testa', 'arg1', 'arg2' );
- * ```
- *
- * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
- * 切会影响到`trigger`方法的返回值,为`false`。
- *
- * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
- * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
- * ```javascript
- * obj.on( 'all', function( type, arg1, arg2 ) {
- * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
- * });
- * ```
- *
- * @method on
- * @grammar on( name, callback[, context] ) => self
- * @param {String} name 事件名,支持多个事件用空格隔开
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- * @class Mediator
- */
- on: function( name, callback, context ) {
- var me = this,
- set;
+ /**
+ * @fileOverview Uploader上传类
+ */
+ define('uploader',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$;
+
+ /**
+ * 上传入口类。
+ * @class Uploader
+ * @constructor
+ * @grammar new Uploader( opts ) => Uploader
+ * @example
+ * var uploader = WebUploader.Uploader({
+ * swf: 'path_of_swf/Uploader.swf',
+ *
+ * // 开起分片上传。
+ * chunked: true
+ * });
+ */
+ function Uploader( opts ) {
+ this.options = $.extend( true, {}, Uploader.options, opts );
+ this._init( this.options );
+ }
+
+ // default Options
+ // widgets中有相应扩展
+ Uploader.options = {};
+ Mediator.installTo( Uploader.prototype );
+
+ // 批量添加纯命令式方法。
+ $.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( fn, command ) {
+ Uploader.prototype[ fn ] = function() {
+ return this.request( command, arguments );
+ };
+ });
+
+ $.extend( Uploader.prototype, {
+ state: 'pending',
+
+ _init: function( opts ) {
+ var me = this;
+
+ me.request( 'init', opts, function() {
+ me.state = 'ready';
+ me.trigger('ready');
+ });
+ },
+
+ /**
+ * 获取或者设置Uploader配置项。
+ * @method option
+ * @grammar option( key ) => *
+ * @grammar option( key, val ) => self
+ * @example
+ *
+ * // 初始状态图片上传前不会压缩
+ * var uploader = new WebUploader.Uploader({
+ * compress: null;
+ * });
+ *
+ * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
+ * uploader.option( 'compress', {
+ * width: 1600,
+ * height: 1600
+ * });
+ */
+ option: function( key, val ) {
+ var opts = this.options;
+
+ // setter
+ if ( arguments.length > 1 ) {
+
+ if ( $.isPlainObject( val ) &&
+ $.isPlainObject( opts[ key ] ) ) {
+ $.extend( opts[ key ], val );
+ } else {
+ opts[ key ] = val;
+ }
+
+ } else { // getter
+ return key ? opts[ key ] : opts;
+ }
+ },
+
+ /**
+ * 获取文件统计信息。返回一个包含一下信息的对象。
+ * * `successNum` 上传成功的文件数
+ * * `progressNum` 上传中的文件数
+ * * `cancelNum` 被删除的文件数
+ * * `invalidNum` 无效的文件数
+ * * `uploadFailNum` 上传失败的文件数
+ * * `queueNum` 还在队列中的文件数
+ * * `interruptNum` 被暂停的文件数
+ * @method getStats
+ * @grammar getStats() => Object
+ */
+ getStats: function() {
+ // return this._mgr.getStats.apply( this._mgr, arguments );
+ var stats = this.request('get-stats');
+
+ return stats ? {
+ successNum: stats.numOfSuccess,
+ progressNum: stats.numOfProgress,
+
+ // who care?
+ // queueFailNum: 0,
+ cancelNum: stats.numOfCancel,
+ invalidNum: stats.numOfInvalid,
+ uploadFailNum: stats.numOfUploadFailed,
+ queueNum: stats.numOfQueue,
+ interruptNum: stats.numOfInterrupt
+ } : {};
+ },
+
+ // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
+ trigger: function( type/*, args...*/ ) {
+ var args = [].slice.call( arguments, 1 ),
+ opts = this.options,
+ name = 'on' + type.substring( 0, 1 ).toUpperCase() +
+ type.substring( 1 );
+
+ if (
+ // 调用通过on方法注册的handler.
+ Mediator.trigger.apply( this, arguments ) === false ||
+
+ // 调用opts.onEvent
+ $.isFunction( opts[ name ] ) &&
+ opts[ name ].apply( this, args ) === false ||
+
+ // 调用this.onEvent
+ $.isFunction( this[ name ] ) &&
+ this[ name ].apply( this, args ) === false ||
+
+ // 广播所有uploader的事件。
+ Mediator.trigger.apply( Mediator,
+ [ this, type ].concat( args ) ) === false ) {
+
+ return false;
+ }
+
+ return true;
+ },
+
+ /**
+ * 销毁 webuploader 实例
+ * @method destroy
+ * @grammar destroy() => undefined
+ */
+ destroy: function() {
+ this.request( 'destroy', arguments );
+ this.off();
+ },
+
+ // widgets/widget.js将补充此方法的详细文档。
+ request: Base.noop
+ });
+
+ /**
+ * 创建Uploader实例,等同于new Uploader( opts );
+ * @method create
+ * @class Base
+ * @static
+ * @grammar Base.create( opts ) => Uploader
+ */
+ Base.create = Uploader.create = function( opts ) {
+ return new Uploader( opts );
+ };
+
+ // 暴露Uploader,可以通过它来扩展业务逻辑。
+ Base.Uploader = Uploader;
+
+ return Uploader;
+ });
- if ( !callback ) {
- return this;
- }
-
- set = this._events || (this._events = []);
-
- eachEvent( name, callback, function( name, callback ) {
- var handler = { e: name };
-
- handler.cb = callback;
- handler.ctx = context;
- handler.ctx2 = context || me;
- handler.id = set.length;
-
- set.push( handler );
- });
-
- return this;
- },
-
- /**
- * 绑定事件,且当handler执行完后,自动解除绑定。
- * @method once
- * @grammar once( name, callback[, context] ) => self
- * @param {String} name 事件名
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- once: function( name, callback, context ) {
- var me = this;
-
- if ( !callback ) {
- return me;
- }
-
- eachEvent( name, callback, function( name, callback ) {
- var once = function() {
- me.off( name, once );
- return callback.apply( context || me, arguments );
- };
-
- once._cb = callback;
- me.on( name, once, context );
- });
-
- return me;
- },
-
- /**
- * 解除事件绑定
- * @method off
- * @grammar off( [name[, callback[, context] ] ] ) => self
- * @param {String} [name] 事件名
- * @param {Function} [callback] 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- off: function( name, cb, ctx ) {
- var events = this._events;
-
- if ( !events ) {
- return this;
- }
-
- if ( !name && !cb && !ctx ) {
- this._events = [];
- return this;
- }
-
- eachEvent( name, cb, function( name, cb ) {
- $.each( findHandlers( events, name, cb, ctx ), function() {
- delete events[ this.id ];
- });
- });
-
- return this;
- },
-
- /**
- * 触发事件
- * @method trigger
- * @grammar trigger( name[, args...] ) => self
- * @param {String} type 事件名
- * @param {*} [...] 任意参数
- * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
- */
- trigger: function( type ) {
- var args, events, allEvents;
-
- if ( !this._events || !type ) {
- return this;
- }
-
- args = slice.call( arguments, 1 );
- events = findHandlers( this._events, type );
- allEvents = findHandlers( this._events, 'all' );
-
- return triggerHanders( events, args ) &&
- triggerHanders( allEvents, arguments );
- }
- };
-
- /**
- * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
- * 主要目的是负责模块与模块之间的合作,降低耦合度。
- *
- * @class Mediator
- */
- return $.extend({
-
- /**
- * 可以通过这个接口,使任何对象具备事件功能。
- * @method installTo
- * @param {Object} obj 需要具备事件行为的对象。
- * @return {Object} 返回obj.
- */
- installTo: function( obj ) {
- return $.extend( obj, protos );
- }
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/runtime',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ factories = {},
+
+ // 获取对象的第一个key
+ getFirstKey = function( obj ) {
+ for ( var key in obj ) {
+ if ( obj.hasOwnProperty( key ) ) {
+ return key;
+ }
+ }
+ return null;
+ };
+
+ // 接口类。
+ function Runtime( options ) {
+ this.options = $.extend({
+ container: document.body
+ }, options );
+ this.uid = Base.guid('rt_');
+ }
+
+ $.extend( Runtime.prototype, {
+
+ getContainer: function() {
+ var opts = this.options,
+ parent, container;
+
+ if ( this._container ) {
+ return this._container;
+ }
+
+ parent = $( opts.container || document.body );
+ container = $( document.createElement('div') );
+
+ container.attr( 'id', 'rt_' + this.uid );
+ container.css({
+ position: 'absolute',
+ top: '0px',
+ left: '0px',
+ width: '1px',
+ height: '1px',
+ overflow: 'hidden'
+ });
+
+ parent.append( container );
+ parent.addClass('webuploader-container');
+ this._container = container;
+ this._parent = parent;
+ return container;
+ },
+
+ init: Base.noop,
+ exec: Base.noop,
+
+ destroy: function() {
+ this._container && this._container.remove();
+ this._parent && this._parent.removeClass('webuploader-container');
+ this.off();
+ }
+ });
+
+ Runtime.orders = 'html5,flash';
+
+
+ /**
+ * 添加Runtime实现。
+ * @param {String} type 类型
+ * @param {Runtime} factory 具体Runtime实现。
+ */
+ Runtime.addRuntime = function( type, factory ) {
+ factories[ type ] = factory;
+ };
+
+ Runtime.hasRuntime = function( type ) {
+ return !!(type ? factories[ type ] : getFirstKey( factories ));
+ };
+
+ Runtime.create = function( opts, orders ) {
+ var type, runtime;
+
+ orders = orders || Runtime.orders;
+ $.each( orders.split( /\s*,\s*/g ), function() {
+ if ( factories[ this ] ) {
+ type = this;
+ return false;
+ }
+ });
+
+ type = type || getFirstKey( factories );
+
+ if ( !type ) {
+ throw new Error('Runtime Error');
+ }
+
+ runtime = new factories[ type ]( opts );
+ return runtime;
+ };
+
+ Mediator.installTo( Runtime.prototype );
+ return Runtime;
+ });
- }, protos );
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/client',[
+ 'base',
+ 'mediator',
+ 'runtime/runtime'
+ ], function( Base, Mediator, Runtime ) {
+
+ var cache;
+
+ cache = (function() {
+ var obj = {};
+
+ return {
+ add: function( runtime ) {
+ obj[ runtime.uid ] = runtime;
+ },
+
+ get: function( ruid, standalone ) {
+ var i;
+
+ if ( ruid ) {
+ return obj[ ruid ];
+ }
+
+ for ( i in obj ) {
+ // 有些类型不能重用,比如filepicker.
+ if ( standalone && obj[ i ].__standalone ) {
+ continue;
+ }
+
+ return obj[ i ];
+ }
+
+ return null;
+ },
+
+ remove: function( runtime ) {
+ delete obj[ runtime.uid ];
+ }
+ };
+ })();
+
+ function RuntimeClient( component, standalone ) {
+ var deferred = Base.Deferred(),
+ runtime;
+
+ this.uid = Base.guid('client_');
+
+ // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
+ this.runtimeReady = function( cb ) {
+ return deferred.done( cb );
+ };
+
+ this.connectRuntime = function( opts, cb ) {
+
+ // already connected.
+ if ( runtime ) {
+ throw new Error('already connected!');
+ }
+
+ deferred.done( cb );
+
+ if ( typeof opts === 'string' && cache.get( opts ) ) {
+ runtime = cache.get( opts );
+ }
+
+ // 像filePicker只能独立存在,不能公用。
+ runtime = runtime || cache.get( null, standalone );
+
+ // 需要创建
+ if ( !runtime ) {
+ runtime = Runtime.create( opts, opts.runtimeOrder );
+ runtime.__promise = deferred.promise();
+ runtime.once( 'ready', deferred.resolve );
+ runtime.init();
+ cache.add( runtime );
+ runtime.__client = 1;
+ } else {
+ // 来自cache
+ Base.$.extend( runtime.options, opts );
+ runtime.__promise.then( deferred.resolve );
+ runtime.__client++;
+ }
+
+ standalone && (runtime.__standalone = standalone);
+ return runtime;
+ };
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.disconnectRuntime = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ runtime.__client--;
+
+ if ( runtime.__client <= 0 ) {
+ cache.remove( runtime );
+ delete runtime.__promise;
+ runtime.destroy();
+ }
+
+ runtime = null;
+ };
+
+ this.exec = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ var args = Base.slice( arguments );
+ component && args.unshift( component );
+
+ return runtime.exec.apply( this, args );
+ };
+
+ this.getRuid = function() {
+ return runtime && runtime.uid;
+ };
+
+ this.destroy = (function( destroy ) {
+ return function() {
+ destroy && destroy.apply( this, arguments );
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ };
+ })( this.destroy );
+ }
+
+ Mediator.installTo( RuntimeClient.prototype );
+ return RuntimeClient;
});
- /**
- * @fileOverview Uploader上传类
- */
- define('uploader',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$;
-
- /**
- * 上传入口类。
- * @class Uploader
- * @constructor
- * @grammar new Uploader( opts ) => Uploader
- * @example
- * var uploader = WebUploader.Uploader({
- * swf: 'path_of_swf/Uploader.swf',
- *
- * // 开起分片上传。
- * chunked: true
- * });
- */
- function Uploader( opts ) {
- this.options = $.extend( true, {}, Uploader.options, opts );
- this._init( this.options );
- }
-
- // default Options
- // widgets中有相应扩展
- Uploader.options = {};
- Mediator.installTo( Uploader.prototype );
-
- // 批量添加纯命令式方法。
- $.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( fn, command ) {
- Uploader.prototype[ fn ] = function() {
- return this.request( command, arguments );
- };
- });
-
- $.extend( Uploader.prototype, {
- state: 'pending',
-
- _init: function( opts ) {
- var me = this;
-
- me.request( 'init', opts, function() {
- me.state = 'ready';
- me.trigger('ready');
- });
- },
-
- /**
- * 获取或者设置Uploader配置项。
- * @method option
- * @grammar option( key ) => *
- * @grammar option( key, val ) => self
- * @example
- *
- * // 初始状态图片上传前不会压缩
- * var uploader = new WebUploader.Uploader({
- * compress: null;
- * });
- *
- * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
- * uploader.option( 'compress', {
- * width: 1600,
- * height: 1600
- * });
- */
- option: function( key, val ) {
- var opts = this.options;
-
- // setter
- if ( arguments.length > 1 ) {
-
- if ( $.isPlainObject( val ) &&
- $.isPlainObject( opts[ key ] ) ) {
- $.extend( opts[ key ], val );
- } else {
- opts[ key ] = val;
- }
-
- } else { // getter
- return key ? opts[ key ] : opts;
- }
- },
-
- /**
- * 获取文件统计信息。返回一个包含一下信息的对象。
- * * `successNum` 上传成功的文件数
- * * `progressNum` 上传中的文件数
- * * `cancelNum` 被删除的文件数
- * * `invalidNum` 无效的文件数
- * * `uploadFailNum` 上传失败的文件数
- * * `queueNum` 还在队列中的文件数
- * * `interruptNum` 被暂停的文件数
- * @method getStats
- * @grammar getStats() => Object
- */
- getStats: function() {
- // return this._mgr.getStats.apply( this._mgr, arguments );
- var stats = this.request('get-stats');
-
- return stats ? {
- successNum: stats.numOfSuccess,
- progressNum: stats.numOfProgress,
-
- // who care?
- // queueFailNum: 0,
- cancelNum: stats.numOfCancel,
- invalidNum: stats.numOfInvalid,
- uploadFailNum: stats.numOfUploadFailed,
- queueNum: stats.numOfQueue,
- interruptNum: stats.numOfInterrupt
- } : {};
- },
-
- // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
- trigger: function( type/*, args...*/ ) {
- var args = [].slice.call( arguments, 1 ),
- opts = this.options,
- name = 'on' + type.substring( 0, 1 ).toUpperCase() +
- type.substring( 1 );
-
- if (
- // 调用通过on方法注册的handler.
- Mediator.trigger.apply( this, arguments ) === false ||
-
- // 调用opts.onEvent
- $.isFunction( opts[ name ] ) &&
- opts[ name ].apply( this, args ) === false ||
-
- // 调用this.onEvent
- $.isFunction( this[ name ] ) &&
- this[ name ].apply( this, args ) === false ||
-
- // 广播所有uploader的事件。
- Mediator.trigger.apply( Mediator,
- [ this, type ].concat( args ) ) === false ) {
-
- return false;
- }
-
- return true;
- },
-
- /**
- * 销毁 webuploader 实例
- * @method destroy
- * @grammar destroy() => undefined
- */
- destroy: function() {
- this.request( 'destroy', arguments );
- this.off();
- },
-
- // widgets/widget.js将补充此方法的详细文档。
- request: Base.noop
- });
-
- /**
- * 创建Uploader实例,等同于new Uploader( opts );
- * @method create
- * @class Base
- * @static
- * @grammar Base.create( opts ) => Uploader
- */
- Base.create = Uploader.create = function( opts ) {
- return new Uploader( opts );
- };
-
- // 暴露Uploader,可以通过它来扩展业务逻辑。
- Base.Uploader = Uploader;
-
- return Uploader;
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/dnd',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function DragAndDrop( opts ) {
+ opts = this.options = $.extend({}, DragAndDrop.options, opts );
+
+ opts.container = $( opts.container );
+
+ if ( !opts.container.length ) {
+ return;
+ }
+
+ RuntimeClent.call( this, 'DragAndDrop' );
+ }
+
+ DragAndDrop.options = {
+ accept: null,
+ disableGlobalDnd: false
+ };
+
+ Base.inherits( RuntimeClent, {
+ constructor: DragAndDrop,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( DragAndDrop.prototype );
+
+ return DragAndDrop;
});
-
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/runtime',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- factories = {},
-
- // 获取对象的第一个key
- getFirstKey = function( obj ) {
- for ( var key in obj ) {
- if ( obj.hasOwnProperty( key ) ) {
- return key;
- }
- }
- return null;
- };
-
- // 接口类。
- function Runtime( options ) {
- this.options = $.extend({
- container: document.body
- }, options );
- this.uid = Base.guid('rt_');
- }
-
- $.extend( Runtime.prototype, {
-
- getContainer: function() {
- var opts = this.options,
- parent, container;
-
- if ( this._container ) {
- return this._container;
- }
-
- parent = $( opts.container || document.body );
- container = $( document.createElement('div') );
-
- container.attr( 'id', 'rt_' + this.uid );
- container.css({
- position: 'absolute',
- top: '0px',
- left: '0px',
- width: '1px',
- height: '1px',
- overflow: 'hidden'
- });
-
- parent.append( container );
- parent.addClass('webuploader-container');
- this._container = container;
- this._parent = parent;
- return container;
- },
-
- init: Base.noop,
- exec: Base.noop,
-
- destroy: function() {
- this._container && this._container.remove();
- this._parent && this._parent.removeClass('webuploader-container');
- this.off();
- }
- });
-
- Runtime.orders = 'html5,flash';
-
-
- /**
- * 添加Runtime实现。
- * @param {String} type 类型
- * @param {Runtime} factory 具体Runtime实现。
- */
- Runtime.addRuntime = function( type, factory ) {
- factories[ type ] = factory;
- };
-
- Runtime.hasRuntime = function( type ) {
- return !!(type ? factories[ type ] : getFirstKey( factories ));
- };
-
- Runtime.create = function( opts, orders ) {
- var type, runtime;
-
- orders = orders || Runtime.orders;
- $.each( orders.split( /\s*,\s*/g ), function() {
- if ( factories[ this ] ) {
- type = this;
- return false;
- }
- });
-
- type = type || getFirstKey( factories );
-
- if ( !type ) {
- throw new Error('Runtime Error');
- }
-
- runtime = new factories[ type ]( opts );
- return runtime;
- };
-
- Mediator.installTo( Runtime.prototype );
- return Runtime;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/widget',[
+ 'base',
+ 'uploader'
+ ], function( Base, Uploader ) {
+
+ var $ = Base.$,
+ _init = Uploader.prototype._init,
+ _destroy = Uploader.prototype.destroy,
+ IGNORE = {},
+ widgetClass = [];
+
+ function isArrayLike( obj ) {
+ if ( !obj ) {
+ return false;
+ }
+
+ var length = obj.length,
+ type = $.type( obj );
+
+ if ( obj.nodeType === 1 && length ) {
+ return true;
+ }
+
+ return type === 'array' || type !== 'function' && type !== 'string' &&
+ (length === 0 || typeof length === 'number' && length > 0 &&
+ (length - 1) in obj);
+ }
+
+ function Widget( uploader ) {
+ this.owner = uploader;
+ this.options = uploader.options;
+ }
+
+ $.extend( Widget.prototype, {
+
+ init: Base.noop,
+
+ // 类Backbone的事件监听声明,监听uploader实例上的事件
+ // widget直接无法监听事件,事件只能通过uploader来传递
+ invoke: function( apiName, args ) {
+
+ /*
+ {
+ 'make-thumb': 'makeThumb'
+ }
+ */
+ var map = this.responseMap;
+
+ // 如果无API响应声明则忽略
+ if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
+ !$.isFunction( this[ map[ apiName ] ] ) ) {
+
+ return IGNORE;
+ }
+
+ return this[ map[ apiName ] ].apply( this, args );
+
+ },
+
+ /**
+ * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
+ * @method request
+ * @grammar request( command, args ) => * | Promise
+ * @grammar request( command, args, callback ) => Promise
+ * @for Uploader
+ */
+ request: function() {
+ return this.owner.request.apply( this.owner, arguments );
+ }
+ });
+
+ // 扩展Uploader.
+ $.extend( Uploader.prototype, {
+
+ /**
+ * @property {String | Array} [disableWidgets=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
+ */
+
+ // 覆写_init用来初始化widgets
+ _init: function() {
+ var me = this,
+ widgets = me._widgets = [],
+ deactives = me.options.disableWidgets || '';
+
+ $.each( widgetClass, function( _, klass ) {
+ (!deactives || !~deactives.indexOf( klass._name )) &&
+ widgets.push( new klass( me ) );
+ });
+
+ return _init.apply( me, arguments );
+ },
+
+ request: function( apiName, args, callback ) {
+ var i = 0,
+ widgets = this._widgets,
+ len = widgets && widgets.length,
+ rlts = [],
+ dfds = [],
+ widget, rlt, promise, key;
+
+ args = isArrayLike( args ) ? args : [ args ];
+
+ for ( ; i < len; i++ ) {
+ widget = widgets[ i ];
+ rlt = widget.invoke( apiName, args );
+
+ if ( rlt !== IGNORE ) {
+
+ // Deferred对象
+ if ( Base.isPromise( rlt ) ) {
+ dfds.push( rlt );
+ } else {
+ rlts.push( rlt );
+ }
+ }
+ }
+
+ // 如果有callback,则用异步方式。
+ if ( callback || dfds.length ) {
+ promise = Base.when.apply( Base, dfds );
+ key = promise.pipe ? 'pipe' : 'then';
+
+ // 很重要不能删除。删除了会死循环。
+ // 保证执行顺序。让callback总是在下一个 tick 中执行。
+ return promise[ key ](function() {
+ var deferred = Base.Deferred(),
+ args = arguments;
+
+ if ( args.length === 1 ) {
+ args = args[ 0 ];
+ }
+
+ setTimeout(function() {
+ deferred.resolve( args );
+ }, 1 );
+
+ return deferred.promise();
+ })[ callback ? key : 'done' ]( callback || Base.noop );
+ } else {
+ return rlts[ 0 ];
+ }
+ },
+
+ destroy: function() {
+ _destroy.apply( this, arguments );
+ this._widgets = null;
+ }
+ });
+
+ /**
+ * 添加组件
+ * @grammar Uploader.register(proto);
+ * @grammar Uploader.register(map, proto);
+ * @param {object} responseMap API 名称与函数实现的映射
+ * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
+ * @method Uploader.register
+ * @for Uploader
+ * @example
+ * Uploader.register({
+ * 'make-thumb': 'makeThumb'
+ * }, {
+ * init: function( options ) {},
+ * makeThumb: function() {}
+ * });
+ *
+ * Uploader.register({
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ */
+ Uploader.register = Widget.register = function( responseMap, widgetProto ) {
+ var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
+ klass;
+
+ if ( arguments.length === 1 ) {
+ widgetProto = responseMap;
+
+ // 自动生成 map 表。
+ $.each(widgetProto, function(key) {
+ if ( key[0] === '_' || key === 'name' ) {
+ key === 'name' && (map.name = widgetProto.name);
+ return;
+ }
+
+ map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
+ });
+
+ } else {
+ map = $.extend( map, responseMap );
+ }
+
+ widgetProto.responseMap = map;
+ klass = Base.inherits( Widget, widgetProto );
+ klass._name = map.name;
+ widgetClass.push( klass );
+
+ return klass;
+ };
+
+ /**
+ * 删除插件,只有在注册时指定了名字的才能被删除。
+ * @grammar Uploader.unRegister(name);
+ * @param {string} name 组件名字
+ * @method Uploader.unRegister
+ * @for Uploader
+ * @example
+ *
+ * Uploader.register({
+ * name: 'custom',
+ *
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ *
+ * Uploader.unRegister('custom');
+ */
+ Uploader.unRegister = Widget.unRegister = function( name ) {
+ if ( !name || name === 'anonymous' ) {
+ return;
+ }
+
+ // 删除指定的插件。
+ for ( var i = widgetClass.length; i--; ) {
+ if ( widgetClass[i]._name === name ) {
+ widgetClass.splice(i, 1)
+ }
+ }
+ };
+
+ return Widget;
});
+ /**
+ * @fileOverview DragAndDrop Widget。
+ */
+ define('widgets/filednd',[
+ 'base',
+ 'uploader',
+ 'lib/dnd',
+ 'widgets/widget'
+ ], function( Base, Uploader, Dnd ) {
+ var $ = Base.$;
+
+ Uploader.options.dnd = '';
+
+ /**
+ * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @event dndAccept
+ * @param {DataTransferItemList} items DataTransferItem
+ * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'dnd',
+
+ init: function( opts ) {
+
+ if ( !opts.dnd ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ disableGlobalDnd: opts.disableGlobalDnd,
+ container: opts.dnd,
+ accept: opts.accept
+ }),
+ dnd;
+
+ this.dnd = dnd = new Dnd( options );
+
+ dnd.once( 'ready', deferred.resolve );
+ dnd.on( 'drop', function( files ) {
+ me.request( 'add-file', [ files ]);
+ });
+
+ // 检测文件是否全部允许添加。
+ dnd.on( 'accept', function( items ) {
+ return me.owner.trigger( 'dndAccept', items );
+ });
+
+ dnd.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.dnd && this.dnd.destroy();
+ }
+ });
+ });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/client',[
- 'base',
- 'mediator',
- 'runtime/runtime'
- ], function( Base, Mediator, Runtime ) {
-
- var cache;
-
- cache = (function() {
- var obj = {};
-
- return {
- add: function( runtime ) {
- obj[ runtime.uid ] = runtime;
- },
-
- get: function( ruid, standalone ) {
- var i;
-
- if ( ruid ) {
- return obj[ ruid ];
- }
-
- for ( i in obj ) {
- // 有些类型不能重用,比如filepicker.
- if ( standalone && obj[ i ].__standalone ) {
- continue;
- }
-
- return obj[ i ];
- }
-
- return null;
- },
-
- remove: function( runtime ) {
- delete obj[ runtime.uid ];
- }
- };
- })();
-
- function RuntimeClient( component, standalone ) {
- var deferred = Base.Deferred(),
- runtime;
-
- this.uid = Base.guid('client_');
-
- // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
- this.runtimeReady = function( cb ) {
- return deferred.done( cb );
- };
-
- this.connectRuntime = function( opts, cb ) {
-
- // already connected.
- if ( runtime ) {
- throw new Error('already connected!');
- }
-
- deferred.done( cb );
-
- if ( typeof opts === 'string' && cache.get( opts ) ) {
- runtime = cache.get( opts );
- }
-
- // 像filePicker只能独立存在,不能公用。
- runtime = runtime || cache.get( null, standalone );
-
- // 需要创建
- if ( !runtime ) {
- runtime = Runtime.create( opts, opts.runtimeOrder );
- runtime.__promise = deferred.promise();
- runtime.once( 'ready', deferred.resolve );
- runtime.init();
- cache.add( runtime );
- runtime.__client = 1;
- } else {
- // 来自cache
- Base.$.extend( runtime.options, opts );
- runtime.__promise.then( deferred.resolve );
- runtime.__client++;
- }
-
- standalone && (runtime.__standalone = standalone);
- return runtime;
- };
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.disconnectRuntime = function() {
- if ( !runtime ) {
- return;
- }
-
- runtime.__client--;
-
- if ( runtime.__client <= 0 ) {
- cache.remove( runtime );
- delete runtime.__promise;
- runtime.destroy();
- }
-
- runtime = null;
- };
-
- this.exec = function() {
- if ( !runtime ) {
- return;
- }
-
- var args = Base.slice( arguments );
- component && args.unshift( component );
-
- return runtime.exec.apply( this, args );
- };
-
- this.getRuid = function() {
- return runtime && runtime.uid;
- };
-
- this.destroy = (function( destroy ) {
- return function() {
- destroy && destroy.apply( this, arguments );
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- };
- })( this.destroy );
- }
-
- Mediator.installTo( RuntimeClient.prototype );
- return RuntimeClient;
- });
- /**
- * @fileOverview 错误信息
- */
- define('lib/dnd',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function DragAndDrop( opts ) {
- opts = this.options = $.extend({}, DragAndDrop.options, opts );
-
- opts.container = $( opts.container );
-
- if ( !opts.container.length ) {
- return;
- }
-
- RuntimeClent.call( this, 'DragAndDrop' );
- }
-
- DragAndDrop.options = {
- accept: null,
- disableGlobalDnd: false
- };
-
- Base.inherits( RuntimeClent, {
- constructor: DragAndDrop,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( DragAndDrop.prototype );
-
- return DragAndDrop;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/widget',[
- 'base',
- 'uploader'
- ], function( Base, Uploader ) {
-
- var $ = Base.$,
- _init = Uploader.prototype._init,
- _destroy = Uploader.prototype.destroy,
- IGNORE = {},
- widgetClass = [];
-
- function isArrayLike( obj ) {
- if ( !obj ) {
- return false;
- }
-
- var length = obj.length,
- type = $.type( obj );
-
- if ( obj.nodeType === 1 && length ) {
- return true;
- }
-
- return type === 'array' || type !== 'function' && type !== 'string' &&
- (length === 0 || typeof length === 'number' && length > 0 &&
- (length - 1) in obj);
- }
-
- function Widget( uploader ) {
- this.owner = uploader;
- this.options = uploader.options;
- }
-
- $.extend( Widget.prototype, {
-
- init: Base.noop,
-
- // 类Backbone的事件监听声明,监听uploader实例上的事件
- // widget直接无法监听事件,事件只能通过uploader来传递
- invoke: function( apiName, args ) {
-
- /*
- {
- 'make-thumb': 'makeThumb'
- }
- */
- var map = this.responseMap;
-
- // 如果无API响应声明则忽略
- if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
- !$.isFunction( this[ map[ apiName ] ] ) ) {
-
- return IGNORE;
- }
-
- return this[ map[ apiName ] ].apply( this, args );
-
- },
-
- /**
- * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
- * @method request
- * @grammar request( command, args ) => * | Promise
- * @grammar request( command, args, callback ) => Promise
- * @for Uploader
- */
- request: function() {
- return this.owner.request.apply( this.owner, arguments );
- }
- });
-
- // 扩展Uploader.
- $.extend( Uploader.prototype, {
-
- /**
- * @property {String | Array} [disableWidgets=undefined]
- * @namespace options
- * @for Uploader
- * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
- */
-
- // 覆写_init用来初始化widgets
- _init: function() {
- var me = this,
- widgets = me._widgets = [],
- deactives = me.options.disableWidgets || '';
-
- $.each( widgetClass, function( _, klass ) {
- (!deactives || !~deactives.indexOf( klass._name )) &&
- widgets.push( new klass( me ) );
- });
-
- return _init.apply( me, arguments );
- },
-
- request: function( apiName, args, callback ) {
- var i = 0,
- widgets = this._widgets,
- len = widgets && widgets.length,
- rlts = [],
- dfds = [],
- widget, rlt, promise, key;
-
- args = isArrayLike( args ) ? args : [ args ];
-
- for ( ; i < len; i++ ) {
- widget = widgets[ i ];
- rlt = widget.invoke( apiName, args );
-
- if ( rlt !== IGNORE ) {
-
- // Deferred对象
- if ( Base.isPromise( rlt ) ) {
- dfds.push( rlt );
- } else {
- rlts.push( rlt );
- }
- }
- }
-
- // 如果有callback,则用异步方式。
- if ( callback || dfds.length ) {
- promise = Base.when.apply( Base, dfds );
- key = promise.pipe ? 'pipe' : 'then';
-
- // 很重要不能删除。删除了会死循环。
- // 保证执行顺序。让callback总是在下一个 tick 中执行。
- return promise[ key ](function() {
- var deferred = Base.Deferred(),
- args = arguments;
-
- if ( args.length === 1 ) {
- args = args[ 0 ];
- }
-
- setTimeout(function() {
- deferred.resolve( args );
- }, 1 );
-
- return deferred.promise();
- })[ callback ? key : 'done' ]( callback || Base.noop );
- } else {
- return rlts[ 0 ];
- }
- },
-
- destroy: function() {
- _destroy.apply( this, arguments );
- this._widgets = null;
- }
- });
-
- /**
- * 添加组件
- * @grammar Uploader.register(proto);
- * @grammar Uploader.register(map, proto);
- * @param {object} responseMap API 名称与函数实现的映射
- * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
- * @method Uploader.register
- * @for Uploader
- * @example
- * Uploader.register({
- * 'make-thumb': 'makeThumb'
- * }, {
- * init: function( options ) {},
- * makeThumb: function() {}
- * });
- *
- * Uploader.register({
- * 'make-thumb': function() {
- *
- * }
- * });
- */
- Uploader.register = Widget.register = function( responseMap, widgetProto ) {
- var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
- klass;
-
- if ( arguments.length === 1 ) {
- widgetProto = responseMap;
-
- // 自动生成 map 表。
- $.each(widgetProto, function(key) {
- if ( key[0] === '_' || key === 'name' ) {
- key === 'name' && (map.name = widgetProto.name);
- return;
- }
-
- map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
- });
-
- } else {
- map = $.extend( map, responseMap );
- }
-
- widgetProto.responseMap = map;
- klass = Base.inherits( Widget, widgetProto );
- klass._name = map.name;
- widgetClass.push( klass );
-
- return klass;
- };
-
- /**
- * 删除插件,只有在注册时指定了名字的才能被删除。
- * @grammar Uploader.unRegister(name);
- * @param {string} name 组件名字
- * @method Uploader.unRegister
- * @for Uploader
- * @example
- *
- * Uploader.register({
- * name: 'custom',
- *
- * 'make-thumb': function() {
- *
- * }
- * });
- *
- * Uploader.unRegister('custom');
- */
- Uploader.unRegister = Widget.unRegister = function( name ) {
- if ( !name || name === 'anonymous' ) {
- return;
- }
-
- // 删除指定的插件。
- for ( var i = widgetClass.length; i--; ) {
- if ( widgetClass[i]._name === name ) {
- widgetClass.splice(i, 1)
- }
- }
- };
-
- return Widget;
- });
- /**
- * @fileOverview DragAndDrop Widget。
- */
- define('widgets/filednd',[
- 'base',
- 'uploader',
- 'lib/dnd',
- 'widgets/widget'
- ], function( Base, Uploader, Dnd ) {
- var $ = Base.$;
-
- Uploader.options.dnd = '';
-
- /**
- * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @event dndAccept
- * @param {DataTransferItemList} items DataTransferItem
- * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
- * @for Uploader
- */
- return Uploader.register({
- name: 'dnd',
-
- init: function( opts ) {
-
- if ( !opts.dnd ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- disableGlobalDnd: opts.disableGlobalDnd,
- container: opts.dnd,
- accept: opts.accept
- }),
- dnd;
-
- this.dnd = dnd = new Dnd( options );
-
- dnd.once( 'ready', deferred.resolve );
- dnd.on( 'drop', function( files ) {
- me.request( 'add-file', [ files ]);
- });
-
- // 检测文件是否全部允许添加。
- dnd.on( 'accept', function( items ) {
- return me.owner.trigger( 'dndAccept', items );
- });
-
- dnd.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.dnd && this.dnd.destroy();
- }
- });
- });
-
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepaste',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function FilePaste( opts ) {
- opts = this.options = $.extend({}, opts );
- opts.container = $( opts.container || document.body );
- RuntimeClent.call( this, 'FilePaste' );
- }
-
- Base.inherits( RuntimeClent, {
- constructor: FilePaste,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( FilePaste.prototype );
-
- return FilePaste;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/filepaste',[
- 'base',
- 'uploader',
- 'lib/filepaste',
- 'widgets/widget'
- ], function( Base, Uploader, FilePaste ) {
- var $ = Base.$;
-
- /**
- * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
- * @namespace options
- * @for Uploader
- */
- return Uploader.register({
- name: 'paste',
-
- init: function( opts ) {
-
- if ( !opts.paste ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- container: opts.paste,
- accept: opts.accept
- }),
- paste;
-
- this.paste = paste = new FilePaste( options );
-
- paste.once( 'ready', deferred.resolve );
- paste.on( 'paste', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- paste.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.paste && this.paste.destroy();
- }
- });
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepaste',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function FilePaste( opts ) {
+ opts = this.options = $.extend({}, opts );
+ opts.container = $( opts.container || document.body );
+ RuntimeClent.call( this, 'FilePaste' );
+ }
+
+ Base.inherits( RuntimeClent, {
+ constructor: FilePaste,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( FilePaste.prototype );
+
+ return FilePaste;
});
- /**
- * @fileOverview Blob
- */
- define('lib/blob',[
- 'base',
- 'runtime/client'
- ], function( Base, RuntimeClient ) {
-
- function Blob( ruid, source ) {
- var me = this;
-
- me.source = source;
- me.ruid = ruid;
- this.size = source.size || 0;
-
- // 如果没有指定 mimetype, 但是知道文件后缀。
- if ( !source.type && this.ext &&
- ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
- this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
- } else {
- this.type = source.type || 'application/octet-stream';
- }
-
- RuntimeClient.call( me, 'Blob' );
- this.uid = source.uid || this.uid;
-
- if ( ruid ) {
- me.connectRuntime( ruid );
- }
- }
-
- Base.inherits( RuntimeClient, {
- constructor: Blob,
-
- slice: function( start, end ) {
- return this.exec( 'slice', start, end );
- },
-
- getSource: function() {
- return this.source;
- }
- });
-
- return Blob;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/filepaste',[
+ 'base',
+ 'uploader',
+ 'lib/filepaste',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePaste ) {
+ var $ = Base.$;
+
+ /**
+ * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
+ * @namespace options
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'paste',
+
+ init: function( opts ) {
+
+ if ( !opts.paste ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ container: opts.paste,
+ accept: opts.accept
+ }),
+ paste;
+
+ this.paste = paste = new FilePaste( options );
+
+ paste.once( 'ready', deferred.resolve );
+ paste.on( 'paste', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ paste.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.paste && this.paste.destroy();
+ }
+ });
});
- /**
- * 为了统一化Flash的File和HTML5的File而存在。
- * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
- * @fileOverview File
- */
- define('lib/file',[
- 'base',
- 'lib/blob'
- ], function( Base, Blob ) {
-
- var uid = 1,
- rExt = /\.([^.]+)$/;
-
- function File( ruid, file ) {
- var ext;
-
- this.name = file.name || ('untitled' + uid++);
- ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
-
- // todo 支持其他类型文件的转换。
- // 如果有 mimetype, 但是文件名里面没有找出后缀规律
- if ( !ext && file.type ) {
- ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
- RegExp.$1.toLowerCase() : '';
- this.name += '.' + ext;
- }
-
- this.ext = ext;
- this.lastModifiedDate = file.lastModifiedDate ||
- file.lastModified && new Date(file.lastModified).toLocaleString() ||
- (new Date()).toLocaleString();
-
- Blob.apply( this, arguments );
- }
-
- return Base.inherits( Blob, File );
+ /**
+ * @fileOverview Blob
+ */
+ define('lib/blob',[
+ 'base',
+ 'runtime/client'
+ ], function( Base, RuntimeClient ) {
+
+ function Blob( ruid, source ) {
+ var me = this;
+
+ me.source = source;
+ me.ruid = ruid;
+ this.size = source.size || 0;
+
+ // 如果没有指定 mimetype, 但是知道文件后缀。
+ if ( !source.type && this.ext &&
+ ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
+ this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
+ } else {
+ this.type = source.type || 'application/octet-stream';
+ }
+
+ RuntimeClient.call( me, 'Blob' );
+ this.uid = source.uid || this.uid;
+
+ if ( ruid ) {
+ me.connectRuntime( ruid );
+ }
+ }
+
+ Base.inherits( RuntimeClient, {
+ constructor: Blob,
+
+ slice: function( start, end ) {
+ return this.exec( 'slice', start, end );
+ },
+
+ getSource: function() {
+ return this.source;
+ }
+ });
+
+ return Blob;
});
+ /**
+ * 为了统一化Flash的File和HTML5的File而存在。
+ * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
+ * @fileOverview File
+ */
+ define('lib/file',[
+ 'base',
+ 'lib/blob'
+ ], function( Base, Blob ) {
+
+ var uid = 1,
+ rExt = /\.([^.]+)$/;
+
+ function File( ruid, file ) {
+ var ext;
+
+ this.name = file.name || ('untitled' + uid++);
+ ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
+
+ // todo 支持其他类型文件的转换。
+ // 如果有 mimetype, 但是文件名里面没有找出后缀规律
+ if ( !ext && file.type ) {
+ ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
+ RegExp.$1.toLowerCase() : '';
+ this.name += '.' + ext;
+ }
+
+ this.ext = ext;
+ this.lastModifiedDate = file.lastModifiedDate ||
+ file.lastModified && new Date(file.lastModified).toLocaleString() ||
+ (new Date()).toLocaleString();
+
+ Blob.apply( this, arguments );
+ }
+
+ return Base.inherits( Blob, File );
+ });
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepicker',[
- 'base',
- 'runtime/client',
- 'lib/file'
- ], function( Base, RuntimeClient, File ) {
-
- var $ = Base.$;
-
- function FilePicker( opts ) {
- opts = this.options = $.extend({}, FilePicker.options, opts );
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepicker',[
+ 'base',
+ 'runtime/client',
+ 'lib/file'
+ ], function( Base, RuntimeClient, File ) {
+
+ var $ = Base.$;
+
+ function FilePicker( opts ) {
+ opts = this.options = $.extend({}, FilePicker.options, opts );
+
+ opts.container = $( opts.id );
+
+ if ( !opts.container.length ) {
+ throw new Error('按钮指定错误');
+ }
+
+ opts.innerHTML = opts.innerHTML || opts.label ||
+ opts.container.html() || '';
+
+ opts.button = $( opts.button || document.createElement('div') );
+ opts.button.html( opts.innerHTML );
+ opts.container.html( opts.button );
+
+ RuntimeClient.call( this, 'FilePicker', true );
+ }
+
+ FilePicker.options = {
+ button: null,
+ container: null,
+ label: null,
+ innerHTML: null,
+ multiple: true,
+ accept: null,
+ name: 'file',
+ style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
+ };
+
+ Base.inherits( RuntimeClient, {
+ constructor: FilePicker,
+
+ init: function() {
+ var me = this,
+ opts = me.options,
+ button = opts.button,
+ style = opts.style;
+
+ if (style)
+ button.addClass('webuploader-pick');
+
+ me.on( 'all', function( type ) {
+ var files;
+
+ switch ( type ) {
+ case 'mouseenter':
+ if (style)
+ button.addClass('webuploader-pick-hover');
+ break;
+
+ case 'mouseleave':
+ if (style)
+ button.removeClass('webuploader-pick-hover');
+ break;
+
+ case 'change':
+ files = me.exec('getFiles');
+ me.trigger( 'select', $.map( files, function( file ) {
+ file = new File( me.getRuid(), file );
+
+ // 记录来源。
+ file._refer = opts.container;
+ return file;
+ }), opts.container );
+ break;
+ }
+ });
+
+ me.connectRuntime( opts, function() {
+ me.refresh();
+ me.exec( 'init', opts );
+ me.trigger('ready');
+ });
+
+ this._resizeHandler = Base.bindFn( this.refresh, this );
+ $( window ).on( 'resize', this._resizeHandler );
+ },
+
+ refresh: function() {
+ var shimContainer = this.getRuntime().getContainer(),
+ button = this.options.button,
+ /*
+ width = button.outerWidth ?
+ button.outerWidth() : button.width(),
+
+ height = button.outerHeight ?
+ button.outerHeight() : button.height(),
+ */
+ width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
+ height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
+ pos = button.offset();
+
+ width && height && shimContainer.css({
+ bottom: 'auto',
+ right: 'auto',
+ width: width + 'px',
+ height: height + 'px'
+ }).offset( pos );
+ },
+
+ enable: function() {
+ var btn = this.options.button;
+
+ btn.removeClass('webuploader-pick-disable');
+ this.refresh();
+ },
+
+ disable: function() {
+ var btn = this.options.button;
+
+ this.getRuntime().getContainer().css({
+ top: '-99999px'
+ });
+
+ btn.addClass('webuploader-pick-disable');
+ },
+
+ destroy: function() {
+ var btn = this.options.button;
+ $( window ).off( 'resize', this._resizeHandler );
+ btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
+ 'webuploader-pick');
+ }
+ });
+
+ return FilePicker;
+ });
- opts.container = $( opts.id );
-
- if ( !opts.container.length ) {
- throw new Error('按钮指定错误');
- }
-
- opts.innerHTML = opts.innerHTML || opts.label ||
- opts.container.html() || '';
-
- opts.button = $( opts.button || document.createElement('div') );
- opts.button.html( opts.innerHTML );
- opts.container.html( opts.button );
-
- RuntimeClient.call( this, 'FilePicker', true );
- }
-
- FilePicker.options = {
- button: null,
- container: null,
- label: null,
- innerHTML: null,
- multiple: true,
- accept: null,
- name: 'file',
- style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
- };
-
- Base.inherits( RuntimeClient, {
- constructor: FilePicker,
-
- init: function() {
- var me = this,
- opts = me.options,
- button = opts.button,
- style = opts.style;
-
- if (style)
- button.addClass('webuploader-pick');
-
- me.on( 'all', function( type ) {
- var files;
-
- switch ( type ) {
- case 'mouseenter':
- if (style)
- button.addClass('webuploader-pick-hover');
- break;
-
- case 'mouseleave':
- if (style)
- button.removeClass('webuploader-pick-hover');
- break;
-
- case 'change':
- files = me.exec('getFiles');
- me.trigger( 'select', $.map( files, function( file ) {
- file = new File( me.getRuid(), file );
-
- // 记录来源。
- file._refer = opts.container;
- return file;
- }), opts.container );
- break;
- }
- });
-
- me.connectRuntime( opts, function() {
- me.refresh();
- me.exec( 'init', opts );
- me.trigger('ready');
- });
-
- this._resizeHandler = Base.bindFn( this.refresh, this );
- $( window ).on( 'resize', this._resizeHandler );
- },
-
- refresh: function() {
- var shimContainer = this.getRuntime().getContainer(),
- button = this.options.button,
- /*
- width = button.outerWidth ?
- button.outerWidth() : button.width(),
-
- height = button.outerHeight ?
- button.outerHeight() : button.height(),
- */
- width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
- height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
- pos = button.offset();
-
- width && height && shimContainer.css({
- bottom: 'auto',
- right: 'auto',
- width: width + 'px',
- height: height + 'px'
- }).offset( pos );
- },
-
- enable: function() {
- var btn = this.options.button;
-
- btn.removeClass('webuploader-pick-disable');
- this.refresh();
- },
-
- disable: function() {
- var btn = this.options.button;
-
- this.getRuntime().getContainer().css({
- top: '-99999px'
- });
-
- btn.addClass('webuploader-pick-disable');
- },
-
- destroy: function() {
- var btn = this.options.button;
- $( window ).off( 'resize', this._resizeHandler );
- btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
- 'webuploader-pick');
- }
- });
-
- return FilePicker;
+ /**
+ * @fileOverview 文件选择相关
+ */
+ define('widgets/filepicker',[
+ 'base',
+ 'uploader',
+ 'lib/filepicker',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePicker ) {
+ var $ = Base.$;
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Selector | Object} [pick=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 指定选择文件的按钮容器,不指定则不创建按钮。
+ *
+ * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
+ * * `label` {String} 请采用 `innerHTML` 代替
+ * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
+ * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
+ */
+ pick: null,
+
+ /**
+ * @property {Array} [accept=null]
+ * @namespace options
+ * @for Uploader
+ * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
+ *
+ * * `title` {String} 文字描述
+ * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
+ * * `mimeTypes` {String} 多个用逗号分割。
+ *
+ * 如:
+ *
+ * ```
+ * {
+ * title: 'Images',
+ * extensions: 'gif,jpg,jpeg,bmp,png',
+ * mimeTypes: 'image/*'
+ * }
+ * ```
+ */
+ accept: null/*{
+ title: 'Images',
+ extensions: 'gif,jpg,jpeg,bmp,png',
+ mimeTypes: 'image/*'
+ }*/
+ });
+
+ return Uploader.register({
+ name: 'picker',
+
+ init: function( opts ) {
+ this.pickers = [];
+ return opts.pick && this.addBtn( opts.pick );
+ },
+
+ refresh: function() {
+ $.each( this.pickers, function() {
+ this.refresh();
+ });
+ },
+
+ /**
+ * @method addButton
+ * @for Uploader
+ * @grammar addButton( pick ) => Promise
+ * @description
+ * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
+ * @example
+ * uploader.addButton({
+ * id: '#btnContainer',
+ * innerHTML: '选择文件'
+ * });
+ */
+ addBtn: function( pick ) {
+ var me = this,
+ opts = me.options,
+ accept = opts.accept,
+ promises = [];
+
+ if ( !pick ) {
+ return;
+ }
+
+ $.isPlainObject( pick ) || (pick = {
+ id: pick
+ });
+
+ $( pick.id ).each(function() {
+ var options, picker, deferred;
+
+ deferred = Base.Deferred();
+
+ options = $.extend({}, pick, {
+ accept: $.isPlainObject( accept ) ? [ accept ] : accept,
+ swf: opts.swf,
+ runtimeOrder: opts.runtimeOrder,
+ id: this
+ });
+
+ picker = new FilePicker( options );
+
+ picker.once( 'ready', deferred.resolve );
+ picker.on( 'select', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ picker.on('dialogopen', function() {
+ me.owner.trigger('dialogOpen', picker.button);
+ });
+ picker.init();
+
+ me.pickers.push( picker );
+
+ promises.push( deferred.promise() );
+ });
+
+ return Base.when.apply( Base, promises );
+ },
+
+ disable: function() {
+ $.each( this.pickers, function() {
+ this.disable();
+ });
+ },
+
+ enable: function() {
+ $.each( this.pickers, function() {
+ this.enable();
+ });
+ },
+
+ destroy: function() {
+ $.each( this.pickers, function() {
+ this.destroy();
+ });
+ this.pickers = null;
+ }
+ });
});
-
- /**
- * @fileOverview 文件选择相关
- */
- define('widgets/filepicker',[
- 'base',
- 'uploader',
- 'lib/filepicker',
- 'widgets/widget'
- ], function( Base, Uploader, FilePicker ) {
- var $ = Base.$;
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Selector | Object} [pick=undefined]
- * @namespace options
- * @for Uploader
- * @description 指定选择文件的按钮容器,不指定则不创建按钮。
- *
- * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
- * * `label` {String} 请采用 `innerHTML` 代替
- * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
- * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
- */
- pick: null,
-
- /**
- * @property {Array} [accept=null]
- * @namespace options
- * @for Uploader
- * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
- *
- * * `title` {String} 文字描述
- * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
- * * `mimeTypes` {String} 多个用逗号分割。
- *
- * 如:
- *
- * ```
- * {
- * title: 'Images',
- * extensions: 'gif,jpg,jpeg,bmp,png',
- * mimeTypes: 'image/*'
- * }
- * ```
- */
- accept: null/*{
- title: 'Images',
- extensions: 'gif,jpg,jpeg,bmp,png',
- mimeTypes: 'image/*'
- }*/
- });
-
- return Uploader.register({
- name: 'picker',
-
- init: function( opts ) {
- this.pickers = [];
- return opts.pick && this.addBtn( opts.pick );
- },
-
- refresh: function() {
- $.each( this.pickers, function() {
- this.refresh();
- });
- },
-
- /**
- * @method addButton
- * @for Uploader
- * @grammar addButton( pick ) => Promise
- * @description
- * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
- * @example
- * uploader.addButton({
- * id: '#btnContainer',
- * innerHTML: '选择文件'
- * });
- */
- addBtn: function( pick ) {
- var me = this,
- opts = me.options,
- accept = opts.accept,
- promises = [];
-
- if ( !pick ) {
- return;
- }
-
- $.isPlainObject( pick ) || (pick = {
- id: pick
- });
-
- $( pick.id ).each(function() {
- var options, picker, deferred;
-
- deferred = Base.Deferred();
-
- options = $.extend({}, pick, {
- accept: $.isPlainObject( accept ) ? [ accept ] : accept,
- swf: opts.swf,
- runtimeOrder: opts.runtimeOrder,
- id: this
- });
-
- picker = new FilePicker( options );
-
- picker.once( 'ready', deferred.resolve );
- picker.on( 'select', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- picker.on('dialogopen', function() {
- me.owner.trigger('dialogOpen', picker.button);
- });
- picker.init();
-
- me.pickers.push( picker );
-
- promises.push( deferred.promise() );
- });
-
- return Base.when.apply( Base, promises );
- },
-
- disable: function() {
- $.each( this.pickers, function() {
- this.disable();
- });
- },
-
- enable: function() {
- $.each( this.pickers, function() {
- this.enable();
- });
- },
-
- destroy: function() {
- $.each( this.pickers, function() {
- this.destroy();
- });
- this.pickers = null;
- }
- });
+ /**
+ * @fileOverview Image
+ */
+ define('lib/image',[
+ 'base',
+ 'runtime/client',
+ 'lib/blob'
+ ], function( Base, RuntimeClient, Blob ) {
+ var $ = Base.$;
+
+ // 构造器。
+ function Image( opts ) {
+ this.options = $.extend({}, Image.options, opts );
+ RuntimeClient.call( this, 'Image' );
+
+ this.on( 'load', function() {
+ this._info = this.exec('info');
+ this._meta = this.exec('meta');
+ });
+ }
+
+ // 默认选项。
+ Image.options = {
+
+ // 默认的图片处理质量
+ quality: 90,
+
+ // 是否裁剪
+ crop: false,
+
+ // 是否保留头部信息
+ preserveHeaders: false,
+
+ // 是否允许放大。
+ allowMagnify: false
+ };
+
+ // 继承RuntimeClient.
+ Base.inherits( RuntimeClient, {
+ constructor: Image,
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._meta = val;
+ return this;
+ }
+
+ // getter
+ return this._meta;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ ruid = blob.getRuid();
+
+ this.connectRuntime( ruid, function() {
+ me.exec( 'init', me.options );
+ me.exec( 'loadFromBlob', blob );
+ });
+ },
+
+ resize: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'resize' ].concat( args ) );
+ },
+
+ crop: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'crop' ].concat( args ) );
+ },
+
+ getAsDataUrl: function( type ) {
+ return this.exec( 'getAsDataUrl', type );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this.exec( 'getAsBlob', type );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
+
+ return Image;
});
- /**
- * @fileOverview Image
- */
- define('lib/image',[
- 'base',
- 'runtime/client',
- 'lib/blob'
- ], function( Base, RuntimeClient, Blob ) {
- var $ = Base.$;
-
- // 构造器。
- function Image( opts ) {
- this.options = $.extend({}, Image.options, opts );
- RuntimeClient.call( this, 'Image' );
-
- this.on( 'load', function() {
- this._info = this.exec('info');
- this._meta = this.exec('meta');
- });
- }
-
- // 默认选项。
- Image.options = {
-
- // 默认的图片处理质量
- quality: 90,
-
- // 是否裁剪
- crop: false,
-
- // 是否保留头部信息
- preserveHeaders: false,
-
- // 是否允许放大。
- allowMagnify: false
- };
-
- // 继承RuntimeClient.
- Base.inherits( RuntimeClient, {
- constructor: Image,
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._meta = val;
- return this;
- }
-
- // getter
- return this._meta;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- ruid = blob.getRuid();
-
- this.connectRuntime( ruid, function() {
- me.exec( 'init', me.options );
- me.exec( 'loadFromBlob', blob );
- });
- },
-
- resize: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'resize' ].concat( args ) );
- },
-
- crop: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'crop' ].concat( args ) );
- },
-
- getAsDataUrl: function( type ) {
- return this.exec( 'getAsDataUrl', type );
- },
-
- getAsBlob: function( type ) {
- var blob = this.exec( 'getAsBlob', type );
-
- return new Blob( this.getRuid(), blob );
- }
- });
-
- return Image;
+ /**
+ * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
+ */
+ define('widgets/image',[
+ 'base',
+ 'uploader',
+ 'lib/image',
+ 'widgets/widget'
+ ], function( Base, Uploader, Image ) {
+
+ var $ = Base.$,
+ throttle;
+
+ // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
+ throttle = (function( max ) {
+ var occupied = 0,
+ waiting = [],
+ tick = function() {
+ var item;
+
+ while ( waiting.length && occupied < max ) {
+ item = waiting.shift();
+ occupied += item[ 0 ];
+ item[ 1 ]();
+ }
+ };
+
+ return function( emiter, size, cb ) {
+ waiting.push([ size, cb ]);
+ emiter.once( 'destroy', function() {
+ occupied -= size;
+ setTimeout( tick, 1 );
+ });
+ setTimeout( tick, 1 );
+ };
+ })( 5 * 1024 * 1024 );
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Object} [thumb]
+ * @namespace options
+ * @for Uploader
+ * @description 配置生成缩略图的选项。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 110,
+ * height: 110,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 70,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: true,
+ *
+ * // 是否允许裁剪。
+ * crop: true,
+ *
+ * // 为空的话则保留原有图片格式。
+ * // 否则强制转换成指定的类型。
+ * type: 'image/jpeg'
+ * }
+ * ```
+ */
+ thumb: {
+ width: 110,
+ height: 110,
+ quality: 70,
+ allowMagnify: true,
+ crop: true,
+ preserveHeaders: false,
+
+ // 为空的话则保留原有图片格式。
+ // 否则强制转换成指定的类型。
+ // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
+ // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
+ type: 'image/jpeg'
+ },
+
+ /**
+ * @property {Object} [compress]
+ * @namespace options
+ * @for Uploader
+ * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 1600,
+ * height: 1600,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 90,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: false,
+ *
+ * // 是否允许裁剪。
+ * crop: false,
+ *
+ * // 是否保留头部meta信息。
+ * preserveHeaders: true,
+ *
+ * // 如果发现压缩后文件大小比原来还大,则使用原来图片
+ * // 此属性可能会影响图片自动纠正功能
+ * noCompressIfLarger: false,
+ *
+ * // 单位字节,如果图片大小小于此值,不会采用压缩。
+ * compressSize: 0
+ * }
+ * ```
+ */
+ compress: {
+ width: 1600,
+ height: 1600,
+ quality: 90,
+ allowMagnify: false,
+ crop: false,
+ preserveHeaders: true
+ }
+ });
+
+ return Uploader.register({
+
+ name: 'image',
+
+
+ /**
+ * 生成缩略图,此过程为异步,所以需要传入`callback`。
+ * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
+ *
+ * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
+ *
+ * `callback`中可以接收到两个参数。
+ * * 第一个为error,如果生成缩略图有错误,此error将为真。
+ * * 第二个为ret, 缩略图的Data URL值。
+ *
+ * **注意**
+ * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
+ * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
+ *
+ * @method makeThumb
+ * @grammar makeThumb( file, callback ) => undefined
+ * @grammar makeThumb( file, callback, width, height ) => undefined
+ * @for Uploader
+ * @example
+ *
+ * uploader.on( 'fileQueued', function( file ) {
+ * var $li = ...;
+ *
+ * uploader.makeThumb( file, function( error, ret ) {
+ * if ( error ) {
+ * $li.text('预览错误');
+ * } else {
+ * $li.append('');
+ * }
+ * });
+ *
+ * });
+ */
+ makeThumb: function( file, cb, width, height ) {
+ var opts, image;
+
+ file = this.request( 'get-file', file );
+
+ // 只预览图片格式。
+ if ( !file.type.match( /^image/ ) ) {
+ cb( true );
+ return;
+ }
+
+ opts = $.extend({}, this.options.thumb );
+
+ // 如果传入的是object.
+ if ( $.isPlainObject( width ) ) {
+ opts = $.extend( opts, width );
+ width = null;
+ }
+
+ width = width || opts.width;
+ height = height || opts.height;
+
+ image = new Image( opts );
+
+ image.once( 'load', function() {
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ // 当 resize 完后
+ image.once( 'complete', function() {
+ cb( false, image.getAsDataUrl( opts.type ) );
+ image.destroy();
+ });
+
+ image.once( 'error', function( reason ) {
+ cb( reason || true );
+ image.destroy();
+ });
+
+ throttle( image, file.source.size, function() {
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+ image.loadFromBlob( file.source );
+ });
+ },
+
+ beforeSendFile: function( file ) {
+ var opts = this.options.compress || this.options.resize,
+ compressSize = opts && opts.compressSize || 0,
+ noCompressIfLarger = opts && opts.noCompressIfLarger || false,
+ image, deferred;
+
+ file = this.request( 'get-file', file );
+
+ // 只压缩 jpeg 图片格式。
+ // gif 可能会丢失针
+ // bmp png 基本上尺寸都不大,且压缩比比较小。
+ if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
+ file.size < compressSize ||
+ file._compressed ) {
+ return;
+ }
+
+ opts = $.extend({}, opts );
+ deferred = Base.Deferred();
+
+ image = new Image( opts );
+
+ deferred.always(function() {
+ image.destroy();
+ image = null;
+ });
+ image.once( 'error', deferred.reject );
+ image.once( 'load', function() {
+ var width = opts.width,
+ height = opts.height;
+
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ image.once( 'complete', function() {
+ var blob, size;
+
+ // 移动端 UC / qq 浏览器的无图模式下
+ // ctx.getImageData 处理大图的时候会报 Exception
+ // INDEX_SIZE_ERR: DOM Exception 1
+ try {
+ blob = image.getAsBlob( opts.type );
+
+ size = file.size;
+
+ // 如果压缩后,比原来还大则不用压缩后的。
+ if ( !noCompressIfLarger || blob.size < size ) {
+ // file.source.destroy && file.source.destroy();
+ file.source = blob;
+ file.size = blob.size;
+
+ file.trigger( 'resize', blob.size, size );
+ }
+
+ // 标记,避免重复压缩。
+ file._compressed = true;
+ deferred.resolve();
+ } catch ( e ) {
+ // 出错了直接继续,让其上传原始图片
+ deferred.resolve();
+ }
+ });
+
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+
+ image.loadFromBlob( file.source );
+ return deferred.promise();
+ }
+ });
});
- /**
- * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
- */
- define('widgets/image',[
- 'base',
- 'uploader',
- 'lib/image',
- 'widgets/widget'
- ], function( Base, Uploader, Image ) {
-
- var $ = Base.$,
- throttle;
-
- // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
- throttle = (function( max ) {
- var occupied = 0,
- waiting = [],
- tick = function() {
- var item;
-
- while ( waiting.length && occupied < max ) {
- item = waiting.shift();
- occupied += item[ 0 ];
- item[ 1 ]();
- }
- };
-
- return function( emiter, size, cb ) {
- waiting.push([ size, cb ]);
- emiter.once( 'destroy', function() {
- occupied -= size;
- setTimeout( tick, 1 );
- });
- setTimeout( tick, 1 );
- };
- })( 5 * 1024 * 1024 );
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Object} [thumb]
- * @namespace options
- * @for Uploader
- * @description 配置生成缩略图的选项。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 110,
- * height: 110,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 70,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: true,
- *
- * // 是否允许裁剪。
- * crop: true,
- *
- * // 为空的话则保留原有图片格式。
- * // 否则强制转换成指定的类型。
- * type: 'image/jpeg'
- * }
- * ```
- */
- thumb: {
- width: 110,
- height: 110,
- quality: 70,
- allowMagnify: true,
- crop: true,
- preserveHeaders: false,
-
- // 为空的话则保留原有图片格式。
- // 否则强制转换成指定的类型。
- // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
- // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
- type: 'image/jpeg'
- },
-
- /**
- * @property {Object} [compress]
- * @namespace options
- * @for Uploader
- * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 1600,
- * height: 1600,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 90,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: false,
- *
- * // 是否允许裁剪。
- * crop: false,
- *
- * // 是否保留头部meta信息。
- * preserveHeaders: true,
- *
- * // 如果发现压缩后文件大小比原来还大,则使用原来图片
- * // 此属性可能会影响图片自动纠正功能
- * noCompressIfLarger: false,
- *
- * // 单位字节,如果图片大小小于此值,不会采用压缩。
- * compressSize: 0
- * }
- * ```
- */
- compress: {
- width: 1600,
- height: 1600,
- quality: 90,
- allowMagnify: false,
- crop: false,
- preserveHeaders: true
- }
- });
-
- return Uploader.register({
-
- name: 'image',
-
-
- /**
- * 生成缩略图,此过程为异步,所以需要传入`callback`。
- * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
- *
- * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
- *
- * `callback`中可以接收到两个参数。
- * * 第一个为error,如果生成缩略图有错误,此error将为真。
- * * 第二个为ret, 缩略图的Data URL值。
- *
- * **注意**
- * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
- * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
- *
- * @method makeThumb
- * @grammar makeThumb( file, callback ) => undefined
- * @grammar makeThumb( file, callback, width, height ) => undefined
- * @for Uploader
- * @example
- *
- * uploader.on( 'fileQueued', function( file ) {
- * var $li = ...;
- *
- * uploader.makeThumb( file, function( error, ret ) {
- * if ( error ) {
- * $li.text('预览错误');
- * } else {
- * $li.append('');
- * }
- * });
- *
- * });
- */
- makeThumb: function( file, cb, width, height ) {
- var opts, image;
-
- file = this.request( 'get-file', file );
-
- // 只预览图片格式。
- if ( !file.type.match( /^image/ ) ) {
- cb( true );
- return;
- }
-
- opts = $.extend({}, this.options.thumb );
-
- // 如果传入的是object.
- if ( $.isPlainObject( width ) ) {
- opts = $.extend( opts, width );
- width = null;
- }
-
- width = width || opts.width;
- height = height || opts.height;
-
- image = new Image( opts );
-
- image.once( 'load', function() {
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- // 当 resize 完后
- image.once( 'complete', function() {
- cb( false, image.getAsDataUrl( opts.type ) );
- image.destroy();
- });
-
- image.once( 'error', function( reason ) {
- cb( reason || true );
- image.destroy();
- });
-
- throttle( image, file.source.size, function() {
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
- image.loadFromBlob( file.source );
- });
- },
-
- beforeSendFile: function( file ) {
- var opts = this.options.compress || this.options.resize,
- compressSize = opts && opts.compressSize || 0,
- noCompressIfLarger = opts && opts.noCompressIfLarger || false,
- image, deferred;
-
- file = this.request( 'get-file', file );
-
- // 只压缩 jpeg 图片格式。
- // gif 可能会丢失针
- // bmp png 基本上尺寸都不大,且压缩比比较小。
- if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
- file.size < compressSize ||
- file._compressed ) {
- return;
- }
-
- opts = $.extend({}, opts );
- deferred = Base.Deferred();
-
- image = new Image( opts );
-
- deferred.always(function() {
- image.destroy();
- image = null;
- });
- image.once( 'error', deferred.reject );
- image.once( 'load', function() {
- var width = opts.width,
- height = opts.height;
-
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- image.once( 'complete', function() {
- var blob, size;
-
- // 移动端 UC / qq 浏览器的无图模式下
- // ctx.getImageData 处理大图的时候会报 Exception
- // INDEX_SIZE_ERR: DOM Exception 1
- try {
- blob = image.getAsBlob( opts.type );
-
- size = file.size;
-
- // 如果压缩后,比原来还大则不用压缩后的。
- if ( !noCompressIfLarger || blob.size < size ) {
- // file.source.destroy && file.source.destroy();
- file.source = blob;
- file.size = blob.size;
-
- file.trigger( 'resize', blob.size, size );
- }
-
- // 标记,避免重复压缩。
- file._compressed = true;
- deferred.resolve();
- } catch ( e ) {
- // 出错了直接继续,让其上传原始图片
- deferred.resolve();
- }
- });
+ /**
+ * @fileOverview 文件属性封装
+ */
+ define('file',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ idPrefix = 'WU_FILE_',
+ idSuffix = 0,
+ rExt = /\.([^.]+)$/,
+ statusMap = {};
+
+ function gid() {
+ return idPrefix + idSuffix++;
+ }
+
+ /**
+ * 文件类
+ * @class File
+ * @constructor 构造函数
+ * @grammar new File( source ) => File
+ * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
+ */
+ function WUFile( source ) {
+
+ /**
+ * 文件名,包括扩展名(后缀)
+ * @property name
+ * @type {string}
+ */
+ this.name = source.name || 'Untitled';
+
+ /**
+ * 文件体积(字节)
+ * @property size
+ * @type {uint}
+ * @default 0
+ */
+ this.size = source.size || 0;
+
+ /**
+ * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
+ * @property type
+ * @type {string}
+ * @default 'application/octet-stream'
+ */
+ this.type = source.type || 'application/octet-stream';
+
+ /**
+ * 文件最后修改日期
+ * @property lastModifiedDate
+ * @type {int}
+ * @default 当前时间戳
+ */
+ this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
+
+ /**
+ * 文件ID,每个对象具有唯一ID,与文件名无关
+ * @property id
+ * @type {string}
+ */
+ this.id = gid();
+
+ /**
+ * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
+ * @property ext
+ * @type {string}
+ */
+ this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
+
+
+ /**
+ * 状态文字说明。在不同的status语境下有不同的用途。
+ * @property statusText
+ * @type {string}
+ */
+ this.statusText = '';
+
+ // 存储文件状态,防止通过属性直接修改
+ statusMap[ this.id ] = WUFile.Status.INITED;
+
+ this.source = source;
+ this.loaded = 0;
+
+ this.on( 'error', function( msg ) {
+ this.setStatus( WUFile.Status.ERROR, msg );
+ });
+ }
+
+ $.extend( WUFile.prototype, {
+
+ /**
+ * 设置状态,状态变化时会触发`change`事件。
+ * @method setStatus
+ * @grammar setStatus( status[, statusText] );
+ * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
+ * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
+ */
+ setStatus: function( status, text ) {
+
+ var prevStatus = statusMap[ this.id ];
+
+ typeof text !== 'undefined' && (this.statusText = text);
+
+ if ( status !== prevStatus ) {
+ statusMap[ this.id ] = status;
+ /**
+ * 文件状态变化
+ * @event statuschange
+ */
+ this.trigger( 'statuschange', status, prevStatus );
+ }
+
+ },
+
+ /**
+ * 获取文件状态
+ * @return {File.Status}
+ * @example
+ 文件状态具体包括以下几种类型:
+ {
+ // 初始化
+ INITED: 0,
+ // 已入队列
+ QUEUED: 1,
+ // 正在上传
+ PROGRESS: 2,
+ // 上传出错
+ ERROR: 3,
+ // 上传成功
+ COMPLETE: 4,
+ // 上传取消
+ CANCELLED: 5
+ }
+ */
+ getStatus: function() {
+ return statusMap[ this.id ];
+ },
+
+ /**
+ * 获取文件原始信息。
+ * @return {*}
+ */
+ getSource: function() {
+ return this.source;
+ },
+
+ destroy: function() {
+ this.off();
+ delete statusMap[ this.id ];
+ }
+ });
+
+ Mediator.installTo( WUFile.prototype );
+
+ /**
+ * 文件状态值,具体包括以下几种类型:
+ * * `inited` 初始状态
+ * * `queued` 已经进入队列, 等待上传
+ * * `progress` 上传中
+ * * `complete` 上传完成。
+ * * `error` 上传出错,可重试
+ * * `interrupt` 上传中断,可续传。
+ * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
+ * * `cancelled` 文件被移除。
+ * @property {Object} Status
+ * @namespace File
+ * @class File
+ * @static
+ */
+ WUFile.Status = {
+ INITED: 'inited', // 初始状态
+ QUEUED: 'queued', // 已经进入队列, 等待上传
+ PROGRESS: 'progress', // 上传中
+ ERROR: 'error', // 上传出错,可重试
+ COMPLETE: 'complete', // 上传完成。
+ CANCELLED: 'cancelled', // 上传取消。
+ INTERRUPT: 'interrupt', // 上传中断,可续传。
+ INVALID: 'invalid' // 文件不合格,不能重试上传。
+ };
+
+ return WUFile;
+ });
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
+ /**
+ * @fileOverview 文件队列
+ */
+ define('queue',[
+ 'base',
+ 'mediator',
+ 'file'
+ ], function( Base, Mediator, WUFile ) {
+
+ var $ = Base.$,
+ STATUS = WUFile.Status;
+
+ /**
+ * 文件队列, 用来存储各个状态中的文件。
+ * @class Queue
+ * @extends Mediator
+ */
+ function Queue() {
+
+ /**
+ * 统计文件数。
+ * * `numOfQueue` 队列中的文件数。
+ * * `numOfSuccess` 上传成功的文件数
+ * * `numOfCancel` 被取消的文件数
+ * * `numOfProgress` 正在上传中的文件数
+ * * `numOfUploadFailed` 上传错误的文件数。
+ * * `numOfInvalid` 无效的文件数。
+ * * `numOfDeleted` 被移除的文件数。
+ * * `numOfInterrupt` 被中断的文件数。
+ * @property {Object} stats
+ */
+ this.stats = {
+ numOfQueue: 0,
+ numOfSuccess: 0,
+ numOfCancel: 0,
+ numOfProgress: 0,
+ numOfUploadFailed: 0,
+ numOfInvalid: 0,
+ numOfDeleted: 0,
+ numOfInterrupt: 0
+ };
+
+ // 上传队列,仅包括等待上传的文件
+ this._queue = [];
+
+ // 存储所有文件
+ this._map = {};
+ }
+
+ $.extend( Queue.prototype, {
+
+ /**
+ * 将新文件加入对队列尾部
+ *
+ * @method append
+ * @param {File} file 文件对象
+ */
+ append: function( file ) {
+ this._queue.push( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 将新文件加入对队列头部
+ *
+ * @method prepend
+ * @param {File} file 文件对象
+ */
+ prepend: function( file ) {
+ this._queue.unshift( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 获取文件对象
+ *
+ * @method getFile
+ * @param {String} fileId 文件ID
+ * @return {File}
+ */
+ getFile: function( fileId ) {
+ if ( typeof fileId !== 'string' ) {
+ return fileId;
+ }
+ return this._map[ fileId ];
+ },
+
+ /**
+ * 从队列中取出一个指定状态的文件。
+ * @grammar fetch( status ) => File
+ * @method fetch
+ * @param {String} status [文件状态值](#WebUploader:File:File.Status)
+ * @return {File} [File](#WebUploader:File)
+ */
+ fetch: function( status ) {
+ var len = this._queue.length,
+ i, file;
+
+ status = status || STATUS.QUEUED;
+
+ for ( i = 0; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( status === file.getStatus() ) {
+ return file;
+ }
+ }
+
+ return null;
+ },
+
+ /**
+ * 对队列进行排序,能够控制文件上传顺序。
+ * @grammar sort( fn ) => undefined
+ * @method sort
+ * @param {Function} fn 排序方法
+ */
+ sort: function( fn ) {
+ if ( typeof fn === 'function' ) {
+ this._queue.sort( fn );
+ }
+ },
+
+ /**
+ * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
+ * @grammar getFiles( [status1[, status2 ...]] ) => Array
+ * @method getFiles
+ * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
+ */
+ getFiles: function() {
+ var sts = [].slice.call( arguments, 0 ),
+ ret = [],
+ i = 0,
+ len = this._queue.length,
+ file;
+
+ for ( ; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
+ continue;
+ }
+
+ ret.push( file );
+ }
+
+ return ret;
+ },
+
+ /**
+ * 在队列中删除文件。
+ * @grammar removeFile( file ) => Array
+ * @method removeFile
+ * @param {File} 文件对象。
+ */
+ removeFile: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( existing ) {
+ delete this._map[ file.id ];
+ this._delFile(file);
+ file.destroy();
+ this.stats.numOfDeleted++;
+
+ }
+ },
+
+ _fileAdded: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( !existing ) {
+ this._map[ file.id ] = file;
+
+ file.on( 'statuschange', function( cur, pre ) {
+ me._onFileStatusChange( cur, pre );
+ });
+ }
+ },
+
+ _delFile : function(file){
+ for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
+ if(this._queue[i] == file){
+ this._queue.splice(i,1);
+ break;
+ }
+ }
+ },
+
+ _onFileStatusChange: function( curStatus, preStatus ) {
+ var stats = this.stats;
+
+ switch ( preStatus ) {
+ case STATUS.PROGRESS:
+ stats.numOfProgress--;
+ break;
+
+ case STATUS.QUEUED:
+ stats.numOfQueue --;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed--;
+ break;
+
+ case STATUS.INVALID:
+ stats.numOfInvalid--;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt--;
+ break;
+ }
+
+ switch ( curStatus ) {
+ case STATUS.QUEUED:
+ stats.numOfQueue++;
+ break;
+
+ case STATUS.PROGRESS:
+ stats.numOfProgress++;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed++;
+ break;
+
+ case STATUS.COMPLETE:
+ stats.numOfSuccess++;
+ break;
+
+ case STATUS.CANCELLED:
+ stats.numOfCancel++;
+ break;
+
+
+ case STATUS.INVALID:
+ stats.numOfInvalid++;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt++;
+ break;
+ }
+ }
+
+ });
+
+ Mediator.installTo( Queue.prototype );
+
+ return Queue;
+ });
- image.loadFromBlob( file.source );
- return deferred.promise();
- }
- });
+ /**
+ * @fileOverview 队列
+ */
+ define('widgets/queue',[
+ 'base',
+ 'uploader',
+ 'queue',
+ 'file',
+ 'lib/file',
+ 'runtime/client',
+ 'widgets/widget'
+ ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
+
+ var $ = Base.$,
+ rExt = /\.\w+$/,
+ Status = WUFile.Status;
+
+ return Uploader.register({
+ name: 'queue',
+
+ init: function( opts ) {
+ var me = this,
+ deferred, len, i, item, arr, accept, runtime;
+
+ if ( $.isPlainObject( opts.accept ) ) {
+ opts.accept = [ opts.accept ];
+ }
+
+ // accept中的中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].extensions;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = '\\.' + arr.join(',')
+ .replace( /,/g, '$|\\.' )
+ .replace( /\*/g, '.*' ) + '$';
+ }
+
+ me.accept = new RegExp( accept, 'i' );
+ }
+
+ me.queue = new Queue();
+ me.stats = me.queue.stats;
+
+ // 如果当前不是html5运行时,那就算了。
+ // 不执行后续操作
+ if ( this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ // 创建一个 html5 运行时的 placeholder
+ // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
+ deferred = Base.Deferred();
+ this.placeholder = runtime = new RuntimeClient('Placeholder');
+ runtime.connectRuntime({
+ runtimeOrder: 'html5'
+ }, function() {
+ me._ruid = runtime.getRuid();
+ deferred.resolve();
+ });
+ return deferred.promise();
+ },
+
+
+ // 为了支持外部直接添加一个原生File对象。
+ _wrapFile: function( file ) {
+ if ( !(file instanceof WUFile) ) {
+
+ if ( !(file instanceof File) ) {
+ if ( !this._ruid ) {
+ throw new Error('Can\'t add external files.');
+ }
+ file = new File( this._ruid, file );
+ }
+
+ file = new WUFile( file );
+ }
+
+ return file;
+ },
+
+ // 判断文件是否可以被加入队列
+ acceptFile: function( file ) {
+ var invalid = !file || !file.size || this.accept &&
+
+ // 如果名字中有后缀,才做后缀白名单处理。
+ rExt.exec( file.name ) && !this.accept.test( file.name );
+
+ return !invalid;
+ },
+
+
+ /**
+ * @event beforeFileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
+ * @for Uploader
+ */
+
+ /**
+ * @event fileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列以后触发。
+ * @for Uploader
+ */
+
+ _addFile: function( file ) {
+ var me = this;
+
+ file = me._wrapFile( file );
+
+ // 不过类型判断允许不允许,先派送 `beforeFileQueued`
+ if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
+ return;
+ }
+
+ // 类型不匹配,则派送错误事件,并返回。
+ if ( !me.acceptFile( file ) ) {
+ me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
+ return;
+ }
+
+ me.queue.append( file );
+ me.owner.trigger( 'fileQueued', file );
+ return file;
+ },
+
+ getFile: function( fileId ) {
+ return this.queue.getFile( fileId );
+ },
+
+ /**
+ * @event filesQueued
+ * @param {File} files 数组,内容为原始File(lib/File)对象。
+ * @description 当一批文件添加进队列以后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @property {Boolean} [auto=false]
+ * @namespace options
+ * @for Uploader
+ * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
+ *
+ */
+
+ /**
+ * @method addFiles
+ * @grammar addFiles( file ) => undefined
+ * @grammar addFiles( [file1, file2 ...] ) => undefined
+ * @param {Array of File or File} [files] Files 对象 数组
+ * @description 添加文件到队列
+ * @for Uploader
+ */
+ addFile: function( files ) {
+ var me = this;
+
+ if ( !files.length ) {
+ files = [ files ];
+ }
+
+ files = $.map( files, function( file ) {
+ return me._addFile( file );
+ });
+
+ if ( files.length ) {
+
+ me.owner.trigger( 'filesQueued', files );
+
+ if ( me.options.auto ) {
+ setTimeout(function() {
+ me.request('start-upload');
+ }, 20 );
+ }
+ }
+ },
+
+ getStats: function() {
+ return this.stats;
+ },
+
+ /**
+ * @event fileDequeued
+ * @param {File} file File对象
+ * @description 当文件被移除队列后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method removeFile
+ * @grammar removeFile( file ) => undefined
+ * @grammar removeFile( id ) => undefined
+ * @grammar removeFile( file, true ) => undefined
+ * @grammar removeFile( id, true ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.removeFile( file );
+ * })
+ */
+ removeFile: function( file, remove ) {
+ var me = this;
+
+ file = file.id ? file : me.queue.getFile( file );
+
+ this.request( 'cancel-file', file );
+
+ if ( remove ) {
+ this.queue.removeFile( file );
+ }
+ },
+
+ /**
+ * @method getFiles
+ * @grammar getFiles() => Array
+ * @grammar getFiles( status1, status2, status... ) => Array
+ * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
+ * @for Uploader
+ * @example
+ * console.log( uploader.getFiles() ); // => all files
+ * console.log( uploader.getFiles('error') ) // => all error files.
+ */
+ getFiles: function() {
+ return this.queue.getFiles.apply( this.queue, arguments );
+ },
+
+ fetchFile: function() {
+ return this.queue.fetch.apply( this.queue, arguments );
+ },
+
+ /**
+ * @method retry
+ * @grammar retry() => undefined
+ * @grammar retry( file ) => undefined
+ * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
+ * @for Uploader
+ * @example
+ * function retry() {
+ * uploader.retry();
+ * }
+ */
+ retry: function( file, noForceStart ) {
+ var me = this,
+ files, i, len;
+
+ if ( file ) {
+ file = file.id ? file : me.queue.getFile( file );
+ file.setStatus( Status.QUEUED );
+ noForceStart || me.request('start-upload');
+ return;
+ }
+
+ files = me.queue.getFiles( Status.ERROR );
+ i = 0;
+ len = files.length;
+
+ for ( ; i < len; i++ ) {
+ file = files[ i ];
+ file.setStatus( Status.QUEUED );
+ }
+
+ me.request('start-upload');
+ },
+
+ /**
+ * @method sort
+ * @grammar sort( fn ) => undefined
+ * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
+ * @for Uploader
+ */
+ sortFiles: function() {
+ return this.queue.sort.apply( this.queue, arguments );
+ },
+
+ /**
+ * @event reset
+ * @description 当 uploader 被重置的时候触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method reset
+ * @grammar reset() => undefined
+ * @description 重置uploader。目前只重置了队列。
+ * @for Uploader
+ * @example
+ * uploader.reset();
+ */
+ reset: function() {
+ this.owner.trigger('reset');
+ this.queue = new Queue();
+ this.stats = this.queue.stats;
+ },
+
+ destroy: function() {
+ this.reset();
+ this.placeholder && this.placeholder.destroy();
+ }
+ });
+
});
- /**
- * @fileOverview 文件属性封装
- */
- define('file',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- idPrefix = 'WU_FILE_',
- idSuffix = 0,
- rExt = /\.([^.]+)$/,
- statusMap = {};
-
- function gid() {
- return idPrefix + idSuffix++;
- }
-
- /**
- * 文件类
- * @class File
- * @constructor 构造函数
- * @grammar new File( source ) => File
- * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
- */
- function WUFile( source ) {
-
- /**
- * 文件名,包括扩展名(后缀)
- * @property name
- * @type {string}
- */
- this.name = source.name || 'Untitled';
-
- /**
- * 文件体积(字节)
- * @property size
- * @type {uint}
- * @default 0
- */
- this.size = source.size || 0;
-
- /**
- * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
- * @property type
- * @type {string}
- * @default 'application/octet-stream'
- */
- this.type = source.type || 'application/octet-stream';
-
- /**
- * 文件最后修改日期
- * @property lastModifiedDate
- * @type {int}
- * @default 当前时间戳
- */
- this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
-
- /**
- * 文件ID,每个对象具有唯一ID,与文件名无关
- * @property id
- * @type {string}
- */
- this.id = gid();
-
- /**
- * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
- * @property ext
- * @type {string}
- */
- this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
-
-
- /**
- * 状态文字说明。在不同的status语境下有不同的用途。
- * @property statusText
- * @type {string}
- */
- this.statusText = '';
-
- // 存储文件状态,防止通过属性直接修改
- statusMap[ this.id ] = WUFile.Status.INITED;
-
- this.source = source;
- this.loaded = 0;
-
- this.on( 'error', function( msg ) {
- this.setStatus( WUFile.Status.ERROR, msg );
- });
- }
-
- $.extend( WUFile.prototype, {
-
- /**
- * 设置状态,状态变化时会触发`change`事件。
- * @method setStatus
- * @grammar setStatus( status[, statusText] );
- * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
- * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
- */
- setStatus: function( status, text ) {
-
- var prevStatus = statusMap[ this.id ];
-
- typeof text !== 'undefined' && (this.statusText = text);
-
- if ( status !== prevStatus ) {
- statusMap[ this.id ] = status;
- /**
- * 文件状态变化
- * @event statuschange
- */
- this.trigger( 'statuschange', status, prevStatus );
- }
-
- },
-
- /**
- * 获取文件状态
- * @return {File.Status}
- * @example
- 文件状态具体包括以下几种类型:
- {
- // 初始化
- INITED: 0,
- // 已入队列
- QUEUED: 1,
- // 正在上传
- PROGRESS: 2,
- // 上传出错
- ERROR: 3,
- // 上传成功
- COMPLETE: 4,
- // 上传取消
- CANCELLED: 5
- }
- */
- getStatus: function() {
- return statusMap[ this.id ];
- },
-
- /**
- * 获取文件原始信息。
- * @return {*}
- */
- getSource: function() {
- return this.source;
- },
-
- destroy: function() {
- this.off();
- delete statusMap[ this.id ];
- }
- });
-
- Mediator.installTo( WUFile.prototype );
-
- /**
- * 文件状态值,具体包括以下几种类型:
- * * `inited` 初始状态
- * * `queued` 已经进入队列, 等待上传
- * * `progress` 上传中
- * * `complete` 上传完成。
- * * `error` 上传出错,可重试
- * * `interrupt` 上传中断,可续传。
- * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
- * * `cancelled` 文件被移除。
- * @property {Object} Status
- * @namespace File
- * @class File
- * @static
- */
- WUFile.Status = {
- INITED: 'inited', // 初始状态
- QUEUED: 'queued', // 已经进入队列, 等待上传
- PROGRESS: 'progress', // 上传中
- ERROR: 'error', // 上传出错,可重试
- COMPLETE: 'complete', // 上传完成。
- CANCELLED: 'cancelled', // 上传取消。
- INTERRUPT: 'interrupt', // 上传中断,可续传。
- INVALID: 'invalid' // 文件不合格,不能重试上传。
- };
-
- return WUFile;
- });
-
- /**
- * @fileOverview 文件队列
- */
- define('queue',[
- 'base',
- 'mediator',
- 'file'
- ], function( Base, Mediator, WUFile ) {
-
- var $ = Base.$,
- STATUS = WUFile.Status;
-
- /**
- * 文件队列, 用来存储各个状态中的文件。
- * @class Queue
- * @extends Mediator
- */
- function Queue() {
-
- /**
- * 统计文件数。
- * * `numOfQueue` 队列中的文件数。
- * * `numOfSuccess` 上传成功的文件数
- * * `numOfCancel` 被取消的文件数
- * * `numOfProgress` 正在上传中的文件数
- * * `numOfUploadFailed` 上传错误的文件数。
- * * `numOfInvalid` 无效的文件数。
- * * `numOfDeleted` 被移除的文件数。
- * * `numOfInterrupt` 被中断的文件数。
- * @property {Object} stats
- */
- this.stats = {
- numOfQueue: 0,
- numOfSuccess: 0,
- numOfCancel: 0,
- numOfProgress: 0,
- numOfUploadFailed: 0,
- numOfInvalid: 0,
- numOfDeleted: 0,
- numOfInterrupt: 0
- };
-
- // 上传队列,仅包括等待上传的文件
- this._queue = [];
-
- // 存储所有文件
- this._map = {};
- }
-
- $.extend( Queue.prototype, {
-
- /**
- * 将新文件加入对队列尾部
- *
- * @method append
- * @param {File} file 文件对象
- */
- append: function( file ) {
- this._queue.push( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 将新文件加入对队列头部
- *
- * @method prepend
- * @param {File} file 文件对象
- */
- prepend: function( file ) {
- this._queue.unshift( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 获取文件对象
- *
- * @method getFile
- * @param {String} fileId 文件ID
- * @return {File}
- */
- getFile: function( fileId ) {
- if ( typeof fileId !== 'string' ) {
- return fileId;
- }
- return this._map[ fileId ];
- },
-
- /**
- * 从队列中取出一个指定状态的文件。
- * @grammar fetch( status ) => File
- * @method fetch
- * @param {String} status [文件状态值](#WebUploader:File:File.Status)
- * @return {File} [File](#WebUploader:File)
- */
- fetch: function( status ) {
- var len = this._queue.length,
- i, file;
-
- status = status || STATUS.QUEUED;
-
- for ( i = 0; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( status === file.getStatus() ) {
- return file;
- }
- }
-
- return null;
- },
-
- /**
- * 对队列进行排序,能够控制文件上传顺序。
- * @grammar sort( fn ) => undefined
- * @method sort
- * @param {Function} fn 排序方法
- */
- sort: function( fn ) {
- if ( typeof fn === 'function' ) {
- this._queue.sort( fn );
- }
- },
-
- /**
- * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
- * @grammar getFiles( [status1[, status2 ...]] ) => Array
- * @method getFiles
- * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
- */
- getFiles: function() {
- var sts = [].slice.call( arguments, 0 ),
- ret = [],
- i = 0,
- len = this._queue.length,
- file;
-
- for ( ; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
- continue;
- }
-
- ret.push( file );
- }
-
- return ret;
- },
-
- /**
- * 在队列中删除文件。
- * @grammar removeFile( file ) => Array
- * @method removeFile
- * @param {File} 文件对象。
- */
- removeFile: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( existing ) {
- delete this._map[ file.id ];
- this._delFile(file);
- file.destroy();
- this.stats.numOfDeleted++;
-
- }
- },
-
- _fileAdded: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( !existing ) {
- this._map[ file.id ] = file;
-
- file.on( 'statuschange', function( cur, pre ) {
- me._onFileStatusChange( cur, pre );
- });
- }
- },
-
- _delFile : function(file){
- for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
- if(this._queue[i] == file){
- this._queue.splice(i,1);
- break;
- }
- }
- },
-
- _onFileStatusChange: function( curStatus, preStatus ) {
- var stats = this.stats;
-
- switch ( preStatus ) {
- case STATUS.PROGRESS:
- stats.numOfProgress--;
- break;
-
- case STATUS.QUEUED:
- stats.numOfQueue --;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed--;
- break;
-
- case STATUS.INVALID:
- stats.numOfInvalid--;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt--;
- break;
- }
-
- switch ( curStatus ) {
- case STATUS.QUEUED:
- stats.numOfQueue++;
- break;
-
- case STATUS.PROGRESS:
- stats.numOfProgress++;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed++;
- break;
-
- case STATUS.COMPLETE:
- stats.numOfSuccess++;
- break;
-
- case STATUS.CANCELLED:
- stats.numOfCancel++;
- break;
-
-
- case STATUS.INVALID:
- stats.numOfInvalid++;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt++;
- break;
- }
- }
-
- });
-
- Mediator.installTo( Queue.prototype );
-
- return Queue;
- });
-
- /**
- * @fileOverview 队列
- */
- define('widgets/queue',[
- 'base',
- 'uploader',
- 'queue',
- 'file',
- 'lib/file',
- 'runtime/client',
- 'widgets/widget'
- ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
-
- var $ = Base.$,
- rExt = /\.\w+$/,
- Status = WUFile.Status;
-
- return Uploader.register({
- name: 'queue',
-
- init: function( opts ) {
- var me = this,
- deferred, len, i, item, arr, accept, runtime;
-
- if ( $.isPlainObject( opts.accept ) ) {
- opts.accept = [ opts.accept ];
- }
-
- // accept中的中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
-
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].extensions;
- item && arr.push( item );
- }
-
- if ( arr.length ) {
- accept = '\\.' + arr.join(',')
- .replace( /,/g, '$|\\.' )
- .replace( /\*/g, '.*' ) + '$';
- }
-
- me.accept = new RegExp( accept, 'i' );
- }
-
- me.queue = new Queue();
- me.stats = me.queue.stats;
-
- // 如果当前不是html5运行时,那就算了。
- // 不执行后续操作
- if ( this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- // 创建一个 html5 运行时的 placeholder
- // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
- deferred = Base.Deferred();
- this.placeholder = runtime = new RuntimeClient('Placeholder');
- runtime.connectRuntime({
- runtimeOrder: 'html5'
- }, function() {
- me._ruid = runtime.getRuid();
- deferred.resolve();
- });
- return deferred.promise();
- },
-
-
- // 为了支持外部直接添加一个原生File对象。
- _wrapFile: function( file ) {
- if ( !(file instanceof WUFile) ) {
-
- if ( !(file instanceof File) ) {
- if ( !this._ruid ) {
- throw new Error('Can\'t add external files.');
- }
- file = new File( this._ruid, file );
- }
-
- file = new WUFile( file );
- }
-
- return file;
- },
-
- // 判断文件是否可以被加入队列
- acceptFile: function( file ) {
- var invalid = !file || !file.size || this.accept &&
-
- // 如果名字中有后缀,才做后缀白名单处理。
- rExt.exec( file.name ) && !this.accept.test( file.name );
-
- return !invalid;
- },
-
-
- /**
- * @event beforeFileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
- * @for Uploader
- */
-
- /**
- * @event fileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列以后触发。
- * @for Uploader
- */
-
- _addFile: function( file ) {
- var me = this;
-
- file = me._wrapFile( file );
-
- // 不过类型判断允许不允许,先派送 `beforeFileQueued`
- if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
- return;
- }
-
- // 类型不匹配,则派送错误事件,并返回。
- if ( !me.acceptFile( file ) ) {
- me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
- return;
- }
-
- me.queue.append( file );
- me.owner.trigger( 'fileQueued', file );
- return file;
- },
-
- getFile: function( fileId ) {
- return this.queue.getFile( fileId );
- },
-
- /**
- * @event filesQueued
- * @param {File} files 数组,内容为原始File(lib/File)对象。
- * @description 当一批文件添加进队列以后触发。
- * @for Uploader
- */
-
- /**
- * @property {Boolean} [auto=false]
- * @namespace options
- * @for Uploader
- * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
- *
- */
-
- /**
- * @method addFiles
- * @grammar addFiles( file ) => undefined
- * @grammar addFiles( [file1, file2 ...] ) => undefined
- * @param {Array of File or File} [files] Files 对象 数组
- * @description 添加文件到队列
- * @for Uploader
- */
- addFile: function( files ) {
- var me = this;
-
- if ( !files.length ) {
- files = [ files ];
- }
-
- files = $.map( files, function( file ) {
- return me._addFile( file );
- });
-
- if ( files.length ) {
-
- me.owner.trigger( 'filesQueued', files );
-
- if ( me.options.auto ) {
- setTimeout(function() {
- me.request('start-upload');
- }, 20 );
- }
- }
- },
-
- getStats: function() {
- return this.stats;
- },
-
- /**
- * @event fileDequeued
- * @param {File} file File对象
- * @description 当文件被移除队列后触发。
- * @for Uploader
- */
-
- /**
- * @method removeFile
- * @grammar removeFile( file ) => undefined
- * @grammar removeFile( id ) => undefined
- * @grammar removeFile( file, true ) => undefined
- * @grammar removeFile( id, true ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.removeFile( file );
- * })
- */
- removeFile: function( file, remove ) {
- var me = this;
-
- file = file.id ? file : me.queue.getFile( file );
-
- this.request( 'cancel-file', file );
-
- if ( remove ) {
- this.queue.removeFile( file );
- }
- },
-
- /**
- * @method getFiles
- * @grammar getFiles() => Array
- * @grammar getFiles( status1, status2, status... ) => Array
- * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
- * @for Uploader
- * @example
- * console.log( uploader.getFiles() ); // => all files
- * console.log( uploader.getFiles('error') ) // => all error files.
- */
- getFiles: function() {
- return this.queue.getFiles.apply( this.queue, arguments );
- },
-
- fetchFile: function() {
- return this.queue.fetch.apply( this.queue, arguments );
- },
-
- /**
- * @method retry
- * @grammar retry() => undefined
- * @grammar retry( file ) => undefined
- * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
- * @for Uploader
- * @example
- * function retry() {
- * uploader.retry();
- * }
- */
- retry: function( file, noForceStart ) {
- var me = this,
- files, i, len;
-
- if ( file ) {
- file = file.id ? file : me.queue.getFile( file );
- file.setStatus( Status.QUEUED );
- noForceStart || me.request('start-upload');
- return;
- }
-
- files = me.queue.getFiles( Status.ERROR );
- i = 0;
- len = files.length;
-
- for ( ; i < len; i++ ) {
- file = files[ i ];
- file.setStatus( Status.QUEUED );
- }
-
- me.request('start-upload');
- },
-
- /**
- * @method sort
- * @grammar sort( fn ) => undefined
- * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
- * @for Uploader
- */
- sortFiles: function() {
- return this.queue.sort.apply( this.queue, arguments );
- },
-
- /**
- * @event reset
- * @description 当 uploader 被重置的时候触发。
- * @for Uploader
- */
-
- /**
- * @method reset
- * @grammar reset() => undefined
- * @description 重置uploader。目前只重置了队列。
- * @for Uploader
- * @example
- * uploader.reset();
- */
- reset: function() {
- this.owner.trigger('reset');
- this.queue = new Queue();
- this.stats = this.queue.stats;
- },
-
- destroy: function() {
- this.reset();
- this.placeholder && this.placeholder.destroy();
- }
- });
-
- });
- /**
- * @fileOverview 添加获取Runtime相关信息的方法。
- */
- define('widgets/runtime',[
- 'uploader',
- 'runtime/runtime',
- 'widgets/widget'
- ], function( Uploader, Runtime ) {
-
- Uploader.support = function() {
- return Runtime.hasRuntime.apply( Runtime, arguments );
- };
-
- /**
- * @property {Object} [runtimeOrder=html5,flash]
- * @namespace options
- * @for Uploader
- * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
- *
- * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
- */
-
- return Uploader.register({
- name: 'runtime',
-
- init: function() {
- if ( !this.predictRuntimeType() ) {
- throw Error('Runtime Error');
- }
- },
-
- /**
- * 预测Uploader将采用哪个`Runtime`
- * @grammar predictRuntimeType() => String
- * @method predictRuntimeType
- * @for Uploader
- */
- predictRuntimeType: function() {
- var orders = this.options.runtimeOrder || Runtime.orders,
- type = this.type,
- i, len;
-
- if ( !type ) {
- orders = orders.split( /\s*,\s*/g );
-
- for ( i = 0, len = orders.length; i < len; i++ ) {
- if ( Runtime.hasRuntime( orders[ i ] ) ) {
- this.type = type = orders[ i ];
- break;
- }
- }
- }
-
- return type;
- }
- });
- });
- /**
- * @fileOverview Transport
- */
- define('lib/transport',[
- 'base',
- 'runtime/client',
- 'mediator'
- ], function( Base, RuntimeClient, Mediator ) {
-
- var $ = Base.$;
-
- function Transport( opts ) {
- var me = this;
-
- opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
- RuntimeClient.call( this, 'Transport' );
-
- this._blob = null;
- this._formData = opts.formData || {};
- this._headers = opts.headers || {};
-
- this.on( 'progress', this._timeout );
- this.on( 'load error', function() {
- me.trigger( 'progress', 1 );
- clearTimeout( me._timer );
- });
- }
-
- Transport.options = {
- server: '',
- method: 'POST',
-
- // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
- withCredentials: false,
- fileVal: 'file',
- timeout: 2 * 60 * 1000, // 2分钟
- formData: {},
- headers: {},
- sendAsBinary: false
- };
-
- $.extend( Transport.prototype, {
-
- // 添加Blob, 只能添加一次,最后一次有效。
- appendBlob: function( key, blob, filename ) {
- var me = this,
- opts = me.options;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- });
-
- me._blob = blob;
- opts.fileVal = key || opts.fileVal;
- opts.filename = filename || opts.filename;
- },
-
- // 添加其他字段
- append: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._formData, key );
- } else {
- this._formData[ key ] = value;
- }
- },
-
- setRequestHeader: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._headers, key );
- } else {
- this._headers[ key ] = value;
- }
- },
-
- send: function( method ) {
- this.exec( 'send', method );
- this._timeout();
- },
-
- abort: function() {
- clearTimeout( this._timer );
- return this.exec('abort');
- },
-
- destroy: function() {
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- },
-
- getResponseHeaders: function() {
- return this.exec('getResponseHeaders');
- },
-
- getResponse: function() {
- return this.exec('getResponse');
- },
-
- getResponseAsJson: function() {
- return this.exec('getResponseAsJson');
- },
-
- getStatus: function() {
- return this.exec('getStatus');
- },
-
- _timeout: function() {
- var me = this,
- duration = me.options.timeout;
-
- if ( !duration ) {
- return;
- }
-
- clearTimeout( me._timer );
- me._timer = setTimeout(function() {
- me.abort();
- me.trigger( 'error', 'timeout' );
- }, duration );
- }
-
- });
-
- // 让Transport具备事件功能。
- Mediator.installTo( Transport.prototype );
-
- return Transport;
+ /**
+ * @fileOverview 添加获取Runtime相关信息的方法。
+ */
+ define('widgets/runtime',[
+ 'uploader',
+ 'runtime/runtime',
+ 'widgets/widget'
+ ], function( Uploader, Runtime ) {
+
+ Uploader.support = function() {
+ return Runtime.hasRuntime.apply( Runtime, arguments );
+ };
+
+ /**
+ * @property {Object} [runtimeOrder=html5,flash]
+ * @namespace options
+ * @for Uploader
+ * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
+ *
+ * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
+ */
+
+ return Uploader.register({
+ name: 'runtime',
+
+ init: function() {
+ if ( !this.predictRuntimeType() ) {
+ throw Error('Runtime Error');
+ }
+ },
+
+ /**
+ * 预测Uploader将采用哪个`Runtime`
+ * @grammar predictRuntimeType() => String
+ * @method predictRuntimeType
+ * @for Uploader
+ */
+ predictRuntimeType: function() {
+ var orders = this.options.runtimeOrder || Runtime.orders,
+ type = this.type,
+ i, len;
+
+ if ( !type ) {
+ orders = orders.split( /\s*,\s*/g );
+
+ for ( i = 0, len = orders.length; i < len; i++ ) {
+ if ( Runtime.hasRuntime( orders[ i ] ) ) {
+ this.type = type = orders[ i ];
+ break;
+ }
+ }
+ }
+
+ return type;
+ }
+ });
});
+ /**
+ * @fileOverview Transport
+ */
+ define('lib/transport',[
+ 'base',
+ 'runtime/client',
+ 'mediator'
+ ], function( Base, RuntimeClient, Mediator ) {
+
+ var $ = Base.$;
+
+ function Transport( opts ) {
+ var me = this;
+
+ opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
+ RuntimeClient.call( this, 'Transport' );
+
+ this._blob = null;
+ this._formData = opts.formData || {};
+ this._headers = opts.headers || {};
+
+ this.on( 'progress', this._timeout );
+ this.on( 'load error', function() {
+ me.trigger( 'progress', 1 );
+ clearTimeout( me._timer );
+ });
+ }
+
+ Transport.options = {
+ server: '',
+ method: 'POST',
+
+ // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
+ withCredentials: false,
+ fileVal: 'file',
+ timeout: 2 * 60 * 1000, // 2分钟
+ formData: {},
+ headers: {},
+ sendAsBinary: false
+ };
+
+ $.extend( Transport.prototype, {
+
+ // 添加Blob, 只能添加一次,最后一次有效。
+ appendBlob: function( key, blob, filename ) {
+ var me = this,
+ opts = me.options;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ });
+
+ me._blob = blob;
+ opts.fileVal = key || opts.fileVal;
+ opts.filename = filename || opts.filename;
+ },
+
+ // 添加其他字段
+ append: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._formData, key );
+ } else {
+ this._formData[ key ] = value;
+ }
+ },
+
+ setRequestHeader: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._headers, key );
+ } else {
+ this._headers[ key ] = value;
+ }
+ },
+
+ send: function( method ) {
+ this.exec( 'send', method );
+ this._timeout();
+ },
+
+ abort: function() {
+ clearTimeout( this._timer );
+ return this.exec('abort');
+ },
+
+ destroy: function() {
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ },
+
+ getResponseHeaders: function() {
+ return this.exec('getResponseHeaders');
+ },
+
+ getResponse: function() {
+ return this.exec('getResponse');
+ },
+
+ getResponseAsJson: function() {
+ return this.exec('getResponseAsJson');
+ },
+
+ getStatus: function() {
+ return this.exec('getStatus');
+ },
+
+ _timeout: function() {
+ var me = this,
+ duration = me.options.timeout;
+
+ if ( !duration ) {
+ return;
+ }
+
+ clearTimeout( me._timer );
+ me._timer = setTimeout(function() {
+ me.abort();
+ me.trigger( 'error', 'timeout' );
+ }, duration );
+ }
+
+ });
+
+ // 让Transport具备事件功能。
+ Mediator.installTo( Transport.prototype );
+
+ return Transport;
+ });
- /**
- * @fileOverview 负责文件上传相关。
- */
- define('widgets/upload',[
- 'base',
- 'uploader',
- 'file',
- 'lib/transport',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile, Transport ) {
-
- var $ = Base.$,
- isPromise = Base.isPromise,
- Status = WUFile.Status;
-
- // 添加默认配置项
- $.extend( Uploader.options, {
-
-
- /**
- * @property {Boolean} [prepareNextFile=false]
- * @namespace options
- * @for Uploader
- * @description 是否允许在文件传输时提前把下一个文件准备好。
- * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
- * 如果能提前在当前文件传输期处理,可以节省总体耗时。
- */
- prepareNextFile: false,
-
- /**
- * @property {Boolean} [chunked=false]
- * @namespace options
- * @for Uploader
- * @description 是否要分片处理大文件上传。
- */
- chunked: false,
-
- /**
- * @property {Boolean} [chunkSize=5242880]
- * @namespace options
- * @for Uploader
- * @description 如果要分片,分多大一片? 默认大小为5M.
- */
- chunkSize: 5 * 1024 * 1024,
-
- /**
- * @property {Boolean} [chunkRetry=2]
- * @namespace options
- * @for Uploader
- * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
- */
- chunkRetry: 2,
-
- /**
- * @property {Number} [chunkRetryDelay=1000]
- * @namespace options
- * @for Uploader
- * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
- */
- chunkRetryDelay: 1000,
-
- /**
- * @property {Boolean} [threads=3]
- * @namespace options
- * @for Uploader
- * @description 上传并发数。允许同时最大上传进程数。
- */
- threads: 3,
-
-
- /**
- * @property {Object} [formData={}]
- * @namespace options
- * @for Uploader
- * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
- */
- formData: {}
-
- /**
- * @property {Object} [fileVal='file']
- * @namespace options
- * @for Uploader
- * @description 设置文件上传域的name。
- */
-
- /**
- * @property {Object} [method=POST]
- * @namespace options
- * @for Uploader
- * @description 文件上传方式,`POST` 或者 `GET`。
- */
-
- /**
- * @property {Object} [sendAsBinary=false]
- * @namespace options
- * @for Uploader
- * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
- * 其他参数在$_GET数组中。
- */
- });
-
- // 负责将文件切片。
- function CuteFile( file, chunkSize ) {
- var pending = [],
- blob = file.source,
- total = blob.size,
- chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
- start = 0,
- index = 0,
- len, api;
-
- api = {
- file: file,
-
- has: function() {
- return !!pending.length;
- },
-
- shift: function() {
- return pending.shift();
- },
-
- unshift: function( block ) {
- pending.unshift( block );
- }
- };
-
- while ( index < chunks ) {
- len = Math.min( chunkSize, total - start );
-
- pending.push({
- file: file,
- start: start,
- end: chunkSize ? (start + len) : total,
- total: total,
- chunks: chunks,
- chunk: index++,
- cuted: api
- });
- start += len;
- }
-
- file.blocks = pending.concat();
- file.remaning = pending.length;
-
- return api;
- }
-
- Uploader.register({
- name: 'upload',
-
- init: function() {
- var owner = this.owner,
- me = this;
-
- this.runing = false;
- this.progress = false;
-
- owner
- .on( 'startUpload', function() {
- me.progress = true;
- })
- .on( 'uploadFinished', function() {
- me.progress = false;
- });
-
- // 记录当前正在传的数据,跟threads相关
- this.pool = [];
-
- // 缓存分好片的文件。
- this.stack = [];
-
- // 缓存即将上传的文件。
- this.pending = [];
-
- // 跟踪还有多少分片在上传中但是没有完成上传。
- this.remaning = 0;
- this.__tick = Base.bindFn( this._tick, this );
-
- // 销毁上传相关的属性。
- owner.on( 'uploadComplete', function( file ) {
-
- // 把其他块取消了。
- file.blocks && $.each( file.blocks, function( _, v ) {
- v.transport && (v.transport.abort(), v.transport.destroy());
- delete v.transport;
- });
-
- delete file.blocks;
- delete file.remaning;
- });
- },
-
- reset: function() {
- this.request( 'stop-upload', true );
- this.runing = false;
- this.pool = [];
- this.stack = [];
- this.pending = [];
- this.remaning = 0;
- this._trigged = false;
- this._promise = null;
- },
-
- /**
- * @event startUpload
- * @description 当开始上传流程时触发。
- * @for Uploader
- */
-
- /**
- * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
- *
- * 可以指定开始某一个文件。
- * @grammar upload() => undefined
- * @grammar upload( file | fileId) => undefined
- * @method upload
- * @for Uploader
- */
- startUpload: function(file) {
- var me = this;
-
- // 移出invalid的文件
- $.each( me.request( 'get-files', Status.INVALID ), function() {
- me.request( 'remove-file', this );
- });
-
- // 如果指定了开始某个文件,则只开始指定的文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if (file.getStatus() === Status.INTERRUPT) {
- file.setStatus( Status.QUEUED );
-
- $.each( me.pool, function( _, v ) {
-
- // 之前暂停过。
- if (v.file !== file) {
- return;
- }
-
- v.transport && v.transport.send();
- file.setStatus( Status.PROGRESS );
- });
-
-
- } else if (file.getStatus() !== Status.PROGRESS) {
- file.setStatus( Status.QUEUED );
- }
- } else {
- $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
- this.setStatus( Status.QUEUED );
- });
- }
-
- if ( me.runing ) {
- me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
- return Base.nextTick( me.__tick );
- }
-
- me.runing = true;
- var files = [];
-
- // 如果有暂停的,则续传
- file || $.each( me.pool, function( _, v ) {
- var file = v.file;
-
- if ( file.getStatus() === Status.INTERRUPT ) {
- me._trigged = false;
- files.push(file);
-
- if (v.waiting) {
- return;
- }
-
- // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
- v.transport ? v.transport.send() : me._doSend(v);
- }
- });
-
- $.each(files, function() {
- this.setStatus( Status.PROGRESS );
- });
-
- file || $.each( me.request( 'get-files',
- Status.INTERRUPT ), function() {
- this.setStatus( Status.PROGRESS );
- });
-
- me._trigged = false;
- Base.nextTick( me.__tick );
- me.owner.trigger('startUpload');
- },
-
- /**
- * @event stopUpload
- * @description 当开始上传流程暂停时触发。
- * @for Uploader
- */
-
- /**
- * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
- *
- * 如果第一个参数是文件,则只暂停指定文件。
- * @grammar stop() => undefined
- * @grammar stop( true ) => undefined
- * @grammar stop( file ) => undefined
- * @method stop
- * @for Uploader
- */
- stopUpload: function( file, interrupt ) {
- var me = this;
-
- if (file === true) {
- interrupt = file;
- file = null;
- }
-
- if ( me.runing === false ) {
- return;
- }
-
- // 如果只是暂停某个文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if ( file.getStatus() !== Status.PROGRESS &&
- file.getStatus() !== Status.QUEUED ) {
- return;
- }
-
- file.setStatus( Status.INTERRUPT );
-
-
- $.each( me.pool, function( _, v ) {
-
- // 只 abort 指定的文件,每一个分片。
- if (v.file === file) {
- v.transport && v.transport.abort();
-
- if (interrupt) {
- me._putback(v);
- me._popBlock(v);
- }
- }
- });
-
- me.owner.trigger('stopUpload', file);// 暂停,trigger event
-
- return Base.nextTick( me.__tick );
- }
-
- me.runing = false;
-
- // 正在准备中的文件。
- if (this._promise && this._promise.file) {
- this._promise.file.setStatus( Status.INTERRUPT );
- }
-
- interrupt && $.each( me.pool, function( _, v ) {
- v.transport && v.transport.abort();
- v.file.setStatus( Status.INTERRUPT );
- });
-
- me.owner.trigger('stopUpload');
- },
-
- /**
- * @method cancelFile
- * @grammar cancelFile( file ) => undefined
- * @grammar cancelFile( id ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 标记文件状态为已取消, 同时将中断文件传输。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.cancelFile( file );
- * })
- */
- cancelFile: function( file ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- file.setStatus( Status.CANCELLED );
- this.owner.trigger( 'fileDequeued', file );
- },
-
- /**
- * 判断`Uploader`是否正在上传中。
- * @grammar isInProgress() => Boolean
- * @method isInProgress
- * @for Uploader
- */
- isInProgress: function() {
- return !!this.progress;
- },
-
- _getStats: function() {
- return this.request('get-stats');
- },
-
- /**
- * 跳过一个文件上传,直接标记指定文件为已上传状态。
- * @grammar skipFile( file ) => undefined
- * @method skipFile
- * @for Uploader
- */
- skipFile: function( file, status ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- file.setStatus( status || Status.COMPLETE );
- file.skipped = true;
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- this.owner.trigger( 'uploadSkip', file );
- },
-
- /**
- * @event uploadFinished
- * @description 当所有文件上传结束时触发。
- * @for Uploader
- */
- _tick: function() {
- var me = this,
- opts = me.options,
- fn, val;
-
- // 上一个promise还没有结束,则等待完成后再执行。
- if ( me._promise ) {
- return me._promise.always( me.__tick );
- }
-
- // 还有位置,且还有文件要处理的话。
- if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
- me._trigged = false;
-
- fn = function( val ) {
- me._promise = null;
-
- // 有可能是reject过来的,所以要检测val的类型。
- val && val.file && me._startSend( val );
- Base.nextTick( me.__tick );
- };
-
- me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
-
- // 没有要上传的了,且没有正在传输的了。
- } else if ( !me.remaning && !me._getStats().numOfQueue &&
- !me._getStats().numOfInterrupt ) {
- me.runing = false;
-
- me._trigged || Base.nextTick(function() {
- me.owner.trigger('uploadFinished');
- });
- me._trigged = true;
- }
- },
-
- _putback: function(block) {
- var idx;
-
- block.cuted.unshift(block);
- idx = this.stack.indexOf(block.cuted);
-
- if (!~idx) {
- // 如果不在里面,说明移除过,需要把计数还原回去。
- this.remaning++;
- block.file.remaning++;
- this.stack.unshift(block.cuted);
- }
- },
-
- _getStack: function() {
- var i = 0,
- act;
-
- while ( (act = this.stack[ i++ ]) ) {
- if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
- return act;
- } else if (!act.has() ||
- act.file.getStatus() !== Status.PROGRESS &&
- act.file.getStatus() !== Status.INTERRUPT ) {
-
- // 把已经处理完了的,或者,状态为非 progress(上传中)、
- // interupt(暂停中) 的移除。
- this.stack.splice( --i, 1 );
- }
- }
-
- return null;
- },
-
- _nextBlock: function() {
- var me = this,
- opts = me.options,
- act, next, done, preparing;
-
- // 如果当前文件还有没有需要传输的,则直接返回剩下的。
- if ( (act = this._getStack()) ) {
-
- // 是否提前准备下一个文件
- if ( opts.prepareNextFile && !me.pending.length ) {
- me._prepareNextFile();
- }
-
- return act.shift();
-
- // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
- } else if ( me.runing ) {
-
- // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
- if ( !me.pending.length && me._getStats().numOfQueue ) {
- me._prepareNextFile();
- }
-
- next = me.pending.shift();
- done = function( file ) {
- if ( !file ) {
- return null;
- }
-
- act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
- me.stack.push(act);
- return act.shift();
- };
-
- // 文件可能还在prepare中,也有可能已经完全准备好了。
- if ( isPromise( next) ) {
- preparing = next.file;
- next = next[ next.pipe ? 'pipe' : 'then' ]( done );
- next.file = preparing;
- return next;
- }
-
- return done( next );
- }
- },
-
-
- /**
- * @event uploadStart
- * @param {File} file File对象
- * @description 某个文件开始上传前触发,一个文件只会触发一次。
- * @for Uploader
- */
- _prepareNextFile: function() {
- var me = this,
- file = me.request('fetch-file'),
- pending = me.pending,
- promise;
-
- if ( file ) {
- promise = me.request( 'before-send-file', file, function() {
-
- // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
- if ( file.getStatus() === Status.PROGRESS ||
- file.getStatus() === Status.INTERRUPT ) {
- return file;
- }
-
- return me._finishFile( file );
- });
-
- me.owner.trigger( 'uploadStart', file );
- file.setStatus( Status.PROGRESS );
-
- promise.file = file;
-
- // 如果还在pending中,则替换成文件本身。
- promise.done(function() {
- var idx = $.inArray( promise, pending );
-
- ~idx && pending.splice( idx, 1, file );
- });
-
- // befeore-send-file的钩子就有错误发生。
- promise.fail(function( reason ) {
- file.setStatus( Status.ERROR, reason );
- me.owner.trigger( 'uploadError', file, reason );
- me.owner.trigger( 'uploadComplete', file );
- });
-
- pending.push( promise );
- }
- },
-
- // 让出位置了,可以让其他分片开始上传
- _popBlock: function( block ) {
- var idx = $.inArray( block, this.pool );
-
- this.pool.splice( idx, 1 );
- block.file.remaning--;
- this.remaning--;
- },
-
- // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
- _startSend: function( block ) {
- var me = this,
- file = block.file,
- promise;
-
- // 有可能在 before-send-file 的 promise 期间改变了文件状态。
- // 如:暂停,取消
- // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
- if ( file.getStatus() !== Status.PROGRESS ) {
-
- // 如果是中断,则还需要放回去。
- if (file.getStatus() === Status.INTERRUPT) {
- me._putback(block);
- }
-
- return;
- }
-
- me.pool.push( block );
- me.remaning++;
-
- // 如果没有分片,则直接使用原始的。
- // 不会丢失content-type信息。
- block.blob = block.chunks === 1 ? file.source :
- file.source.slice( block.start, block.end );
-
- // hook, 每个分片发送之前可能要做些异步的事情。
- block.waiting = promise = me.request( 'before-send', block, function() {
- delete block.waiting;
-
- // 有可能文件已经上传出错了,所以不需要再传输了。
- if ( file.getStatus() === Status.PROGRESS ) {
- me._doSend( block );
- } else if (block.file.getStatus() !== Status.INTERRUPT) {
- me._popBlock(block);
- }
-
- Base.nextTick(me.__tick);
- });
-
- // 如果为fail了,则跳过此分片。
- promise.fail(function() {
- delete block.waiting;
-
- if ( file.remaning === 1 ) {
- me._finishFile( file ).always(function() {
- block.percentage = 1;
- me._popBlock( block );
- me.owner.trigger( 'uploadComplete', file );
- Base.nextTick( me.__tick );
- });
- } else {
- block.percentage = 1;
- me.updateFileProgress( file );
- me._popBlock( block );
- Base.nextTick( me.__tick );
- }
- });
- },
-
-
- /**
- * @event uploadBeforeSend
- * @param {Object} object
- * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
- * @param {Object} headers 可以扩展此对象来控制上传头部。
- * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
- * @for Uploader
- */
-
- /**
- * @event uploadAccept
- * @param {Object} object
- * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
- * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
- * @for Uploader
- */
-
- /**
- * @event uploadProgress
- * @param {File} file File对象
- * @param {Number} percentage 上传进度
- * @description 上传过程中触发,携带上传进度。
- * @for Uploader
- */
-
-
- /**
- * @event uploadError
- * @param {File} file File对象
- * @param {String} reason 出错的code
- * @description 当文件上传出错时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadSuccess
- * @param {File} file File对象
- * @param {Object} response 服务端返回的数据
- * @description 当文件上传成功时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadComplete
- * @param {File} [file] File对象
- * @description 不管成功或者失败,文件上传完成时触发。
- * @for Uploader
- */
-
- // 做上传操作。
- _doSend: function( block ) {
- var me = this,
- owner = me.owner,
- opts = $.extend({}, me.options, block.options),
- file = block.file,
- tr = new Transport( opts ),
- data = $.extend({}, opts.formData ),
- headers = $.extend({}, opts.headers ),
- requestAccept, ret;
-
- block.transport = tr;
-
- tr.on( 'destroy', function() {
- delete block.transport;
- me._popBlock( block );
- Base.nextTick( me.__tick );
- });
-
- // 广播上传进度。以文件为单位。
- tr.on( 'progress', function( percentage ) {
- block.percentage = percentage;
- me.updateFileProgress( file );
- });
-
- // 用来询问,是否返回的结果是有错误的。
- requestAccept = function( reject ) {
- var fn;
-
- ret = tr.getResponseAsJson() || {};
- ret._raw = tr.getResponse();
- ret._headers = tr.getResponseHeaders();
- block.response = ret;
- fn = function( value ) {
- reject = value;
- };
-
- // 服务端响应了,不代表成功了,询问是否响应正确。
- if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
- reject = reject || 'server';
- }
-
- return reject;
- };
-
- // 尝试重试,然后广播文件上传出错。
- tr.on( 'error', function( type, flag ) {
- // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
- // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
- var typeArr = type.split( '|' ), status, statusText;
- type = typeArr[0];
- status = parseFloat( typeArr[1] ),
- statusText = typeArr[2];
-
- block.retried = block.retried || 0;
-
- // 自动重试
- if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
- block.retried < opts.chunkRetry ) {
-
- block.retried++;
-
- me.retryTimer = setTimeout(function() {
- tr.send();
- }, opts.chunkRetryDelay || 1000);
-
- } else {
-
- // http status 500 ~ 600
- if ( !flag && type === 'server' ) {
- type = requestAccept( type );
- }
-
- file.setStatus( Status.ERROR, type );
- owner.trigger( 'uploadError', file, type, status, statusText );
- owner.trigger( 'uploadComplete', file );
- }
- });
-
- // 上传成功
- tr.on( 'load', function() {
- var reason;
-
- // 如果非预期,转向上传出错。
- if ( (reason = requestAccept()) ) {
- tr.trigger( 'error', reason, true );
- return;
- }
-
- // 全部上传完成。
- if ( file.remaning === 1 ) {
- me._finishFile( file, ret );
- } else {
- tr.destroy();
- }
- });
-
- // 配置默认的上传字段。
- data = $.extend( data, {
- id: file.id,
- name: file.name,
- type: file.type,
- lastModifiedDate: file.lastModifiedDate,
- size: file.size
- });
-
- block.chunks > 1 && $.extend( data, {
- chunks: block.chunks,
- chunk: block.chunk
- });
-
- // 在发送之间可以添加字段什么的。。。
- // 如果默认的字段不够使用,可以通过监听此事件来扩展
- owner.trigger( 'uploadBeforeSend', block, data, headers );
-
- // 开始发送。
- tr.appendBlob( opts.fileVal, block.blob, file.name );
- tr.append( data );
- tr.setRequestHeader( headers );
- tr.send();
- },
-
- // 完成上传。
- _finishFile: function( file, ret, hds ) {
- var owner = this.owner;
-
- return owner
- .request( 'after-send-file', arguments, function() {
- file.setStatus( Status.COMPLETE );
- owner.trigger( 'uploadSuccess', file, ret, hds );
- })
- .fail(function( reason ) {
-
- // 如果外部已经标记为invalid什么的,不再改状态。
- if ( file.getStatus() === Status.PROGRESS ) {
- file.setStatus( Status.ERROR, reason );
- }
-
- owner.trigger( 'uploadError', file, reason );
- })
- .always(function() {
- owner.trigger( 'uploadComplete', file );
- });
- },
-
- updateFileProgress: function(file) {
- var totalPercent = 0,
- uploaded = 0;
-
- if (!file.blocks) {
- return;
- }
-
- $.each( file.blocks, function( _, v ) {
- uploaded += (v.percentage || 0) * (v.end - v.start);
- });
-
- totalPercent = uploaded / file.size;
- this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
- },
-
- destroy: function() {
- clearTimeout(this.retryTimer);
- }
-
- });
- });
-
- /**
- * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
- */
-
- define('widgets/validator',[
- 'base',
- 'uploader',
- 'file',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile ) {
-
- var $ = Base.$,
- validators = {},
- api;
-
- /**
- * @event error
- * @param {String} type 错误类型。
- * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
- *
- * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
- * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
- * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
- * @for Uploader
- */
-
- // 暴露给外面的api
- api = {
-
- // 添加验证器
- addValidator: function( type, cb ) {
- validators[ type ] = cb;
- },
-
- // 移除验证器
- removeValidator: function( type ) {
- delete validators[ type ];
- }
- };
-
- // 在Uploader初始化的时候启动Validators的初始化
- Uploader.register({
- name: 'validator',
-
- init: function() {
- var me = this;
- Base.nextTick(function() {
- $.each( validators, function() {
- this.call( me.owner );
- });
- });
- }
- });
-
- /**
- * @property {int} [fileNumLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总数量, 超出则不允许加入队列。
- */
- api.addValidator( 'fileNumLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileNumLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
- if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
- return false;
- }
- if ( count >= max && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return count >= max ? false : true;
- });
-
- uploader.on( 'fileQueued', function() {
- count++;
- });
-
- uploader.on( 'fileDequeued', function() {
- count--;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
-
- /**
- * @property {int} [fileSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileSizeLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var invalid = count + file.size > max;
-
- if ( invalid && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return invalid ? false : true;
- });
-
- uploader.on( 'fileQueued', function( file ) {
- count += file.size;
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- count -= file.size;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
- /**
- * @property {int} [fileSingleSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSingleSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- max = opts.fileSingleSizeLimit;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
-
- if ( file.size > max ) {
- file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
- this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
- return false;
- }
-
- });
-
- });
-
- /**
- * @property {Boolean} [duplicate=undefined]
- * @namespace options
- * @for Uploader
- * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
- */
- api.addValidator( 'duplicate', function() {
- var uploader = this,
- opts = uploader.options,
- mapping = {};
-
- if ( opts.duplicate ) {
- return;
- }
-
- function hashString( str ) {
- var hash = 0,
- i = 0,
- len = str.length,
- _char;
-
- for ( ; i < len; i++ ) {
- _char = str.charCodeAt( i );
- hash = _char + (hash << 6) + (hash << 16) - hash;
- }
-
- return hash;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var hash = file.__hash || (file.__hash = hashString( file.name +
- file.size + file.lastModifiedDate ));
-
- // 已经重复了
- if ( mapping[ hash ] ) {
- this.trigger( 'error', 'F_DUPLICATE', file );
- return false;
- }
- });
-
- uploader.on( 'fileQueued', function( file ) {
- var hash = file.__hash;
-
- hash && (mapping[ hash ] = true);
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- var hash = file.__hash;
-
- hash && (delete mapping[ hash ]);
- });
+ /**
+ * @fileOverview 负责文件上传相关。
+ */
+ define('widgets/upload',[
+ 'base',
+ 'uploader',
+ 'file',
+ 'lib/transport',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile, Transport ) {
+
+ var $ = Base.$,
+ isPromise = Base.isPromise,
+ Status = WUFile.Status;
+
+ // 添加默认配置项
+ $.extend( Uploader.options, {
+
+
+ /**
+ * @property {Boolean} [prepareNextFile=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否允许在文件传输时提前把下一个文件准备好。
+ * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
+ * 如果能提前在当前文件传输期处理,可以节省总体耗时。
+ */
+ prepareNextFile: false,
+
+ /**
+ * @property {Boolean} [chunked=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否要分片处理大文件上传。
+ */
+ chunked: false,
+
+ /**
+ * @property {Boolean} [chunkSize=5242880]
+ * @namespace options
+ * @for Uploader
+ * @description 如果要分片,分多大一片? 默认大小为5M.
+ */
+ chunkSize: 5 * 1024 * 1024,
+
+ /**
+ * @property {Boolean} [chunkRetry=2]
+ * @namespace options
+ * @for Uploader
+ * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
+ */
+ chunkRetry: 2,
+
+ /**
+ * @property {Number} [chunkRetryDelay=1000]
+ * @namespace options
+ * @for Uploader
+ * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
+ */
+ chunkRetryDelay: 1000,
+
+ /**
+ * @property {Boolean} [threads=3]
+ * @namespace options
+ * @for Uploader
+ * @description 上传并发数。允许同时最大上传进程数。
+ */
+ threads: 3,
+
+
+ /**
+ * @property {Object} [formData={}]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
+ */
+ formData: {}
+
+ /**
+ * @property {Object} [fileVal='file']
+ * @namespace options
+ * @for Uploader
+ * @description 设置文件上传域的name。
+ */
+
+ /**
+ * @property {Object} [method=POST]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传方式,`POST` 或者 `GET`。
+ */
+
+ /**
+ * @property {Object} [sendAsBinary=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
+ * 其他参数在$_GET数组中。
+ */
+ });
+
+ // 负责将文件切片。
+ function CuteFile( file, chunkSize ) {
+ var pending = [],
+ blob = file.source,
+ total = blob.size,
+ chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
+ start = 0,
+ index = 0,
+ len, api;
+
+ api = {
+ file: file,
+
+ has: function() {
+ return !!pending.length;
+ },
+
+ shift: function() {
+ return pending.shift();
+ },
+
+ unshift: function( block ) {
+ pending.unshift( block );
+ }
+ };
+
+ while ( index < chunks ) {
+ len = Math.min( chunkSize, total - start );
+
+ pending.push({
+ file: file,
+ start: start,
+ end: chunkSize ? (start + len) : total,
+ total: total,
+ chunks: chunks,
+ chunk: index++,
+ cuted: api
+ });
+ start += len;
+ }
+
+ file.blocks = pending.concat();
+ file.remaning = pending.length;
+
+ return api;
+ }
+
+ Uploader.register({
+ name: 'upload',
+
+ init: function() {
+ var owner = this.owner,
+ me = this;
+
+ this.runing = false;
+ this.progress = false;
+
+ owner
+ .on( 'startUpload', function() {
+ me.progress = true;
+ })
+ .on( 'uploadFinished', function() {
+ me.progress = false;
+ });
+
+ // 记录当前正在传的数据,跟threads相关
+ this.pool = [];
+
+ // 缓存分好片的文件。
+ this.stack = [];
+
+ // 缓存即将上传的文件。
+ this.pending = [];
+
+ // 跟踪还有多少分片在上传中但是没有完成上传。
+ this.remaning = 0;
+ this.__tick = Base.bindFn( this._tick, this );
+
+ // 销毁上传相关的属性。
+ owner.on( 'uploadComplete', function( file ) {
+
+ // 把其他块取消了。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ v.transport && (v.transport.abort(), v.transport.destroy());
+ delete v.transport;
+ });
+
+ delete file.blocks;
+ delete file.remaning;
+ });
+ },
+
+ reset: function() {
+ this.request( 'stop-upload', true );
+ this.runing = false;
+ this.pool = [];
+ this.stack = [];
+ this.pending = [];
+ this.remaning = 0;
+ this._trigged = false;
+ this._promise = null;
+ },
+
+ /**
+ * @event startUpload
+ * @description 当开始上传流程时触发。
+ * @for Uploader
+ */
+
+ /**
+ * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
+ *
+ * 可以指定开始某一个文件。
+ * @grammar upload() => undefined
+ * @grammar upload( file | fileId) => undefined
+ * @method upload
+ * @for Uploader
+ */
+ startUpload: function(file) {
+ var me = this;
+
+ // 移出invalid的文件
+ $.each( me.request( 'get-files', Status.INVALID ), function() {
+ me.request( 'remove-file', this );
+ });
+
+ // 如果指定了开始某个文件,则只开始指定的文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
+
+ if (file.getStatus() === Status.INTERRUPT) {
+ file.setStatus( Status.QUEUED );
+
+ $.each( me.pool, function( _, v ) {
+
+ // 之前暂停过。
+ if (v.file !== file) {
+ return;
+ }
+
+ v.transport && v.transport.send();
+ file.setStatus( Status.PROGRESS );
+ });
+
+
+ } else if (file.getStatus() !== Status.PROGRESS) {
+ file.setStatus( Status.QUEUED );
+ }
+ } else {
+ $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
+ this.setStatus( Status.QUEUED );
+ });
+ }
+
+ if ( me.runing ) {
+ me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
+ return Base.nextTick( me.__tick );
+ }
+
+ me.runing = true;
+ var files = [];
+
+ // 如果有暂停的,则续传
+ file || $.each( me.pool, function( _, v ) {
+ var file = v.file;
+
+ if ( file.getStatus() === Status.INTERRUPT ) {
+ me._trigged = false;
+ files.push(file);
+
+ if (v.waiting) {
+ return;
+ }
+
+ // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
+ v.transport ? v.transport.send() : me._doSend(v);
+ }
+ });
+
+ $.each(files, function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ file || $.each( me.request( 'get-files',
+ Status.INTERRUPT ), function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ me._trigged = false;
+ Base.nextTick( me.__tick );
+ me.owner.trigger('startUpload');
+ },
+
+ /**
+ * @event stopUpload
+ * @description 当开始上传流程暂停时触发。
+ * @for Uploader
+ */
+
+ /**
+ * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
+ *
+ * 如果第一个参数是文件,则只暂停指定文件。
+ * @grammar stop() => undefined
+ * @grammar stop( true ) => undefined
+ * @grammar stop( file ) => undefined
+ * @method stop
+ * @for Uploader
+ */
+ stopUpload: function( file, interrupt ) {
+ var me = this;
+
+ if (file === true) {
+ interrupt = file;
+ file = null;
+ }
+
+ if ( me.runing === false ) {
+ return;
+ }
+
+ // 如果只是暂停某个文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
+
+ if ( file.getStatus() !== Status.PROGRESS &&
+ file.getStatus() !== Status.QUEUED ) {
+ return;
+ }
+
+ file.setStatus( Status.INTERRUPT );
+
+
+ $.each( me.pool, function( _, v ) {
+
+ // 只 abort 指定的文件,每一个分片。
+ if (v.file === file) {
+ v.transport && v.transport.abort();
+
+ if (interrupt) {
+ me._putback(v);
+ me._popBlock(v);
+ }
+ }
+ });
+
+ me.owner.trigger('stopUpload', file);// 暂停,trigger event
+
+ return Base.nextTick( me.__tick );
+ }
+
+ me.runing = false;
+
+ // 正在准备中的文件。
+ if (this._promise && this._promise.file) {
+ this._promise.file.setStatus( Status.INTERRUPT );
+ }
+
+ interrupt && $.each( me.pool, function( _, v ) {
+ v.transport && v.transport.abort();
+ v.file.setStatus( Status.INTERRUPT );
+ });
+
+ me.owner.trigger('stopUpload');
+ },
+
+ /**
+ * @method cancelFile
+ * @grammar cancelFile( file ) => undefined
+ * @grammar cancelFile( id ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 标记文件状态为已取消, 同时将中断文件传输。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.cancelFile( file );
+ * })
+ */
+ cancelFile: function( file ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
+ });
+
+ file.setStatus( Status.CANCELLED );
+ this.owner.trigger( 'fileDequeued', file );
+ },
+
+ /**
+ * 判断`Uploader`是否正在上传中。
+ * @grammar isInProgress() => Boolean
+ * @method isInProgress
+ * @for Uploader
+ */
+ isInProgress: function() {
+ return !!this.progress;
+ },
+
+ _getStats: function() {
+ return this.request('get-stats');
+ },
+
+ /**
+ * 跳过一个文件上传,直接标记指定文件为已上传状态。
+ * @grammar skipFile( file ) => undefined
+ * @method skipFile
+ * @for Uploader
+ */
+ skipFile: function( file, status ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ file.setStatus( status || Status.COMPLETE );
+ file.skipped = true;
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
+ });
+
+ this.owner.trigger( 'uploadSkip', file );
+ },
+
+ /**
+ * @event uploadFinished
+ * @description 当所有文件上传结束时触发。
+ * @for Uploader
+ */
+ _tick: function() {
+ var me = this,
+ opts = me.options,
+ fn, val;
+
+ // 上一个promise还没有结束,则等待完成后再执行。
+ if ( me._promise ) {
+ return me._promise.always( me.__tick );
+ }
+
+ // 还有位置,且还有文件要处理的话。
+ if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
+ me._trigged = false;
+
+ fn = function( val ) {
+ me._promise = null;
+
+ // 有可能是reject过来的,所以要检测val的类型。
+ val && val.file && me._startSend( val );
+ Base.nextTick( me.__tick );
+ };
+
+ me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
+
+ // 没有要上传的了,且没有正在传输的了。
+ } else if ( !me.remaning && !me._getStats().numOfQueue &&
+ !me._getStats().numOfInterrupt ) {
+ me.runing = false;
+
+ me._trigged || Base.nextTick(function() {
+ me.owner.trigger('uploadFinished');
+ });
+ me._trigged = true;
+ }
+ },
+
+ _putback: function(block) {
+ var idx;
+
+ block.cuted.unshift(block);
+ idx = this.stack.indexOf(block.cuted);
+
+ if (!~idx) {
+ // 如果不在里面,说明移除过,需要把计数还原回去。
+ this.remaning++;
+ block.file.remaning++;
+ this.stack.unshift(block.cuted);
+ }
+ },
+
+ _getStack: function() {
+ var i = 0,
+ act;
+
+ while ( (act = this.stack[ i++ ]) ) {
+ if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
+ return act;
+ } else if (!act.has() ||
+ act.file.getStatus() !== Status.PROGRESS &&
+ act.file.getStatus() !== Status.INTERRUPT ) {
+
+ // 把已经处理完了的,或者,状态为非 progress(上传中)、
+ // interupt(暂停中) 的移除。
+ this.stack.splice( --i, 1 );
+ }
+ }
+
+ return null;
+ },
+
+ _nextBlock: function() {
+ var me = this,
+ opts = me.options,
+ act, next, done, preparing;
+
+ // 如果当前文件还有没有需要传输的,则直接返回剩下的。
+ if ( (act = this._getStack()) ) {
+
+ // 是否提前准备下一个文件
+ if ( opts.prepareNextFile && !me.pending.length ) {
+ me._prepareNextFile();
+ }
+
+ return act.shift();
+
+ // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
+ } else if ( me.runing ) {
+
+ // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
+ if ( !me.pending.length && me._getStats().numOfQueue ) {
+ me._prepareNextFile();
+ }
+
+ next = me.pending.shift();
+ done = function( file ) {
+ if ( !file ) {
+ return null;
+ }
+
+ act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
+ me.stack.push(act);
+ return act.shift();
+ };
+
+ // 文件可能还在prepare中,也有可能已经完全准备好了。
+ if ( isPromise( next) ) {
+ preparing = next.file;
+ next = next[ next.pipe ? 'pipe' : 'then' ]( done );
+ next.file = preparing;
+ return next;
+ }
+
+ return done( next );
+ }
+ },
+
+
+ /**
+ * @event uploadStart
+ * @param {File} file File对象
+ * @description 某个文件开始上传前触发,一个文件只会触发一次。
+ * @for Uploader
+ */
+ _prepareNextFile: function() {
+ var me = this,
+ file = me.request('fetch-file'),
+ pending = me.pending,
+ promise;
+
+ if ( file ) {
+ promise = me.request( 'before-send-file', file, function() {
+
+ // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
+ if ( file.getStatus() === Status.PROGRESS ||
+ file.getStatus() === Status.INTERRUPT ) {
+ return file;
+ }
+
+ return me._finishFile( file );
+ });
+
+ me.owner.trigger( 'uploadStart', file );
+ file.setStatus( Status.PROGRESS );
+
+ promise.file = file;
+
+ // 如果还在pending中,则替换成文件本身。
+ promise.done(function() {
+ var idx = $.inArray( promise, pending );
+
+ ~idx && pending.splice( idx, 1, file );
+ });
+
+ // befeore-send-file的钩子就有错误发生。
+ promise.fail(function( reason ) {
+ file.setStatus( Status.ERROR, reason );
+ me.owner.trigger( 'uploadError', file, reason );
+ me.owner.trigger( 'uploadComplete', file );
+ });
+
+ pending.push( promise );
+ }
+ },
+
+ // 让出位置了,可以让其他分片开始上传
+ _popBlock: function( block ) {
+ var idx = $.inArray( block, this.pool );
+
+ this.pool.splice( idx, 1 );
+ block.file.remaning--;
+ this.remaning--;
+ },
+
+ // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
+ _startSend: function( block ) {
+ var me = this,
+ file = block.file,
+ promise;
+
+ // 有可能在 before-send-file 的 promise 期间改变了文件状态。
+ // 如:暂停,取消
+ // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
+ if ( file.getStatus() !== Status.PROGRESS ) {
+
+ // 如果是中断,则还需要放回去。
+ if (file.getStatus() === Status.INTERRUPT) {
+ me._putback(block);
+ }
+
+ return;
+ }
+
+ me.pool.push( block );
+ me.remaning++;
+
+ // 如果没有分片,则直接使用原始的。
+ // 不会丢失content-type信息。
+ block.blob = block.chunks === 1 ? file.source :
+ file.source.slice( block.start, block.end );
+
+ // hook, 每个分片发送之前可能要做些异步的事情。
+ block.waiting = promise = me.request( 'before-send', block, function() {
+ delete block.waiting;
+
+ // 有可能文件已经上传出错了,所以不需要再传输了。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ me._doSend( block );
+ } else if (block.file.getStatus() !== Status.INTERRUPT) {
+ me._popBlock(block);
+ }
+
+ Base.nextTick(me.__tick);
+ });
+
+ // 如果为fail了,则跳过此分片。
+ promise.fail(function() {
+ delete block.waiting;
+
+ if ( file.remaning === 1 ) {
+ me._finishFile( file ).always(function() {
+ block.percentage = 1;
+ me._popBlock( block );
+ me.owner.trigger( 'uploadComplete', file );
+ Base.nextTick( me.__tick );
+ });
+ } else {
+ block.percentage = 1;
+ me.updateFileProgress( file );
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ }
+ });
+ },
+
+
+ /**
+ * @event uploadBeforeSend
+ * @param {Object} object
+ * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
+ * @param {Object} headers 可以扩展此对象来控制上传头部。
+ * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadAccept
+ * @param {Object} object
+ * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
+ * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadProgress
+ * @param {File} file File对象
+ * @param {Number} percentage 上传进度
+ * @description 上传过程中触发,携带上传进度。
+ * @for Uploader
+ */
+
+
+ /**
+ * @event uploadError
+ * @param {File} file File对象
+ * @param {String} reason 出错的code
+ * @description 当文件上传出错时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadSuccess
+ * @param {File} file File对象
+ * @param {Object} response 服务端返回的数据
+ * @description 当文件上传成功时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadComplete
+ * @param {File} [file] File对象
+ * @description 不管成功或者失败,文件上传完成时触发。
+ * @for Uploader
+ */
+
+ // 做上传操作。
+ _doSend: function( block ) {
+ var me = this,
+ owner = me.owner,
+ opts = $.extend({}, me.options, block.options),
+ file = block.file,
+ tr = new Transport( opts ),
+ data = $.extend({}, opts.formData ),
+ headers = $.extend({}, opts.headers ),
+ requestAccept, ret;
+
+ block.transport = tr;
+
+ tr.on( 'destroy', function() {
+ delete block.transport;
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ });
+
+ // 广播上传进度。以文件为单位。
+ tr.on( 'progress', function( percentage ) {
+ block.percentage = percentage;
+ me.updateFileProgress( file );
+ });
+
+ // 用来询问,是否返回的结果是有错误的。
+ requestAccept = function( reject ) {
+ var fn;
+
+ ret = tr.getResponseAsJson() || {};
+ ret._raw = tr.getResponse();
+ ret._headers = tr.getResponseHeaders();
+ block.response = ret;
+ fn = function( value ) {
+ reject = value;
+ };
+
+ // 服务端响应了,不代表成功了,询问是否响应正确。
+ if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
+ reject = reject || 'server';
+ }
+
+ return reject;
+ };
+
+ // 尝试重试,然后广播文件上传出错。
+ tr.on( 'error', function( type, flag ) {
+ // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
+ // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
+ var typeArr = type.split( '|' ), status, statusText;
+ type = typeArr[0];
+ status = parseFloat( typeArr[1] ),
+ statusText = typeArr[2];
+
+ block.retried = block.retried || 0;
+
+ // 自动重试
+ if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
+ block.retried < opts.chunkRetry ) {
+
+ block.retried++;
+
+ me.retryTimer = setTimeout(function() {
+ tr.send();
+ }, opts.chunkRetryDelay || 1000);
+
+ } else {
+
+ // http status 500 ~ 600
+ if ( !flag && type === 'server' ) {
+ type = requestAccept( type );
+ }
+
+ file.setStatus( Status.ERROR, type );
+ owner.trigger( 'uploadError', file, type, status, statusText );
+ owner.trigger( 'uploadComplete', file );
+ }
+ });
+
+ // 上传成功
+ tr.on( 'load', function() {
+ var reason;
+
+ // 如果非预期,转向上传出错。
+ if ( (reason = requestAccept()) ) {
+ tr.trigger( 'error', reason, true );
+ return;
+ }
+
+ // 全部上传完成。
+ if ( file.remaning === 1 ) {
+ me._finishFile( file, ret );
+ } else {
+ tr.destroy();
+ }
+ });
+
+ // 配置默认的上传字段。
+ data = $.extend( data, {
+ id: file.id,
+ name: file.name,
+ type: file.type,
+ lastModifiedDate: file.lastModifiedDate,
+ size: file.size
+ });
+
+ block.chunks > 1 && $.extend( data, {
+ chunks: block.chunks,
+ chunk: block.chunk
+ });
+
+ // 在发送之间可以添加字段什么的。。。
+ // 如果默认的字段不够使用,可以通过监听此事件来扩展
+ owner.trigger( 'uploadBeforeSend', block, data, headers );
+
+ // 开始发送。
+ tr.appendBlob( opts.fileVal, block.blob, file.name );
+ tr.append( data );
+ tr.setRequestHeader( headers );
+ tr.send();
+ },
+
+ // 完成上传。
+ _finishFile: function( file, ret, hds ) {
+ var owner = this.owner;
+
+ return owner
+ .request( 'after-send-file', arguments, function() {
+ file.setStatus( Status.COMPLETE );
+ owner.trigger( 'uploadSuccess', file, ret, hds );
+ })
+ .fail(function( reason ) {
+
+ // 如果外部已经标记为invalid什么的,不再改状态。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ file.setStatus( Status.ERROR, reason );
+ }
+
+ owner.trigger( 'uploadError', file, reason );
+ })
+ .always(function() {
+ owner.trigger( 'uploadComplete', file );
+ });
+ },
+
+ updateFileProgress: function(file) {
+ var totalPercent = 0,
+ uploaded = 0;
+
+ if (!file.blocks) {
+ return;
+ }
+
+ $.each( file.blocks, function( _, v ) {
+ uploaded += (v.percentage || 0) * (v.end - v.start);
+ });
+
+ totalPercent = uploaded / file.size;
+ this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
+ },
+
+ destroy: function() {
+ clearTimeout(this.retryTimer);
+ }
+
+ });
+ });
- uploader.on( 'reset', function() {
- mapping = {};
- });
- });
+ /**
+ * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
+ */
+
+ define('widgets/validator',[
+ 'base',
+ 'uploader',
+ 'file',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile ) {
+
+ var $ = Base.$,
+ validators = {},
+ api;
+
+ /**
+ * @event error
+ * @param {String} type 错误类型。
+ * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
+ *
+ * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
+ * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
+ * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
+ * @for Uploader
+ */
+
+ // 暴露给外面的api
+ api = {
+
+ // 添加验证器
+ addValidator: function( type, cb ) {
+ validators[ type ] = cb;
+ },
+
+ // 移除验证器
+ removeValidator: function( type ) {
+ delete validators[ type ];
+ }
+ };
+
+ // 在Uploader初始化的时候启动Validators的初始化
+ Uploader.register({
+ name: 'validator',
+
+ init: function() {
+ var me = this;
+ Base.nextTick(function() {
+ $.each( validators, function() {
+ this.call( me.owner );
+ });
+ });
+ }
+ });
+
+ /**
+ * @property {int} [fileNumLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总数量, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileNumLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileNumLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
+ if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
+ return false;
+ }
+ if ( count >= max && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return count >= max ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function() {
+ count++;
+ });
+
+ uploader.on( 'fileDequeued', function() {
+ count--;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+
+ /**
+ * @property {int} [fileSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileSizeLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var invalid = count + file.size > max;
+
+ if ( invalid && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return invalid ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ count += file.size;
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ count -= file.size;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+ /**
+ * @property {int} [fileSingleSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSingleSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ max = opts.fileSingleSizeLimit;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+
+ if ( file.size > max ) {
+ file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
+ this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
+ return false;
+ }
+
+ });
+
+ });
+
+ /**
+ * @property {Boolean} [duplicate=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
+ */
+ api.addValidator( 'duplicate', function() {
+ var uploader = this,
+ opts = uploader.options,
+ mapping = {};
+
+ if ( opts.duplicate ) {
+ return;
+ }
+
+ function hashString( str ) {
+ var hash = 0,
+ i = 0,
+ len = str.length,
+ _char;
+
+ for ( ; i < len; i++ ) {
+ _char = str.charCodeAt( i );
+ hash = _char + (hash << 6) + (hash << 16) - hash;
+ }
+
+ return hash;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var hash = file.__hash || (file.__hash = hashString( file.name +
+ file.size + file.lastModifiedDate ));
+
+ // 已经重复了
+ if ( mapping[ hash ] ) {
+ this.trigger( 'error', 'F_DUPLICATE', file );
+ return false;
+ }
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (mapping[ hash ] = true);
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (delete mapping[ hash ]);
+ });
+
+ uploader.on( 'reset', function() {
+ mapping = {};
+ });
+ });
+
+ return api;
+ });
- return api;
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/compbase',[],function() {
+
+ function CompBase( owner, runtime ) {
+
+ this.owner = owner;
+ this.options = owner.options;
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.getRuid = function() {
+ return runtime.uid;
+ };
+
+ this.trigger = function() {
+ return owner.trigger.apply( owner, arguments );
+ };
+ }
+
+ return CompBase;
});
-
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/compbase',[],function() {
-
- function CompBase( owner, runtime ) {
-
- this.owner = owner;
- this.options = owner.options;
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.getRuid = function() {
- return runtime.uid;
- };
-
- this.trigger = function() {
- return owner.trigger.apply( owner, arguments );
- };
- }
-
- return CompBase;
+ /**
+ * @fileOverview Html5Runtime
+ */
+ define('runtime/html5/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var type = 'html5',
+ components = {};
+
+ function Html5Runtime() {
+ var pool = {},
+ me = this,
+ destroy = this.destroy;
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ if ( components[ comp ] ) {
+ instance = pool[ uid ] = pool[ uid ] ||
+ new components[ comp ]( client, me );
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+ };
+
+ me.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+ }
+
+ Base.inherits( Runtime, {
+ constructor: Html5Runtime,
+
+ // 不需要连接其他程序,直接执行callback
+ init: function() {
+ var me = this;
+ setTimeout(function() {
+ me.trigger('ready');
+ }, 1 );
+ }
+
+ });
+
+ // 注册Components
+ Html5Runtime.register = function( name, component ) {
+ var klass = components[ name ] = Base.inherits( CompBase, component );
+ return klass;
+ };
+
+ // 注册html5运行时。
+ // 只有在支持的前提下注册。
+ if ( window.Blob && window.FileReader && window.DataView ) {
+ Runtime.addRuntime( type, Html5Runtime );
+ }
+
+ return Html5Runtime;
});
- /**
- * @fileOverview Html5Runtime
- */
- define('runtime/html5/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var type = 'html5',
- components = {};
-
- function Html5Runtime() {
- var pool = {},
- me = this,
- destroy = this.destroy;
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- if ( components[ comp ] ) {
- instance = pool[ uid ] = pool[ uid ] ||
- new components[ comp ]( client, me );
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
- };
-
- me.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
- }
-
- Base.inherits( Runtime, {
- constructor: Html5Runtime,
-
- // 不需要连接其他程序,直接执行callback
- init: function() {
- var me = this;
- setTimeout(function() {
- me.trigger('ready');
- }, 1 );
- }
-
- });
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/html5/blob',[
+ 'runtime/html5/runtime',
+ 'lib/blob'
+ ], function( Html5Runtime, Blob ) {
+
+ return Html5Runtime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.owner.source,
+ slice = blob.slice || blob.webkitSlice || blob.mozSlice;
+
+ blob = slice.call( blob, start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
+ });
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/dnd',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ var $ = Base.$,
+ prefix = 'webuploader-dnd-';
+
+ return Html5Runtime.register( 'DragAndDrop', {
+ init: function() {
+ var elem = this.elem = this.options.container;
+
+ this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
+ this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
+ this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
+ this.dropHandler = Base.bindFn( this._dropHandler, this );
+ this.dndOver = false;
+
+ elem.on( 'dragenter', this.dragEnterHandler );
+ elem.on( 'dragover', this.dragOverHandler );
+ elem.on( 'dragleave', this.dragLeaveHandler );
+ elem.on( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).on( 'dragover', this.dragOverHandler );
+ $( document ).on( 'drop', this.dropHandler );
+ }
+ },
+
+ _dragEnterHandler: function( e ) {
+ var me = this,
+ denied = me._denied || false,
+ items;
+
+ e = e.originalEvent || e;
+
+ if ( !me.dndOver ) {
+ me.dndOver = true;
+
+ // 注意只有 chrome 支持。
+ items = e.dataTransfer.items;
+
+ if ( items && items.length ) {
+ me._denied = denied = !me.trigger( 'accept', items );
+ }
+
+ me.elem.addClass( prefix + 'over' );
+ me.elem[ denied ? 'addClass' :
+ 'removeClass' ]( prefix + 'denied' );
+ }
+
+ e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+
+ return false;
+ },
+
+ _dragOverHandler: function( e ) {
+ // 只处理框内的。
+ var parentElem = this.elem.parent().get( 0 );
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ clearTimeout( this._leaveTimer );
+ this._dragEnterHandler.call( this, e );
+
+ return false;
+ },
+
+ _dragLeaveHandler: function() {
+ var me = this,
+ handler;
+
+ handler = function() {
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
+ };
+
+ clearTimeout( me._leaveTimer );
+ me._leaveTimer = setTimeout( handler, 100 );
+ return false;
+ },
+
+ _dropHandler: function( e ) {
+ var me = this,
+ ruid = me.getRuid(),
+ parentElem = me.elem.parent().get( 0 ),
+ dataTransfer, data;
+
+ // 只处理框内的。
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ e = e.originalEvent || e;
+ dataTransfer = e.dataTransfer;
+
+ // 如果是页面内拖拽,还不能处理,不阻止事件。
+ // 此处 ie11 下会报参数错误,
+ try {
+ data = dataTransfer.getData('text/html');
+ } catch( err ) {
+ }
+
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over' );
+
+ if ( !dataTransfer || data ) {
+ return;
+ }
+
+ me._getTansferFiles( dataTransfer, function( results ) {
+ me.trigger( 'drop', $.map( results, function( file ) {
+ return new File( ruid, file );
+ }) );
+ });
+
+ return false;
+ },
+
+ // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
+ _getTansferFiles: function( dataTransfer, callback ) {
+ var results = [],
+ promises = [],
+ items, files, file, item, i, len, canAccessFolder;
+
+ items = dataTransfer.items;
+ files = dataTransfer.files;
+
+ canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+
+ for ( i = 0, len = files.length; i < len; i++ ) {
+ file = files[ i ];
+ item = items && items[ i ];
+
+ if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+
+ promises.push( this._traverseDirectoryTree(
+ item.webkitGetAsEntry(), results ) );
+ } else {
+ results.push( file );
+ }
+ }
+
+ Base.when.apply( Base, promises ).done(function() {
+
+ if ( !results.length ) {
+ return;
+ }
+
+ callback( results );
+ });
+ },
+
+ _traverseDirectoryTree: function( entry, results ) {
+ var deferred = Base.Deferred(),
+ me = this;
+
+ if ( entry.isFile ) {
+ entry.file(function( file ) {
+ results.push( file );
+ deferred.resolve();
+ });
+ } else if ( entry.isDirectory ) {
+ entry.createReader().readEntries(function( entries ) {
+ var len = entries.length,
+ promises = [],
+ arr = [], // 为了保证顺序。
+ i;
+
+ for ( i = 0; i < len; i++ ) {
+ promises.push( me._traverseDirectoryTree(
+ entries[ i ], arr ) );
+ }
+
+ Base.when.apply( Base, promises ).then(function() {
+ results.push.apply( results, arr );
+ deferred.resolve();
+ }, deferred.reject );
+ });
+ }
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ var elem = this.elem;
+
+ // 还没 init 就调用 destroy
+ if (!elem) {
+ return;
+ }
+
+ elem.off( 'dragenter', this.dragEnterHandler );
+ elem.off( 'dragover', this.dragOverHandler );
+ elem.off( 'dragleave', this.dragLeaveHandler );
+ elem.off( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).off( 'dragover', this.dragOverHandler );
+ $( document ).off( 'drop', this.dropHandler );
+ }
+ }
+ });
+ });
- // 注册Components
- Html5Runtime.register = function( name, component ) {
- var klass = components[ name ] = Base.inherits( CompBase, component );
- return klass;
- };
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/filepaste',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ return Html5Runtime.register( 'FilePaste', {
+ init: function() {
+ var opts = this.options,
+ elem = this.elem = opts.container,
+ accept = '.*',
+ arr, i, len, item;
+
+ // accetp的mimeTypes中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].mimeTypes;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = arr.join(',');
+ accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
+ }
+ }
+ this.accept = accept = new RegExp( accept, 'i' );
+ this.hander = Base.bindFn( this._pasteHander, this );
+ elem.on( 'paste', this.hander );
+ },
+
+ _pasteHander: function( e ) {
+ var allowed = [],
+ ruid = this.getRuid(),
+ items, item, blob, i, len;
+
+ e = e.originalEvent || e;
+ items = e.clipboardData.items;
+
+ for ( i = 0, len = items.length; i < len; i++ ) {
+ item = items[ i ];
+
+ if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
+ continue;
+ }
+
+ allowed.push( new File( ruid, blob ) );
+ }
+
+ if ( allowed.length ) {
+ // 不阻止非文件粘贴(文字粘贴)的事件冒泡
+ e.preventDefault();
+ e.stopPropagation();
+ this.trigger( 'paste', allowed );
+ }
+ },
+
+ destroy: function() {
+ this.elem.off( 'paste', this.hander );
+ }
+ });
+ });
- // 注册html5运行时。
- // 只有在支持的前提下注册。
- if ( window.Blob && window.FileReader && window.DataView ) {
- Runtime.addRuntime( type, Html5Runtime );
- }
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/html5/filepicker',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var $ = Base.$;
+
+ return Html5Runtime.register( 'FilePicker', {
+ init: function() {
+ var container = this.getRuntime().getContainer(),
+ me = this,
+ owner = me.owner,
+ opts = me.options,
+ label = this.label = $( document.createElement('label') ),
+ input = this.input = $( document.createElement('input') ),
+ arr, i, len, mouseHandler, changeHandler;
+
+ input.attr( 'type', 'file' );
+ // input.attr( 'capture', 'camera');
+ input.attr( 'name', opts.name );
+ input.addClass('webuploader-element-invisible');
+
+ label.on( 'click', function(e) {
+ input.trigger('click');
+ e.stopPropagation();
+ owner.trigger('dialogopen');
+ });
+
+ label.css({
+ opacity: 0,
+ width: '100%',
+ height: '100%',
+ display: 'block',
+ cursor: 'pointer',
+ background: '#ffffff'
+ });
+
+ if ( opts.multiple ) {
+ input.attr( 'multiple', 'multiple' );
+ }
+
+ // @todo Firefox不支持单独指定后缀
+ if ( opts.accept && opts.accept.length > 0 ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ arr.push( opts.accept[ i ].mimeTypes );
+ }
+
+ input.attr( 'accept', arr.join(',') );
+ }
+
+ container.append( input );
+ container.append( label );
+
+ mouseHandler = function( e ) {
+ owner.trigger( e.type );
+ };
+
+ changeHandler = function( e ) {
+ var clone;
+
+ // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
+ if (e.target.files.length === 0){
+ return false;
+ }
+
+ // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
+ me.files = e.target.files;
+
+
+ // reset input
+ clone = this.cloneNode( true );
+ clone.value = null;
+ this.parentNode.replaceChild( clone, this );
+
+ input.off();
+ input = $( clone ).on( 'change', changeHandler )
+ .on( 'mouseenter mouseleave', mouseHandler );
+
+ owner.trigger('change');
+ }
+ input.on( 'change', changeHandler);
+ label.on( 'mouseenter mouseleave', mouseHandler );
+
+ },
+
+
+ getFiles: function() {
+ return this.files;
+ },
+
+ destroy: function() {
+ this.input.off();
+ this.label.off();
+ }
+ });
+ });
- return Html5Runtime;
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/util',[
+ 'base'
+ ], function( Base ) {
+
+ var urlAPI = window.createObjectURL && window ||
+ window.URL && URL.revokeObjectURL && URL ||
+ window.webkitURL,
+ createObjectURL = Base.noop,
+ revokeObjectURL = createObjectURL;
+
+ if ( urlAPI ) {
+
+ // 更安全的方式调用,比如android里面就能把context改成其他的对象。
+ createObjectURL = function() {
+ return urlAPI.createObjectURL.apply( urlAPI, arguments );
+ };
+
+ revokeObjectURL = function() {
+ return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
+ };
+ }
+
+ return {
+ createObjectURL: createObjectURL,
+ revokeObjectURL: revokeObjectURL,
+
+ dataURL2Blob: function( dataURI ) {
+ var byteStr, intArray, ab, i, mimetype, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ ab = new ArrayBuffer( byteStr.length );
+ intArray = new Uint8Array( ab );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
+
+ return this.arrayBufferToBlob( ab, mimetype );
+ },
+
+ dataURL2ArrayBuffer: function( dataURI ) {
+ var byteStr, intArray, i, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ intArray = new Uint8Array( byteStr.length );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ return intArray.buffer;
+ },
+
+ arrayBufferToBlob: function( buffer, type ) {
+ var builder = window.BlobBuilder || window.WebKitBlobBuilder,
+ bb;
+
+ // android不支持直接new Blob, 只能借助blobbuilder.
+ if ( builder ) {
+ bb = new builder();
+ bb.append( buffer );
+ return bb.getBlob( type );
+ }
+
+ return new Blob([ buffer ], type ? { type: type } : {} );
+ },
+
+ // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
+ // 你得到的结果是png.
+ canvasToDataUrl: function( canvas, type, quality ) {
+ return canvas.toDataURL( type, quality / 100 );
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ parseMeta: function( blob, callback ) {
+ callback( false, {});
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ updateImageHead: function( data ) {
+ return data;
+ }
+ };
});
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/html5/blob',[
- 'runtime/html5/runtime',
- 'lib/blob'
- ], function( Html5Runtime, Blob ) {
-
- return Html5Runtime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.owner.source,
- slice = blob.slice || blob.webkitSlice || blob.mozSlice;
-
- blob = slice.call( blob, start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/imagemeta',[
+ 'runtime/html5/util'
+ ], function( Util ) {
+
+ var api;
+
+ api = {
+ parsers: {
+ 0xffe1: []
+ },
+
+ maxMetaDataSize: 262144,
+
+ parse: function( blob, cb ) {
+ var me = this,
+ fr = new FileReader();
+
+ fr.onload = function() {
+ cb( false, me._parse( this.result ) );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ fr.onerror = function( e ) {
+ cb( e.message );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ blob = blob.slice( 0, me.maxMetaDataSize );
+ fr.readAsArrayBuffer( blob.getSource() );
+ },
+
+ _parse: function( buffer, noParse ) {
+ if ( buffer.byteLength < 6 ) {
+ return;
+ }
+
+ var dataview = new DataView( buffer ),
+ offset = 2,
+ maxOffset = dataview.byteLength - 4,
+ headLength = offset,
+ ret = {},
+ markerBytes, markerLength, parsers, i;
+
+ if ( dataview.getUint16( 0 ) === 0xffd8 ) {
+
+ while ( offset < maxOffset ) {
+ markerBytes = dataview.getUint16( offset );
+
+ if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
+ markerBytes === 0xfffe ) {
+
+ markerLength = dataview.getUint16( offset + 2 ) + 2;
+
+ if ( offset + markerLength > dataview.byteLength ) {
+ break;
+ }
+
+ parsers = api.parsers[ markerBytes ];
+
+ if ( !noParse && parsers ) {
+ for ( i = 0; i < parsers.length; i += 1 ) {
+ parsers[ i ].call( api, dataview, offset,
+ markerLength, ret );
+ }
+ }
+
+ offset += markerLength;
+ headLength = offset;
+ } else {
+ break;
+ }
+ }
+
+ if ( headLength > 6 ) {
+ if ( buffer.slice ) {
+ ret.imageHead = buffer.slice( 2, headLength );
+ } else {
+ // Workaround for IE10, which does not yet
+ // support ArrayBuffer.slice:
+ ret.imageHead = new Uint8Array( buffer )
+ .subarray( 2, headLength );
+ }
+ }
+ }
+
+ return ret;
+ },
+
+ updateImageHead: function( buffer, head ) {
+ var data = this._parse( buffer, true ),
+ buf1, buf2, bodyoffset;
+
+
+ bodyoffset = 2;
+ if ( data.imageHead ) {
+ bodyoffset = 2 + data.imageHead.byteLength;
+ }
+
+ if ( buffer.slice ) {
+ buf2 = buffer.slice( bodyoffset );
+ } else {
+ buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
+ }
+
+ buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
+
+ buf1[ 0 ] = 0xFF;
+ buf1[ 1 ] = 0xD8;
+ buf1.set( new Uint8Array( head ), 2 );
+ buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
+
+ return buf1.buffer;
+ }
+ };
+
+ Util.parseMeta = function() {
+ return api.parse.apply( api, arguments );
+ };
+
+ Util.updateImageHead = function() {
+ return api.updateImageHead.apply( api, arguments );
+ };
+
+ return api;
});
/**
- * @fileOverview FilePaste
+ * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
+ * 暂时项目中只用了orientation.
+ *
+ * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
+ * @fileOverview EXIF解析
*/
- define('runtime/html5/dnd',[
+
+ // Sample
+ // ====================================
+ // Make : Apple
+ // Model : iPhone 4S
+ // Orientation : 1
+ // XResolution : 72 [72/1]
+ // YResolution : 72 [72/1]
+ // ResolutionUnit : 2
+ // Software : QuickTime 7.7.1
+ // DateTime : 2013:09:01 22:53:55
+ // ExifIFDPointer : 190
+ // ExposureTime : 0.058823529411764705 [1/17]
+ // FNumber : 2.4 [12/5]
+ // ExposureProgram : Normal program
+ // ISOSpeedRatings : 800
+ // ExifVersion : 0220
+ // DateTimeOriginal : 2013:09:01 22:52:51
+ // DateTimeDigitized : 2013:09:01 22:52:51
+ // ComponentsConfiguration : YCbCr
+ // ShutterSpeedValue : 4.058893515764426
+ // ApertureValue : 2.5260688216892597 [4845/1918]
+ // BrightnessValue : -0.3126686601998395
+ // MeteringMode : Pattern
+ // Flash : Flash did not fire, compulsory flash mode
+ // FocalLength : 4.28 [107/25]
+ // SubjectArea : [4 values]
+ // FlashpixVersion : 0100
+ // ColorSpace : 1
+ // PixelXDimension : 2448
+ // PixelYDimension : 3264
+ // SensingMethod : One-chip color area sensor
+ // ExposureMode : 0
+ // WhiteBalance : Auto white balance
+ // FocalLengthIn35mmFilm : 35
+ // SceneCaptureType : Standard
+ define('runtime/html5/imagemeta/exif',[
+ 'base',
+ 'runtime/html5/imagemeta'
+ ], function( Base, ImageMeta ) {
+
+ var EXIF = {};
+
+ EXIF.ExifMap = function() {
+ return this;
+ };
+
+ EXIF.ExifMap.prototype.map = {
+ 'Orientation': 0x0112
+ };
+
+ EXIF.ExifMap.prototype.get = function( id ) {
+ return this[ id ] || this[ this.map[ id ] ];
+ };
+
+ EXIF.exifTagTypes = {
+ // byte, 8-bit unsigned int:
+ 1: {
+ getValue: function( dataView, dataOffset ) {
+ return dataView.getUint8( dataOffset );
+ },
+ size: 1
+ },
+
+ // ascii, 8-bit byte:
+ 2: {
+ getValue: function( dataView, dataOffset ) {
+ return String.fromCharCode( dataView.getUint8( dataOffset ) );
+ },
+ size: 1,
+ ascii: true
+ },
+
+ // short, 16 bit int:
+ 3: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint16( dataOffset, littleEndian );
+ },
+ size: 2
+ },
+
+ // long, 32 bit int:
+ 4: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // rational = two long values,
+ // first is numerator, second is denominator:
+ 5: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian ) /
+ dataView.getUint32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ },
+
+ // slong, 32 bit signed int:
+ 9: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // srational, two slongs, first is numerator, second is denominator:
+ 10: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian ) /
+ dataView.getInt32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ }
+ };
+
+ // undefined, 8-bit byte, value depending on field:
+ EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
+
+ EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
+ littleEndian ) {
+
+ var tagType = EXIF.exifTagTypes[ type ],
+ tagSize, dataOffset, values, i, str, c;
+
+ if ( !tagType ) {
+ Base.log('Invalid Exif data: Invalid tag type.');
+ return;
+ }
+
+ tagSize = tagType.size * length;
+
+ // Determine if the value is contained in the dataOffset bytes,
+ // or if the value at the dataOffset is a pointer to the actual data:
+ dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
+ littleEndian ) : (offset + 8);
+
+ if ( dataOffset + tagSize > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid data offset.');
+ return;
+ }
+
+ if ( length === 1 ) {
+ return tagType.getValue( dataView, dataOffset, littleEndian );
+ }
+
+ values = [];
+
+ for ( i = 0; i < length; i += 1 ) {
+ values[ i ] = tagType.getValue( dataView,
+ dataOffset + i * tagType.size, littleEndian );
+ }
+
+ if ( tagType.ascii ) {
+ str = '';
+
+ // Concatenate the chars:
+ for ( i = 0; i < values.length; i += 1 ) {
+ c = values[ i ];
+
+ // Ignore the terminating NULL byte(s):
+ if ( c === '\u0000' ) {
+ break;
+ }
+ str += c;
+ }
+
+ return str;
+ }
+ return values;
+ };
+
+ EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
+ data ) {
+
+ var tag = dataView.getUint16( offset, littleEndian );
+ data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
+ dataView.getUint16( offset + 2, littleEndian ), // tag type
+ dataView.getUint32( offset + 4, littleEndian ), // tag length
+ littleEndian );
+ };
+
+ EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
+ littleEndian, data ) {
+
+ var tagsNumber, dirEndOffset, i;
+
+ if ( dirOffset + 6 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory offset.');
+ return;
+ }
+
+ tagsNumber = dataView.getUint16( dirOffset, littleEndian );
+ dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
+
+ if ( dirEndOffset + 4 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory size.');
+ return;
+ }
+
+ for ( i = 0; i < tagsNumber; i += 1 ) {
+ this.parseExifTag( dataView, tiffOffset,
+ dirOffset + 2 + 12 * i, // tag offset
+ littleEndian, data );
+ }
+
+ // Return the offset to the next directory:
+ return dataView.getUint32( dirEndOffset, littleEndian );
+ };
+
+ // EXIF.getExifThumbnail = function(dataView, offset, length) {
+ // var hexData,
+ // i,
+ // b;
+ // if (!length || offset + length > dataView.byteLength) {
+ // Base.log('Invalid Exif data: Invalid thumbnail data.');
+ // return;
+ // }
+ // hexData = [];
+ // for (i = 0; i < length; i += 1) {
+ // b = dataView.getUint8(offset + i);
+ // hexData.push((b < 16 ? '0' : '') + b.toString(16));
+ // }
+ // return 'data:image/jpeg,%' + hexData.join('%');
+ // };
+
+ EXIF.parseExifData = function( dataView, offset, length, data ) {
+
+ var tiffOffset = offset + 10,
+ littleEndian, dirOffset;
+
+ // Check for the ASCII code for "Exif" (0x45786966):
+ if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
+ // No Exif data, might be XMP data instead
+ return;
+ }
+ if ( tiffOffset + 8 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid segment size.');
+ return;
+ }
+
+ // Check for the two null bytes:
+ if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
+ Base.log('Invalid Exif data: Missing byte alignment offset.');
+ return;
+ }
+
+ // Check the byte alignment:
+ switch ( dataView.getUint16( tiffOffset ) ) {
+ case 0x4949:
+ littleEndian = true;
+ break;
+
+ case 0x4D4D:
+ littleEndian = false;
+ break;
+
+ default:
+ Base.log('Invalid Exif data: Invalid byte alignment marker.');
+ return;
+ }
+
+ // Check for the TIFF tag marker (0x002A):
+ if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
+ Base.log('Invalid Exif data: Missing TIFF marker.');
+ return;
+ }
+
+ // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
+ dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
+ // Create the exif object to store the tags:
+ data.exif = new EXIF.ExifMap();
+ // Parse the tags of the main image directory and retrieve the
+ // offset to the next directory, usually the thumbnail directory:
+ dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
+ tiffOffset + dirOffset, littleEndian, data );
+
+ // 尝试读取缩略图
+ // if ( dirOffset ) {
+ // thumbnailData = {exif: {}};
+ // dirOffset = EXIF.parseExifTags(
+ // dataView,
+ // tiffOffset,
+ // tiffOffset + dirOffset,
+ // littleEndian,
+ // thumbnailData
+ // );
+
+ // // Check for JPEG Thumbnail offset:
+ // if (thumbnailData.exif[0x0201]) {
+ // data.exif.Thumbnail = EXIF.getExifThumbnail(
+ // dataView,
+ // tiffOffset + thumbnailData.exif[0x0201],
+ // thumbnailData.exif[0x0202] // Thumbnail data length
+ // );
+ // }
+ // }
+ };
+
+ ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
+ return EXIF;
+ });
+ /**
+ * @fileOverview Image
+ */
+ define('runtime/html5/image',[
'base',
'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ 'runtime/html5/util'
+ ], function( Base, Html5Runtime, Util ) {
- var $ = Base.$,
- prefix = 'webuploader-dnd-';
+ var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
+
+ return Html5Runtime.register( 'Image', {
+
+ // flag: 标记是否被修改过。
+ modified: false,
- return Html5Runtime.register( 'DragAndDrop', {
init: function() {
- var elem = this.elem = this.options.container;
+ var me = this,
+ img = new Image();
- this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
- this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
- this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
- this.dropHandler = Base.bindFn( this._dropHandler, this );
- this.dndOver = false;
+ img.onload = function() {
- elem.on( 'dragenter', this.dragEnterHandler );
- elem.on( 'dragover', this.dragOverHandler );
- elem.on( 'dragleave', this.dragLeaveHandler );
- elem.on( 'drop', this.dropHandler );
+ me._info = {
+ type: me.type,
+ width: this.width,
+ height: this.height
+ };
- if ( this.options.disableGlobalDnd ) {
- $( document ).on( 'dragover', this.dragOverHandler );
- $( document ).on( 'drop', this.dropHandler );
- }
+ //debugger;
+
+ // 读取meta信息。
+ if ( !me._metas && 'image/jpeg' === me.type ) {
+ Util.parseMeta( me._blob, function( error, ret ) {
+ me._metas = ret;
+ me.owner.trigger('load');
+ });
+ } else {
+ me.owner.trigger('load');
+ }
+ };
+
+ img.onerror = function() {
+ me.owner.trigger('error');
+ };
+
+ me._img = img;
},
- _dragEnterHandler: function( e ) {
+ loadFromBlob: function( blob ) {
var me = this,
- denied = me._denied || false,
- items;
+ img = me._img;
- e = e.originalEvent || e;
+ me._blob = blob;
+ me.type = blob.type;
+ img.src = Util.createObjectURL( blob.getSource() );
+ me.owner.once( 'load', function() {
+ Util.revokeObjectURL( img.src );
+ });
+ },
- if ( !me.dndOver ) {
- me.dndOver = true;
+ resize: function( width, height ) {
+ var canvas = this._canvas ||
+ (this._canvas = document.createElement('canvas'));
- // 注意只有 chrome 支持。
- items = e.dataTransfer.items;
+ this._resize( this._img, canvas, width, height );
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'resize' );
+ },
- if ( items && items.length ) {
- me._denied = denied = !me.trigger( 'accept', items );
+ crop: function( x, y, w, h, s ) {
+ var cvs = this._canvas ||
+ (this._canvas = document.createElement('canvas')),
+ opts = this.options,
+ img = this._img,
+ iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ orientation = this.getOrientation();
+
+ s = s || 1;
+
+ // todo 解决 orientation 的问题。
+ // values that require 90 degree rotation
+ // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // switch ( orientation ) {
+ // case 6:
+ // tmp = x;
+ // x = y;
+ // y = iw * s - tmp - w;
+ // console.log(ih * s, tmp, w)
+ // break;
+ // }
+
+ // (w ^= h, h ^= w, w ^= h);
+ // }
+
+ cvs.width = w;
+ cvs.height = h;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+ this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
+
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'crop' );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this._blob,
+ opts = this.options,
+ canvas;
+
+ type = type || this.type;
+
+ // blob需要重新生成。
+ if ( this.modified || this.type !== type ) {
+ canvas = this._canvas;
+
+ if ( type === 'image/jpeg' ) {
+
+ blob = Util.canvasToDataUrl( canvas, type, opts.quality );
+
+ if ( opts.preserveHeaders && this._metas &&
+ this._metas.imageHead ) {
+
+ blob = Util.dataURL2ArrayBuffer( blob );
+ blob = Util.updateImageHead( blob,
+ this._metas.imageHead );
+ blob = Util.arrayBufferToBlob( blob, type );
+ return blob;
+ }
+ } else {
+ blob = Util.canvasToDataUrl( canvas, type );
}
- me.elem.addClass( prefix + 'over' );
- me.elem[ denied ? 'addClass' :
- 'removeClass' ]( prefix + 'denied' );
+ blob = Util.dataURL2Blob( blob );
}
- e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+ return blob;
+ },
- return false;
+ getAsDataUrl: function( type ) {
+ var opts = this.options;
+
+ type = type || this.type;
+
+ if ( type === 'image/jpeg' ) {
+ return Util.canvasToDataUrl( this._canvas, type, opts.quality );
+ } else {
+ return this._canvas.toDataURL( type );
+ }
},
- _dragOverHandler: function( e ) {
- // 只处理框内的。
- var parentElem = this.elem.parent().get( 0 );
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
+ getOrientation: function() {
+ return this._metas && this._metas.exif &&
+ this._metas.exif.get('Orientation') || 1;
+ },
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
}
- clearTimeout( this._leaveTimer );
- this._dragEnterHandler.call( this, e );
+ // getter
+ return this._info;
+ },
- return false;
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._metas = val;
+ return this;
+ }
+
+ // getter
+ return this._metas;
},
- _dragLeaveHandler: function() {
- var me = this,
- handler;
+ destroy: function() {
+ var canvas = this._canvas;
+ this._img.onload = null;
- handler = function() {
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
- };
+ if ( canvas ) {
+ canvas.getContext('2d')
+ .clearRect( 0, 0, canvas.width, canvas.height );
+ canvas.width = canvas.height = 0;
+ this._canvas = null;
+ }
- clearTimeout( me._leaveTimer );
- me._leaveTimer = setTimeout( handler, 100 );
- return false;
+ // 释放内存。非常重要,否则释放不了image的内存。
+ this._img.src = BLANK;
+ this._img = this._blob = null;
},
- _dropHandler: function( e ) {
- var me = this,
- ruid = me.getRuid(),
- parentElem = me.elem.parent().get( 0 ),
- dataTransfer, data;
+ _resize: function( img, cvs, width, height ) {
+ var opts = this.options,
+ naturalWidth = img.width,
+ naturalHeight = img.height,
+ orientation = this.getOrientation(),
+ scale, w, h, x, y;
- // 只处理框内的。
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
+ // values that require 90 degree rotation
+ if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // 交换width, height的值。
+ width ^= height;
+ height ^= width;
+ width ^= height;
}
- e = e.originalEvent || e;
- dataTransfer = e.dataTransfer;
+ scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
+ height / naturalHeight );
- // 如果是页面内拖拽,还不能处理,不阻止事件。
- // 此处 ie11 下会报参数错误,
- try {
- data = dataTransfer.getData('text/html');
- } catch( err ) {
- }
+ // 不允许放大。
+ opts.allowMagnify || (scale = Math.min( 1, scale ));
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over' );
+ w = naturalWidth * scale;
+ h = naturalHeight * scale;
- if ( !dataTransfer || data ) {
- return;
+ if ( opts.crop ) {
+ cvs.width = width;
+ cvs.height = height;
+ } else {
+ cvs.width = w;
+ cvs.height = h;
}
- me._getTansferFiles( dataTransfer, function( results ) {
- me.trigger( 'drop', $.map( results, function( file ) {
- return new File( ruid, file );
- }) );
- });
+ x = (cvs.width - w) / 2;
+ y = (cvs.height - h) / 2;
- return false;
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+
+ this._renderImageToCanvas( cvs, img, x, y, w, h );
},
- // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
- _getTansferFiles: function( dataTransfer, callback ) {
- var results = [],
- promises = [],
- items, files, file, item, i, len, canAccessFolder;
+ _rotate2Orientaion: function( canvas, orientation ) {
+ var width = canvas.width,
+ height = canvas.height,
+ ctx = canvas.getContext('2d');
- items = dataTransfer.items;
- files = dataTransfer.files;
+ switch ( orientation ) {
+ case 5:
+ case 6:
+ case 7:
+ case 8:
+ canvas.width = height;
+ canvas.height = width;
+ break;
+ }
- canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+ switch ( orientation ) {
+ case 2: // horizontal flip
+ ctx.translate( width, 0 );
+ ctx.scale( -1, 1 );
+ break;
- for ( i = 0, len = files.length; i < len; i++ ) {
- file = files[ i ];
- item = items && items[ i ];
+ case 3: // 180 rotate left
+ ctx.translate( width, height );
+ ctx.rotate( Math.PI );
+ break;
- if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+ case 4: // vertical flip
+ ctx.translate( 0, height );
+ ctx.scale( 1, -1 );
+ break;
- promises.push( this._traverseDirectoryTree(
- item.webkitGetAsEntry(), results ) );
- } else {
- results.push( file );
- }
- }
+ case 5: // vertical flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.scale( 1, -1 );
+ break;
- Base.when.apply( Base, promises ).done(function() {
+ case 6: // 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( 0, -height );
+ break;
- if ( !results.length ) {
- return;
- }
+ case 7: // horizontal flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( width, -height );
+ ctx.scale( -1, 1 );
+ break;
- callback( results );
- });
+ case 8: // 90 rotate left
+ ctx.rotate( -0.5 * Math.PI );
+ ctx.translate( -width, 0 );
+ break;
+ }
},
- _traverseDirectoryTree: function( entry, results ) {
- var deferred = Base.Deferred(),
- me = this;
-
- if ( entry.isFile ) {
- entry.file(function( file ) {
- results.push( file );
- deferred.resolve();
- });
- } else if ( entry.isDirectory ) {
- entry.createReader().readEntries(function( entries ) {
- var len = entries.length,
- promises = [],
- arr = [], // 为了保证顺序。
- i;
+ // https://github.com/stomita/ios-imagefile-megapixel/
+ // blob/master/src/megapix-image.js
+ _renderImageToCanvas: (function() {
- for ( i = 0; i < len; i++ ) {
- promises.push( me._traverseDirectoryTree(
- entries[ i ], arr ) );
- }
+ // 如果不是ios, 不需要这么复杂!
+ if ( !Base.os.ios ) {
+ return function( canvas ) {
+ var args = Base.slice( arguments, 1 ),
+ ctx = canvas.getContext('2d');
- Base.when.apply( Base, promises ).then(function() {
- results.push.apply( results, arr );
- deferred.resolve();
- }, deferred.reject );
- });
+ ctx.drawImage.apply( ctx, args );
+ };
}
- return deferred.promise();
- },
+ /**
+ * Detecting vertical squash in loaded image.
+ * Fixes a bug which squash image vertically while drawing into
+ * canvas for some images.
+ */
+ function detectVerticalSquash( img, iw, ih ) {
+ var canvas = document.createElement('canvas'),
+ ctx = canvas.getContext('2d'),
+ sy = 0,
+ ey = ih,
+ py = ih,
+ data, alpha, ratio;
- destroy: function() {
- var elem = this.elem;
- // 还没 init 就调用 destroy
- if (!elem) {
- return;
- }
+ canvas.width = 1;
+ canvas.height = ih;
+ ctx.drawImage( img, 0, 0 );
+ data = ctx.getImageData( 0, 0, 1, ih ).data;
- elem.off( 'dragenter', this.dragEnterHandler );
- elem.off( 'dragover', this.dragOverHandler );
- elem.off( 'dragleave', this.dragLeaveHandler );
- elem.off( 'drop', this.dropHandler );
+ // search image edge pixel position in case
+ // it is squashed vertically.
+ while ( py > sy ) {
+ alpha = data[ (py - 1) * 4 + 3 ];
- if ( this.options.disableGlobalDnd ) {
- $( document ).off( 'dragover', this.dragOverHandler );
- $( document ).off( 'drop', this.dropHandler );
+ if ( alpha === 0 ) {
+ ey = py;
+ } else {
+ sy = py;
+ }
+
+ py = (ey + sy) >> 1;
+ }
+
+ ratio = (py / ih);
+ return (ratio === 0) ? 1 : ratio;
}
- }
- });
- });
-
- /**
- * @fileOverview FilePaste
- */
- define('runtime/html5/filepaste',[
- 'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
- return Html5Runtime.register( 'FilePaste', {
- init: function() {
- var opts = this.options,
- elem = this.elem = opts.container,
- accept = '.*',
- arr, i, len, item;
+ // fix ie7 bug
+ // http://stackoverflow.com/questions/11929099/
+ // html5-canvas-drawimage-ratio-bug-ios
+ if ( Base.os.ios >= 7 ) {
+ return function( canvas, img, x, y, w, h ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ vertSquashRatio = detectVerticalSquash( img, iw, ih );
- // accetp的mimeTypes中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
+ return canvas.getContext('2d').drawImage( img, 0, 0,
+ iw * vertSquashRatio, ih * vertSquashRatio,
+ x, y, w, h );
+ };
+ }
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].mimeTypes;
- item && arr.push( item );
- }
+ /**
+ * Detect subsampling in loaded image.
+ * In iOS, larger images than 2M pixels may be
+ * subsampled in rendering.
+ */
+ function detectSubsampling( img ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ canvas, ctx;
- if ( arr.length ) {
- accept = arr.join(',');
- accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
+ // subsampling may happen overmegapixel image
+ if ( iw * ih > 1024 * 1024 ) {
+ canvas = document.createElement('canvas');
+ canvas.width = canvas.height = 1;
+ ctx = canvas.getContext('2d');
+ ctx.drawImage( img, -iw + 1, 0 );
+
+ // subsampled image becomes half smaller in rendering size.
+ // check alpha channel value to confirm image is covering
+ // edge pixel or not. if alpha value is 0
+ // image is not covering, hence subsampled.
+ return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
+ } else {
+ return false;
}
}
- this.accept = accept = new RegExp( accept, 'i' );
- this.hander = Base.bindFn( this._pasteHander, this );
- elem.on( 'paste', this.hander );
- },
-
- _pasteHander: function( e ) {
- var allowed = [],
- ruid = this.getRuid(),
- items, item, blob, i, len;
- e = e.originalEvent || e;
- items = e.clipboardData.items;
- for ( i = 0, len = items.length; i < len; i++ ) {
- item = items[ i ];
+ return function( canvas, img, x, y, width, height ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ ctx = canvas.getContext('2d'),
+ subsampled = detectSubsampling( img ),
+ doSquash = this.type === 'image/jpeg',
+ d = 1024,
+ sy = 0,
+ dy = 0,
+ tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
- if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
- continue;
+ if ( subsampled ) {
+ iw /= 2;
+ ih /= 2;
}
- allowed.push( new File( ruid, blob ) );
- }
+ ctx.save();
+ tmpCanvas = document.createElement('canvas');
+ tmpCanvas.width = tmpCanvas.height = d;
- if ( allowed.length ) {
- // 不阻止非文件粘贴(文字粘贴)的事件冒泡
- e.preventDefault();
- e.stopPropagation();
- this.trigger( 'paste', allowed );
- }
- },
+ tmpCtx = tmpCanvas.getContext('2d');
+ vertSquashRatio = doSquash ?
+ detectVerticalSquash( img, iw, ih ) : 1;
- destroy: function() {
- this.elem.off( 'paste', this.hander );
- }
+ dw = Math.ceil( d * width / iw );
+ dh = Math.ceil( d * height / ih / vertSquashRatio );
+
+ while ( sy < ih ) {
+ sx = 0;
+ dx = 0;
+ while ( sx < iw ) {
+ tmpCtx.clearRect( 0, 0, d, d );
+ tmpCtx.drawImage( img, -sx, -sy );
+ ctx.drawImage( tmpCanvas, 0, 0, d, d,
+ x + dx, y + dy, dw, dh );
+ sx += d;
+ dx += dw;
+ }
+ sy += d;
+ dy += dh;
+ }
+ ctx.restore();
+ tmpCanvas = tmpCtx = null;
+ };
+ })()
});
});
/**
- * @fileOverview FilePicker
+ * @fileOverview Transport
+ * @todo 支持chunked传输,优势:
+ * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
+ * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
*/
- define('runtime/html5/filepicker',[
+ define('runtime/html5/transport',[
'base',
'runtime/html5/runtime'
], function( Base, Html5Runtime ) {
- var $ = Base.$;
+ var noop = Base.noop,
+ $ = Base.$;
- return Html5Runtime.register( 'FilePicker', {
+ return Html5Runtime.register( 'Transport', {
init: function() {
- var container = this.getRuntime().getContainer(),
- me = this,
- owner = me.owner,
- opts = me.options,
- label = this.label = $( document.createElement('label') ),
- input = this.input = $( document.createElement('input') ),
- arr, i, len, mouseHandler, changeHandler;
+ this._status = 0;
+ this._response = null;
+ },
- input.attr( 'type', 'file' );
- input.attr( 'capture', 'camera');
- input.attr( 'name', opts.name );
- input.addClass('webuploader-element-invisible');
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ formData, binary, fr;
- label.on( 'click', function(e) {
- input.trigger('click');
- e.stopPropagation();
- owner.trigger('dialogopen');
- });
+ if ( opts.sendAsBinary ) {
+ server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData )) : '';
- label.css({
- opacity: 0,
- width: '100%',
- height: '100%',
- display: 'block',
- cursor: 'pointer',
- background: '#ffffff'
- });
+ binary = blob.getSource();
+ } else {
+ formData = new FormData();
+ $.each( owner._formData, function( k, v ) {
+ formData.append( k, v );
+ });
- if ( opts.multiple ) {
- input.attr( 'multiple', 'multiple' );
+ formData.append( opts.fileVal, blob.getSource(),
+ opts.filename || owner._formData.name || '' );
}
- // @todo Firefox不支持单独指定后缀
- if ( opts.accept && opts.accept.length > 0 ) {
- arr = [];
+ if ( opts.withCredentials && 'withCredentials' in xhr ) {
+ xhr.open( opts.method, server, true );
+ xhr.withCredentials = true;
+ } else {
+ xhr.open( opts.method, server );
+ }
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- arr.push( opts.accept[ i ].mimeTypes );
+ this._setRequestHeader( xhr, opts.headers );
+
+ if ( binary ) {
+ // 强制设置成 content-type 为文件流。
+ xhr.overrideMimeType &&
+ xhr.overrideMimeType('application/octet-stream');
+
+ // android直接发送blob会导致服务端接收到的是空文件。
+ // bug详情。
+ // https://code.google.com/p/android/issues/detail?id=39882
+ // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
+ if ( Base.os.android ) {
+ fr = new FileReader();
+
+ fr.onload = function() {
+ xhr.send( this.result );
+ fr = fr.onload = null;
+ };
+
+ fr.readAsArrayBuffer( binary );
+ } else {
+ xhr.send( binary );
}
+ } else {
+ xhr.send( formData );
+ }
+ },
- input.attr( 'accept', arr.join(',') );
+ getResponse: function() {
+ return this._response;
+ },
+
+ getResponseAsJson: function() {
+ return this._parseJson( this._response );
+ },
+
+ getResponseHeaders: function() {
+ return this._headers;
+ },
+
+ getStatus: function() {
+ return this._status;
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ xhr.abort();
+
+ this._xhr = xhr = null;
}
+ },
- container.append( input );
- container.append( label );
+ destroy: function() {
+ this.abort();
+ },
- mouseHandler = function( e ) {
- owner.trigger( e.type );
+ _parseHeader: function(raw) {
+ var ret = {};
+
+ raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
+ ret[key.trim()] = value.trim();
+ });
+
+ return ret;
+ },
+
+ _initAjax: function() {
+ var me = this,
+ xhr = new XMLHttpRequest(),
+ opts = this.options;
+
+ if ( opts.withCredentials && !('withCredentials' in xhr) &&
+ typeof XDomainRequest !== 'undefined' ) {
+ xhr = new XDomainRequest();
+ }
+
+ xhr.upload.onprogress = function( e ) {
+ var percentage = 0;
+
+ if ( e.lengthComputable ) {
+ percentage = e.loaded / e.total;
+ }
+
+ return me.trigger( 'progress', percentage );
};
- changeHandler = function( e ) {
- var clone;
+ xhr.onreadystatechange = function() {
- // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
- if (e.target.files.length === 0){
- return false;
+ if ( xhr.readyState !== 4 ) {
+ return;
}
- // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
- me.files = e.target.files;
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ me._xhr = null;
+ me._status = xhr.status;
+ var separator = '|', // 分隔符
+ // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
+ status = separator + xhr.status +
+ separator + xhr.statusText;
- // reset input
- clone = this.cloneNode( true );
- clone.value = null;
- this.parentNode.replaceChild( clone, this );
+ if ( xhr.status >= 200 && xhr.status < 300 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger('load');
+ } else if ( xhr.status >= 500 && xhr.status < 600 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger( 'error', 'server' + status );
+ }
- input.off();
- input = $( clone ).on( 'change', changeHandler )
- .on( 'mouseenter mouseleave', mouseHandler );
- owner.trigger('change');
- }
- input.on( 'change', changeHandler);
- label.on( 'mouseenter mouseleave', mouseHandler );
+ return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
+ };
+
+ me._xhr = xhr;
+ return xhr;
+ },
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.setRequestHeader( key, val );
+ });
},
+ _parseJson: function( str ) {
+ var json;
- getFiles: function() {
- return this.files;
- },
+ try {
+ json = JSON.parse( str );
+ } catch ( ex ) {
+ json = {};
+ }
- destroy: function() {
- this.input.off();
- this.label.off();
+ return json;
}
});
});
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/util',[
- 'base'
- ], function( Base ) {
-
- var urlAPI = window.createObjectURL && window ||
- window.URL && URL.revokeObjectURL && URL ||
- window.webkitURL,
- createObjectURL = Base.noop,
- revokeObjectURL = createObjectURL;
-
- if ( urlAPI ) {
-
- // 更安全的方式调用,比如android里面就能把context改成其他的对象。
- createObjectURL = function() {
- return urlAPI.createObjectURL.apply( urlAPI, arguments );
- };
-
- revokeObjectURL = function() {
- return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
- };
- }
-
- return {
- createObjectURL: createObjectURL,
- revokeObjectURL: revokeObjectURL,
-
- dataURL2Blob: function( dataURI ) {
- var byteStr, intArray, ab, i, mimetype, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- ab = new ArrayBuffer( byteStr.length );
- intArray = new Uint8Array( ab );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
-
- return this.arrayBufferToBlob( ab, mimetype );
- },
-
- dataURL2ArrayBuffer: function( dataURI ) {
- var byteStr, intArray, i, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- intArray = new Uint8Array( byteStr.length );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- return intArray.buffer;
- },
-
- arrayBufferToBlob: function( buffer, type ) {
- var builder = window.BlobBuilder || window.WebKitBlobBuilder,
- bb;
-
- // android不支持直接new Blob, 只能借助blobbuilder.
- if ( builder ) {
- bb = new builder();
- bb.append( buffer );
- return bb.getBlob( type );
- }
-
- return new Blob([ buffer ], type ? { type: type } : {} );
- },
-
- // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
- // 你得到的结果是png.
- canvasToDataUrl: function( canvas, type, quality ) {
- return canvas.toDataURL( type, quality / 100 );
- },
-
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- parseMeta: function( blob, callback ) {
- callback( false, {});
- },
-
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- updateImageHead: function( data ) {
- return data;
- }
- };
- });
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/imagemeta',[
- 'runtime/html5/util'
- ], function( Util ) {
-
- var api;
-
- api = {
- parsers: {
- 0xffe1: []
- },
-
- maxMetaDataSize: 262144,
-
- parse: function( blob, cb ) {
- var me = this,
- fr = new FileReader();
-
- fr.onload = function() {
- cb( false, me._parse( this.result ) );
- fr = fr.onload = fr.onerror = null;
- };
-
- fr.onerror = function( e ) {
- cb( e.message );
- fr = fr.onload = fr.onerror = null;
- };
-
- blob = blob.slice( 0, me.maxMetaDataSize );
- fr.readAsArrayBuffer( blob.getSource() );
- },
-
- _parse: function( buffer, noParse ) {
- if ( buffer.byteLength < 6 ) {
- return;
- }
-
- var dataview = new DataView( buffer ),
- offset = 2,
- maxOffset = dataview.byteLength - 4,
- headLength = offset,
- ret = {},
- markerBytes, markerLength, parsers, i;
-
- if ( dataview.getUint16( 0 ) === 0xffd8 ) {
-
- while ( offset < maxOffset ) {
- markerBytes = dataview.getUint16( offset );
-
- if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
- markerBytes === 0xfffe ) {
-
- markerLength = dataview.getUint16( offset + 2 ) + 2;
-
- if ( offset + markerLength > dataview.byteLength ) {
- break;
- }
-
- parsers = api.parsers[ markerBytes ];
-
- if ( !noParse && parsers ) {
- for ( i = 0; i < parsers.length; i += 1 ) {
- parsers[ i ].call( api, dataview, offset,
- markerLength, ret );
- }
- }
-
- offset += markerLength;
- headLength = offset;
- } else {
- break;
- }
- }
-
- if ( headLength > 6 ) {
- if ( buffer.slice ) {
- ret.imageHead = buffer.slice( 2, headLength );
- } else {
- // Workaround for IE10, which does not yet
- // support ArrayBuffer.slice:
- ret.imageHead = new Uint8Array( buffer )
- .subarray( 2, headLength );
- }
- }
- }
-
- return ret;
- },
-
- updateImageHead: function( buffer, head ) {
- var data = this._parse( buffer, true ),
- buf1, buf2, bodyoffset;
-
-
- bodyoffset = 2;
- if ( data.imageHead ) {
- bodyoffset = 2 + data.imageHead.byteLength;
- }
-
- if ( buffer.slice ) {
- buf2 = buffer.slice( bodyoffset );
- } else {
- buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
- }
-
- buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
-
- buf1[ 0 ] = 0xFF;
- buf1[ 1 ] = 0xD8;
- buf1.set( new Uint8Array( head ), 2 );
- buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
-
- return buf1.buffer;
- }
- };
-
- Util.parseMeta = function() {
- return api.parse.apply( api, arguments );
- };
-
- Util.updateImageHead = function() {
- return api.updateImageHead.apply( api, arguments );
- };
-
- return api;
- });
- /**
- * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
- * 暂时项目中只用了orientation.
- *
- * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
- * @fileOverview EXIF解析
- */
-
- // Sample
- // ====================================
- // Make : Apple
- // Model : iPhone 4S
- // Orientation : 1
- // XResolution : 72 [72/1]
- // YResolution : 72 [72/1]
- // ResolutionUnit : 2
- // Software : QuickTime 7.7.1
- // DateTime : 2013:09:01 22:53:55
- // ExifIFDPointer : 190
- // ExposureTime : 0.058823529411764705 [1/17]
- // FNumber : 2.4 [12/5]
- // ExposureProgram : Normal program
- // ISOSpeedRatings : 800
- // ExifVersion : 0220
- // DateTimeOriginal : 2013:09:01 22:52:51
- // DateTimeDigitized : 2013:09:01 22:52:51
- // ComponentsConfiguration : YCbCr
- // ShutterSpeedValue : 4.058893515764426
- // ApertureValue : 2.5260688216892597 [4845/1918]
- // BrightnessValue : -0.3126686601998395
- // MeteringMode : Pattern
- // Flash : Flash did not fire, compulsory flash mode
- // FocalLength : 4.28 [107/25]
- // SubjectArea : [4 values]
- // FlashpixVersion : 0100
- // ColorSpace : 1
- // PixelXDimension : 2448
- // PixelYDimension : 3264
- // SensingMethod : One-chip color area sensor
- // ExposureMode : 0
- // WhiteBalance : Auto white balance
- // FocalLengthIn35mmFilm : 35
- // SceneCaptureType : Standard
- define('runtime/html5/imagemeta/exif',[
- 'base',
- 'runtime/html5/imagemeta'
- ], function( Base, ImageMeta ) {
-
- var EXIF = {};
-
- EXIF.ExifMap = function() {
- return this;
- };
-
- EXIF.ExifMap.prototype.map = {
- 'Orientation': 0x0112
- };
-
- EXIF.ExifMap.prototype.get = function( id ) {
- return this[ id ] || this[ this.map[ id ] ];
- };
-
- EXIF.exifTagTypes = {
- // byte, 8-bit unsigned int:
- 1: {
- getValue: function( dataView, dataOffset ) {
- return dataView.getUint8( dataOffset );
- },
- size: 1
- },
-
- // ascii, 8-bit byte:
- 2: {
- getValue: function( dataView, dataOffset ) {
- return String.fromCharCode( dataView.getUint8( dataOffset ) );
- },
- size: 1,
- ascii: true
- },
-
- // short, 16 bit int:
- 3: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint16( dataOffset, littleEndian );
- },
- size: 2
- },
-
- // long, 32 bit int:
- 4: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // rational = two long values,
- // first is numerator, second is denominator:
- 5: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian ) /
- dataView.getUint32( dataOffset + 4, littleEndian );
- },
- size: 8
- },
-
- // slong, 32 bit signed int:
- 9: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // srational, two slongs, first is numerator, second is denominator:
- 10: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian ) /
- dataView.getInt32( dataOffset + 4, littleEndian );
- },
- size: 8
- }
- };
-
- // undefined, 8-bit byte, value depending on field:
- EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
-
- EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
- littleEndian ) {
-
- var tagType = EXIF.exifTagTypes[ type ],
- tagSize, dataOffset, values, i, str, c;
-
- if ( !tagType ) {
- Base.log('Invalid Exif data: Invalid tag type.');
- return;
- }
-
- tagSize = tagType.size * length;
-
- // Determine if the value is contained in the dataOffset bytes,
- // or if the value at the dataOffset is a pointer to the actual data:
- dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
- littleEndian ) : (offset + 8);
-
- if ( dataOffset + tagSize > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid data offset.');
- return;
- }
-
- if ( length === 1 ) {
- return tagType.getValue( dataView, dataOffset, littleEndian );
- }
-
- values = [];
-
- for ( i = 0; i < length; i += 1 ) {
- values[ i ] = tagType.getValue( dataView,
- dataOffset + i * tagType.size, littleEndian );
- }
-
- if ( tagType.ascii ) {
- str = '';
-
- // Concatenate the chars:
- for ( i = 0; i < values.length; i += 1 ) {
- c = values[ i ];
-
- // Ignore the terminating NULL byte(s):
- if ( c === '\u0000' ) {
- break;
- }
- str += c;
- }
-
- return str;
- }
- return values;
- };
-
- EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
- data ) {
-
- var tag = dataView.getUint16( offset, littleEndian );
- data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
- dataView.getUint16( offset + 2, littleEndian ), // tag type
- dataView.getUint32( offset + 4, littleEndian ), // tag length
- littleEndian );
- };
-
- EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
- littleEndian, data ) {
-
- var tagsNumber, dirEndOffset, i;
-
- if ( dirOffset + 6 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory offset.');
- return;
- }
-
- tagsNumber = dataView.getUint16( dirOffset, littleEndian );
- dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
-
- if ( dirEndOffset + 4 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory size.');
- return;
- }
-
- for ( i = 0; i < tagsNumber; i += 1 ) {
- this.parseExifTag( dataView, tiffOffset,
- dirOffset + 2 + 12 * i, // tag offset
- littleEndian, data );
- }
-
- // Return the offset to the next directory:
- return dataView.getUint32( dirEndOffset, littleEndian );
- };
-
- // EXIF.getExifThumbnail = function(dataView, offset, length) {
- // var hexData,
- // i,
- // b;
- // if (!length || offset + length > dataView.byteLength) {
- // Base.log('Invalid Exif data: Invalid thumbnail data.');
- // return;
- // }
- // hexData = [];
- // for (i = 0; i < length; i += 1) {
- // b = dataView.getUint8(offset + i);
- // hexData.push((b < 16 ? '0' : '') + b.toString(16));
- // }
- // return 'data:image/jpeg,%' + hexData.join('%');
- // };
-
- EXIF.parseExifData = function( dataView, offset, length, data ) {
-
- var tiffOffset = offset + 10,
- littleEndian, dirOffset;
-
- // Check for the ASCII code for "Exif" (0x45786966):
- if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
- // No Exif data, might be XMP data instead
- return;
- }
- if ( tiffOffset + 8 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid segment size.');
- return;
- }
-
- // Check for the two null bytes:
- if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
- Base.log('Invalid Exif data: Missing byte alignment offset.');
- return;
- }
-
- // Check the byte alignment:
- switch ( dataView.getUint16( tiffOffset ) ) {
- case 0x4949:
- littleEndian = true;
- break;
-
- case 0x4D4D:
- littleEndian = false;
- break;
-
- default:
- Base.log('Invalid Exif data: Invalid byte alignment marker.');
- return;
- }
-
- // Check for the TIFF tag marker (0x002A):
- if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
- Base.log('Invalid Exif data: Missing TIFF marker.');
- return;
- }
-
- // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
- dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
- // Create the exif object to store the tags:
- data.exif = new EXIF.ExifMap();
- // Parse the tags of the main image directory and retrieve the
- // offset to the next directory, usually the thumbnail directory:
- dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
- tiffOffset + dirOffset, littleEndian, data );
-
- // 尝试读取缩略图
- // if ( dirOffset ) {
- // thumbnailData = {exif: {}};
- // dirOffset = EXIF.parseExifTags(
- // dataView,
- // tiffOffset,
- // tiffOffset + dirOffset,
- // littleEndian,
- // thumbnailData
- // );
-
- // // Check for JPEG Thumbnail offset:
- // if (thumbnailData.exif[0x0201]) {
- // data.exif.Thumbnail = EXIF.getExifThumbnail(
- // dataView,
- // tiffOffset + thumbnailData.exif[0x0201],
- // thumbnailData.exif[0x0202] // Thumbnail data length
- // );
- // }
- // }
- };
-
- ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
- return EXIF;
- });
- /**
- * @fileOverview Image
- */
- define('runtime/html5/image',[
- 'base',
- 'runtime/html5/runtime',
- 'runtime/html5/util'
- ], function( Base, Html5Runtime, Util ) {
-
- var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
-
- return Html5Runtime.register( 'Image', {
-
- // flag: 标记是否被修改过。
- modified: false,
-
- init: function() {
- var me = this,
- img = new Image();
-
- img.onload = function() {
-
- me._info = {
- type: me.type,
- width: this.width,
- height: this.height
- };
-
- //debugger;
-
- // 读取meta信息。
- if ( !me._metas && 'image/jpeg' === me.type ) {
- Util.parseMeta( me._blob, function( error, ret ) {
- me._metas = ret;
- me.owner.trigger('load');
- });
- } else {
- me.owner.trigger('load');
- }
- };
-
- img.onerror = function() {
- me.owner.trigger('error');
- };
-
- me._img = img;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- img = me._img;
-
- me._blob = blob;
- me.type = blob.type;
- img.src = Util.createObjectURL( blob.getSource() );
- me.owner.once( 'load', function() {
- Util.revokeObjectURL( img.src );
- });
- },
-
- resize: function( width, height ) {
- var canvas = this._canvas ||
- (this._canvas = document.createElement('canvas'));
-
- this._resize( this._img, canvas, width, height );
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'resize' );
- },
-
- crop: function( x, y, w, h, s ) {
- var cvs = this._canvas ||
- (this._canvas = document.createElement('canvas')),
- opts = this.options,
- img = this._img,
- iw = img.naturalWidth,
- ih = img.naturalHeight,
- orientation = this.getOrientation();
-
- s = s || 1;
-
- // todo 解决 orientation 的问题。
- // values that require 90 degree rotation
- // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // switch ( orientation ) {
- // case 6:
- // tmp = x;
- // x = y;
- // y = iw * s - tmp - w;
- // console.log(ih * s, tmp, w)
- // break;
- // }
-
- // (w ^= h, h ^= w, w ^= h);
- // }
-
- cvs.width = w;
- cvs.height = h;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
- this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
-
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'crop' );
- },
-
- getAsBlob: function( type ) {
- var blob = this._blob,
- opts = this.options,
- canvas;
-
- type = type || this.type;
-
- // blob需要重新生成。
- if ( this.modified || this.type !== type ) {
- canvas = this._canvas;
-
- if ( type === 'image/jpeg' ) {
-
- blob = Util.canvasToDataUrl( canvas, type, opts.quality );
-
- if ( opts.preserveHeaders && this._metas &&
- this._metas.imageHead ) {
-
- blob = Util.dataURL2ArrayBuffer( blob );
- blob = Util.updateImageHead( blob,
- this._metas.imageHead );
- blob = Util.arrayBufferToBlob( blob, type );
- return blob;
- }
- } else {
- blob = Util.canvasToDataUrl( canvas, type );
- }
-
- blob = Util.dataURL2Blob( blob );
- }
-
- return blob;
- },
-
- getAsDataUrl: function( type ) {
- var opts = this.options;
-
- type = type || this.type;
-
- if ( type === 'image/jpeg' ) {
- return Util.canvasToDataUrl( this._canvas, type, opts.quality );
- } else {
- return this._canvas.toDataURL( type );
- }
- },
-
- getOrientation: function() {
- return this._metas && this._metas.exif &&
- this._metas.exif.get('Orientation') || 1;
- },
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._metas = val;
- return this;
- }
-
- // getter
- return this._metas;
- },
-
- destroy: function() {
- var canvas = this._canvas;
- this._img.onload = null;
-
- if ( canvas ) {
- canvas.getContext('2d')
- .clearRect( 0, 0, canvas.width, canvas.height );
- canvas.width = canvas.height = 0;
- this._canvas = null;
- }
-
- // 释放内存。非常重要,否则释放不了image的内存。
- this._img.src = BLANK;
- this._img = this._blob = null;
- },
-
- _resize: function( img, cvs, width, height ) {
- var opts = this.options,
- naturalWidth = img.width,
- naturalHeight = img.height,
- orientation = this.getOrientation(),
- scale, w, h, x, y;
-
- // values that require 90 degree rotation
- if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // 交换width, height的值。
- width ^= height;
- height ^= width;
- width ^= height;
- }
-
- scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
- height / naturalHeight );
-
- // 不允许放大。
- opts.allowMagnify || (scale = Math.min( 1, scale ));
-
- w = naturalWidth * scale;
- h = naturalHeight * scale;
-
- if ( opts.crop ) {
- cvs.width = width;
- cvs.height = height;
- } else {
- cvs.width = w;
- cvs.height = h;
- }
-
- x = (cvs.width - w) / 2;
- y = (cvs.height - h) / 2;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
-
- this._renderImageToCanvas( cvs, img, x, y, w, h );
- },
-
- _rotate2Orientaion: function( canvas, orientation ) {
- var width = canvas.width,
- height = canvas.height,
- ctx = canvas.getContext('2d');
-
- switch ( orientation ) {
- case 5:
- case 6:
- case 7:
- case 8:
- canvas.width = height;
- canvas.height = width;
- break;
- }
-
- switch ( orientation ) {
- case 2: // horizontal flip
- ctx.translate( width, 0 );
- ctx.scale( -1, 1 );
- break;
-
- case 3: // 180 rotate left
- ctx.translate( width, height );
- ctx.rotate( Math.PI );
- break;
-
- case 4: // vertical flip
- ctx.translate( 0, height );
- ctx.scale( 1, -1 );
- break;
-
- case 5: // vertical flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.scale( 1, -1 );
- break;
-
- case 6: // 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( 0, -height );
- break;
-
- case 7: // horizontal flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( width, -height );
- ctx.scale( -1, 1 );
- break;
-
- case 8: // 90 rotate left
- ctx.rotate( -0.5 * Math.PI );
- ctx.translate( -width, 0 );
- break;
- }
- },
-
- // https://github.com/stomita/ios-imagefile-megapixel/
- // blob/master/src/megapix-image.js
- _renderImageToCanvas: (function() {
-
- // 如果不是ios, 不需要这么复杂!
- if ( !Base.os.ios ) {
- return function( canvas ) {
- var args = Base.slice( arguments, 1 ),
- ctx = canvas.getContext('2d');
-
- ctx.drawImage.apply( ctx, args );
- };
- }
-
- /**
- * Detecting vertical squash in loaded image.
- * Fixes a bug which squash image vertically while drawing into
- * canvas for some images.
- */
- function detectVerticalSquash( img, iw, ih ) {
- var canvas = document.createElement('canvas'),
- ctx = canvas.getContext('2d'),
- sy = 0,
- ey = ih,
- py = ih,
- data, alpha, ratio;
-
-
- canvas.width = 1;
- canvas.height = ih;
- ctx.drawImage( img, 0, 0 );
- data = ctx.getImageData( 0, 0, 1, ih ).data;
-
- // search image edge pixel position in case
- // it is squashed vertically.
- while ( py > sy ) {
- alpha = data[ (py - 1) * 4 + 3 ];
-
- if ( alpha === 0 ) {
- ey = py;
- } else {
- sy = py;
- }
-
- py = (ey + sy) >> 1;
- }
-
- ratio = (py / ih);
- return (ratio === 0) ? 1 : ratio;
- }
-
- // fix ie7 bug
- // http://stackoverflow.com/questions/11929099/
- // html5-canvas-drawimage-ratio-bug-ios
- if ( Base.os.ios >= 7 ) {
- return function( canvas, img, x, y, w, h ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- vertSquashRatio = detectVerticalSquash( img, iw, ih );
-
- return canvas.getContext('2d').drawImage( img, 0, 0,
- iw * vertSquashRatio, ih * vertSquashRatio,
- x, y, w, h );
- };
- }
-
- /**
- * Detect subsampling in loaded image.
- * In iOS, larger images than 2M pixels may be
- * subsampled in rendering.
- */
- function detectSubsampling( img ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- canvas, ctx;
-
- // subsampling may happen overmegapixel image
- if ( iw * ih > 1024 * 1024 ) {
- canvas = document.createElement('canvas');
- canvas.width = canvas.height = 1;
- ctx = canvas.getContext('2d');
- ctx.drawImage( img, -iw + 1, 0 );
-
- // subsampled image becomes half smaller in rendering size.
- // check alpha channel value to confirm image is covering
- // edge pixel or not. if alpha value is 0
- // image is not covering, hence subsampled.
- return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
- } else {
- return false;
- }
- }
-
-
- return function( canvas, img, x, y, width, height ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- ctx = canvas.getContext('2d'),
- subsampled = detectSubsampling( img ),
- doSquash = this.type === 'image/jpeg',
- d = 1024,
- sy = 0,
- dy = 0,
- tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
-
- if ( subsampled ) {
- iw /= 2;
- ih /= 2;
- }
-
- ctx.save();
- tmpCanvas = document.createElement('canvas');
- tmpCanvas.width = tmpCanvas.height = d;
-
- tmpCtx = tmpCanvas.getContext('2d');
- vertSquashRatio = doSquash ?
- detectVerticalSquash( img, iw, ih ) : 1;
-
- dw = Math.ceil( d * width / iw );
- dh = Math.ceil( d * height / ih / vertSquashRatio );
-
- while ( sy < ih ) {
- sx = 0;
- dx = 0;
- while ( sx < iw ) {
- tmpCtx.clearRect( 0, 0, d, d );
- tmpCtx.drawImage( img, -sx, -sy );
- ctx.drawImage( tmpCanvas, 0, 0, d, d,
- x + dx, y + dy, dw, dh );
- sx += d;
- dx += dw;
- }
- sy += d;
- dy += dh;
- }
- ctx.restore();
- tmpCanvas = tmpCtx = null;
- };
- })()
- });
- });
-
- /**
- * @fileOverview Transport
- * @todo 支持chunked传输,优势:
- * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
- * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
- */
- define('runtime/html5/transport',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
-
- var noop = Base.noop,
- $ = Base.$;
-
- return Html5Runtime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- formData, binary, fr;
-
- if ( opts.sendAsBinary ) {
- server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData )) : '';
-
- binary = blob.getSource();
- } else {
- formData = new FormData();
- $.each( owner._formData, function( k, v ) {
- formData.append( k, v );
- });
-
- formData.append( opts.fileVal, blob.getSource(),
- opts.filename || owner._formData.name || '' );
- }
-
- if ( opts.withCredentials && 'withCredentials' in xhr ) {
- xhr.open( opts.method, server, true );
- xhr.withCredentials = true;
- } else {
- xhr.open( opts.method, server );
- }
-
- this._setRequestHeader( xhr, opts.headers );
-
- if ( binary ) {
- // 强制设置成 content-type 为文件流。
- xhr.overrideMimeType &&
- xhr.overrideMimeType('application/octet-stream');
-
- // android直接发送blob会导致服务端接收到的是空文件。
- // bug详情。
- // https://code.google.com/p/android/issues/detail?id=39882
- // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
- if ( Base.os.android ) {
- fr = new FileReader();
-
- fr.onload = function() {
- xhr.send( this.result );
- fr = fr.onload = null;
- };
-
- fr.readAsArrayBuffer( binary );
- } else {
- xhr.send( binary );
- }
- } else {
- xhr.send( formData );
- }
- },
-
- getResponse: function() {
- return this._response;
- },
-
- getResponseAsJson: function() {
- return this._parseJson( this._response );
- },
-
- getResponseHeaders: function() {
- return this._headers;
- },
-
- getStatus: function() {
- return this._status;
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- xhr.abort();
-
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _parseHeader: function(raw) {
- var ret = {};
-
- raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
- ret[key.trim()] = value.trim();
- });
-
- return ret;
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new XMLHttpRequest(),
- opts = this.options;
-
- if ( opts.withCredentials && !('withCredentials' in xhr) &&
- typeof XDomainRequest !== 'undefined' ) {
- xhr = new XDomainRequest();
- }
-
- xhr.upload.onprogress = function( e ) {
- var percentage = 0;
-
- if ( e.lengthComputable ) {
- percentage = e.loaded / e.total;
- }
-
- return me.trigger( 'progress', percentage );
- };
-
- xhr.onreadystatechange = function() {
-
- if ( xhr.readyState !== 4 ) {
- return;
- }
-
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- me._xhr = null;
- me._status = xhr.status;
-
- var separator = '|', // 分隔符
- // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
- status = separator + xhr.status +
- separator + xhr.statusText;
-
- if ( xhr.status >= 200 && xhr.status < 300 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger('load');
- } else if ( xhr.status >= 500 && xhr.status < 600 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger( 'error', 'server' + status );
- }
-
-
- return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
- };
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.setRequestHeader( key, val );
- });
- },
-
- _parseJson: function( str ) {
- var json;
-
- try {
- json = JSON.parse( str );
- } catch ( ex ) {
- json = {};
- }
-
- return json;
- }
- });
- });
-
- /**
- * @fileOverview 只有html5实现的文件版本。
- */
- define('preset/html5only',[
- 'base',
-
- // widgets
- 'widgets/filednd',
- 'widgets/filepaste',
- 'widgets/filepicker',
- 'widgets/image',
- 'widgets/queue',
- 'widgets/runtime',
- 'widgets/upload',
- 'widgets/validator',
-
- // runtimes
- // html5
- 'runtime/html5/blob',
- 'runtime/html5/dnd',
- 'runtime/html5/filepaste',
- 'runtime/html5/filepicker',
- 'runtime/html5/imagemeta/exif',
- 'runtime/html5/image',
- 'runtime/html5/transport'
- ], function( Base ) {
- return Base;
+ /**
+ * @fileOverview 只有html5实现的文件版本。
+ */
+ define('preset/html5only',[
+ 'base',
+
+ // widgets
+ 'widgets/filednd',
+ 'widgets/filepaste',
+ 'widgets/filepicker',
+ 'widgets/image',
+ 'widgets/queue',
+ 'widgets/runtime',
+ 'widgets/upload',
+ 'widgets/validator',
+
+ // runtimes
+ // html5
+ 'runtime/html5/blob',
+ 'runtime/html5/dnd',
+ 'runtime/html5/filepaste',
+ 'runtime/html5/filepicker',
+ 'runtime/html5/imagemeta/exif',
+ 'runtime/html5/image',
+ 'runtime/html5/transport'
+ ], function( Base ) {
+ return Base;
});
define('webuploader',[
'preset/html5only'
], function( preset ) {
return preset;
- });
- return require('webuploader');
-});
+ });
+ return require('webuploader');
+});
diff --git a/dist/webuploader.html5only.min.js b/dist/webuploader.html5only.min.js
index 3a114621f..4a9b59d12 100644
--- a/dist/webuploader.html5only.min.js
+++ b/dist/webuploader.html5only.min.js
@@ -1,2 +1,2 @@
/* WebUploader 0.1.8-alpha */!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.require,c=a.__dollar||a.jQuery||a.Zepto||b("jquery")||b("zepto");if(!c)throw new Error("jQuery or Zepto not found!");return c}),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.8-alpha",$: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;++e1?(d.isPlainObject(b)&&d.isPlainObject(c[a])?d.extend(c[a],b):c[a]=b,void 0):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?("name"===a&&(g.name=c.name),void 0):(g[a.replace(/[A-Z]/g,"-$&").toLowerCase()]=a,void 0)})):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||c.lastModified&&new Date(c.lastModified).toLocaleString()||(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",style:"webuploader-pick"},b.inherits(c,{constructor:e,init:function(){var c=this,e=c.options,g=e.button,h=e.style;h&&g.addClass("webuploader-pick"),c.on("all",function(a){var b;switch(a){case"mouseenter":h&&g.addClass("webuploader-pick-hover");break;case"mouseleave":h&&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[0]&&b[0].offsetWidth||b.outerWidth()||b.width(),d=b[0]&&b[0].offsetHeight||b.outerHeight()||b.height(),e=b.offset();c&&d&&a.css({bottom:"auto",right:"auto",width:c+"px",height:d+"px"}).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.on("dialogopen",function(){e.owner.trigger("dialogOpen",j.button)}),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()}),d(i,a.source.size,function(){a._info&&i.info(a._info),a._meta&&i.meta(a._meta),i.loadFromBlob(a.source)}),void 0):(b(!0),void 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=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.sizeb;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],this._delFile(a),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)}))},_delFile:function(a){for(var b=this._queue.length-1;b>=0;b--)if(this._queue[b]==a){this._queue.splice(b,1);break}},_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):(b.owner.trigger("error","Q_TYPE_DENIED",a),void 0):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)}),a.length&&(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),b||f.request("start-upload"),void 0;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()},getResponseHeaders:function(){return this.exec("getResponseHeaders")},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,chunkRetryDelay:1e3,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?(b=b.id?b:c.request("get-file",b),b.getStatus()===h.INTERRUPT?(b.setStatus(h.QUEUED),f.each(c.pool,function(a,c){c.file===b&&(c.transport&&c.transport.send(),b.setStatus(h.PROGRESS))})):b.getStatus()!==h.PROGRESS&&b.setStatus(h.QUEUED)):f.each(c.request("get-files",[h.INITED]),function(){this.setStatus(h.QUEUED)}),c.runing)return c.owner.trigger("startUpload",b),a.nextTick(c.__tick);c.runing=!0;var d=[];b||f.each(c.pool,function(a,b){var e=b.file;if(e.getStatus()===h.INTERRUPT){if(c._trigged=!1,d.push(e),b.waiting)return;b.transport?b.transport.send():c._doSend(b)}}),f.each(d,function(){this.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,e){e.file===b&&(e.transport&&e.transport.abort(),c&&(d._putback(e),d._popBlock(e)))}),d.owner.trigger("stopUpload",b),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):(d.pool.length1&&~"http,abort,server".indexOf(a.replace(/-.*/,""))&&b.retried1&&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))},destroy:function(){clearTimeout(this.retryTimer)}})}),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 this.trigger("beforeFileQueuedCheckfileNumLimit",a,c)?(c>=d&&e&&(e=!1,this.trigger("error","Q_EXCEED_NUM_LIMIT",d,a),setTimeout(function(){e=!0},1)),c>=d?!1:!0):!1}),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("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 g.dndOver=!1,g.elem.removeClass(e+"over"),b&&!f?(g._getTansferFiles(b,function(a){g.trigger("drop",d.map(a,function(a){return new c(h,a)}))}),!1):void 0},_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,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("capture","camera"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.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;ei&&(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;g6&&(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 a.log("Invalid Exif data: Invalid tag type."),void 0;if(i=o.size*g,j=i>4?d+b.getUint32(e+8,h):e+8,j+i>b.byteLength)return a.log("Invalid Exif data: Invalid data offset."),void 0;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;lb.byteLength)return a.log("Invalid Exif data: Invalid directory offset."),void 0;if(g=b.getUint16(d,e),h=d+2+12*g,h+4>b.byteLength)return a.log("Invalid Exif data: Invalid directory size."),void 0;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 a.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==b.getUint16(d+8))return a.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(b.getUint16(i)){case 18761:g=!0;break;case 19789:g=!1;break;default:return a.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==b.getUint16(i+2,g))return a.log("Invalid Exif data: Missing TIFF marker."),void 0;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/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._metas=a,this):this._metas},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+=g.attachInfoToQuery!==!1?(/\?/.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)},getResponseHeaders:function(){return this._headers},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()},_parseHeader:function(a){var b={};return a&&a.replace(/^([^\:]+):(.*)$/gm,function(a,c,d){b[c.trim()]=d.trim()}),b},_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(){if(4===b.readyState){b.upload.onprogress=c,b.onreadystatechange=c,a._xhr=null,a._status=b.status;var d="|",e=d+b.status+d+b.statusText;return b.status>=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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("preset/html5only",["base","widgets/filednd","widgets/filepaste","widgets/filepicker","widgets/image","widgets/queue","widgets/runtime","widgets/upload","widgets/validator","runtime/html5/blob","runtime/html5/dnd","runtime/html5/filepaste","runtime/html5/filepicker","runtime/html5/imagemeta/exif","runtime/html5/image","runtime/html5/transport"],function(a){return a}),b("webuploader",["preset/html5only"],function(a){return a}),c("webuploader")});
\ No newline at end of file
+},j.chunkRetryDelay||1e3)):(d||"server"!==a||(a=c(a)),k.setStatus(h.ERROR,a),i.trigger("uploadError",k,a,e,f),i.trigger("uploadComplete",k))}),l.on("load",function(){var a;return(a=c())?(l.trigger("error",a,!0),void 0):(1===k.remaning?g._finishFile(k,e):l.destroy(),void 0)}),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))},destroy:function(){clearTimeout(this.retryTimer)}})}),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 this.trigger("beforeFileQueuedCheckfileNumLimit",a,c)?(c>=d&&e&&(e=!1,this.trigger("error","Q_EXCEED_NUM_LIMIT",d,a),setTimeout(function(){e=!0},1)),c>=d?!1:!0):!1}),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("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 g.dndOver=!1,g.elem.removeClass(e+"over"),b&&!f?(g._getTansferFiles(b,function(a){g.trigger("drop",d.map(a,function(a){return new c(h,a)}))}),!1):void 0},_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,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.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;ei&&(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;g6&&(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 a.log("Invalid Exif data: Invalid tag type."),void 0;if(i=o.size*g,j=i>4?d+b.getUint32(e+8,h):e+8,j+i>b.byteLength)return a.log("Invalid Exif data: Invalid data offset."),void 0;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;lb.byteLength)return a.log("Invalid Exif data: Invalid directory offset."),void 0;if(g=b.getUint16(d,e),h=d+2+12*g,h+4>b.byteLength)return a.log("Invalid Exif data: Invalid directory size."),void 0;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 a.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==b.getUint16(d+8))return a.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(b.getUint16(i)){case 18761:g=!0;break;case 19789:g=!1;break;default:return a.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==b.getUint16(i+2,g))return a.log("Invalid Exif data: Missing TIFF marker."),void 0;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/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._metas=a,this):this._metas},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+=g.attachInfoToQuery!==!1?(/\?/.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)},getResponseHeaders:function(){return this._headers},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()},_parseHeader:function(a){var b={};return a&&a.replace(/^([^\:]+):(.*)$/gm,function(a,c,d){b[c.trim()]=d.trim()}),b},_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(){if(4===b.readyState){b.upload.onprogress=c,b.onreadystatechange=c,a._xhr=null,a._status=b.status;var d="|",e=d+b.status+d+b.statusText;return b.status>=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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("preset/html5only",["base","widgets/filednd","widgets/filepaste","widgets/filepicker","widgets/image","widgets/queue","widgets/runtime","widgets/upload","widgets/validator","runtime/html5/blob","runtime/html5/dnd","runtime/html5/filepaste","runtime/html5/filepicker","runtime/html5/imagemeta/exif","runtime/html5/image","runtime/html5/transport"],function(a){return a}),b("webuploader",["preset/html5only"],function(a){return a}),c("webuploader")});
\ No newline at end of file
diff --git a/dist/webuploader.js b/dist/webuploader.js
index 9a81e1a92..50d86e88b 100644
--- a/dist/webuploader.js
+++ b/dist/webuploader.js
@@ -1,8243 +1,8243 @@
-/*! WebUploader 0.1.8-alpha */
+/*! WebUploader 0.1.8-alpha */
-/**
- * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
- *
- * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
- */
-(function( root, factory ) {
- var modules = {},
-
- // 内部require, 简单不完全实现。
- // https://github.com/amdjs/amdjs-api/wiki/require
- _require = function( deps, callback ) {
- var args, len, i;
-
- // 如果deps不是数组,则直接返回指定module
- if ( typeof deps === 'string' ) {
- return getModule( deps );
- } else {
- args = [];
- for( len = deps.length, i = 0; i < len; i++ ) {
- args.push( getModule( deps[ i ] ) );
- }
-
- return callback.apply( null, args );
- }
- },
-
- // 内部define,暂时不支持不指定id.
- _define = function( id, deps, factory ) {
- if ( arguments.length === 2 ) {
- factory = deps;
- deps = null;
- }
-
- _require( deps || [], function() {
- setModule( id, factory, arguments );
- });
- },
-
- // 设置module, 兼容CommonJs写法。
- setModule = function( id, factory, args ) {
- var module = {
- exports: factory
- },
- returned;
-
- if ( typeof factory === 'function' ) {
- args.length || (args = [ _require, module.exports, module ]);
- returned = factory.apply( null, args );
- returned !== undefined && (module.exports = returned);
- }
-
- modules[ id ] = module.exports;
- },
-
- // 根据id获取module
- getModule = function( id ) {
- var module = modules[ id ] || root[ id ];
-
- if ( !module ) {
- throw new Error( '`' + id + '` is undefined' );
- }
-
- return module;
- },
-
- // 将所有modules,将路径ids装换成对象。
- exportsTo = function( obj ) {
- var key, host, parts, part, last, ucFirst;
-
- // make the first character upper case.
- ucFirst = function( str ) {
- return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
- };
-
- for ( key in modules ) {
- host = obj;
-
- if ( !modules.hasOwnProperty( key ) ) {
- continue;
- }
-
- parts = key.split('/');
- last = ucFirst( parts.pop() );
-
- while( (part = ucFirst( parts.shift() )) ) {
- host[ part ] = host[ part ] || {};
- host = host[ part ];
- }
-
- host[ last ] = modules[ key ];
- }
-
- return obj;
- },
-
- makeExport = function( dollar ) {
- root.__dollar = dollar;
-
- // exports every module.
- return exportsTo( factory( root, _define, _require ) );
- },
-
- origin;
-
- if ( typeof module === 'object' && typeof module.exports === 'object' ) {
-
- // For CommonJS and CommonJS-like environments where a proper window is present,
- module.exports = makeExport();
- } else if ( typeof define === 'function' && define.amd ) {
-
- // Allow using this built library as an AMD module
- // in another project. That other project will only
- // see this AMD call, not the internal modules in
- // the closure below.
- define([ 'jquery' ], makeExport );
- } else {
-
- // Browser globals case. Just assign the
- // result to a property on the global.
- origin = root.WebUploader;
- root.WebUploader = makeExport();
- root.WebUploader.noConflict = function() {
- root.WebUploader = origin;
- };
- }
-})( window, function( window, define, require ) {
-
+/**
+ * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
+ *
+ * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
+ */
+(function( root, factory ) {
+ var modules = {},
+
+ // 内部require, 简单不完全实现。
+ // https://github.com/amdjs/amdjs-api/wiki/require
+ _require = function( deps, callback ) {
+ var args, len, i;
+
+ // 如果deps不是数组,则直接返回指定module
+ if ( typeof deps === 'string' ) {
+ return getModule( deps );
+ } else {
+ args = [];
+ for( len = deps.length, i = 0; i < len; i++ ) {
+ args.push( getModule( deps[ i ] ) );
+ }
+
+ return callback.apply( null, args );
+ }
+ },
+
+ // 内部define,暂时不支持不指定id.
+ _define = function( id, deps, factory ) {
+ if ( arguments.length === 2 ) {
+ factory = deps;
+ deps = null;
+ }
+
+ _require( deps || [], function() {
+ setModule( id, factory, arguments );
+ });
+ },
+
+ // 设置module, 兼容CommonJs写法。
+ setModule = function( id, factory, args ) {
+ var module = {
+ exports: factory
+ },
+ returned;
+
+ if ( typeof factory === 'function' ) {
+ args.length || (args = [ _require, module.exports, module ]);
+ returned = factory.apply( null, args );
+ returned !== undefined && (module.exports = returned);
+ }
+
+ modules[ id ] = module.exports;
+ },
+
+ // 根据id获取module
+ getModule = function( id ) {
+ var module = modules[ id ] || root[ id ];
+
+ if ( !module ) {
+ throw new Error( '`' + id + '` is undefined' );
+ }
+
+ return module;
+ },
+
+ // 将所有modules,将路径ids装换成对象。
+ exportsTo = function( obj ) {
+ var key, host, parts, part, last, ucFirst;
+
+ // make the first character upper case.
+ ucFirst = function( str ) {
+ return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
+ };
+
+ for ( key in modules ) {
+ host = obj;
+
+ if ( !modules.hasOwnProperty( key ) ) {
+ continue;
+ }
+
+ parts = key.split('/');
+ last = ucFirst( parts.pop() );
+
+ while( (part = ucFirst( parts.shift() )) ) {
+ host[ part ] = host[ part ] || {};
+ host = host[ part ];
+ }
+
+ host[ last ] = modules[ key ];
+ }
+
+ return obj;
+ },
+
+ makeExport = function( dollar ) {
+ root.__dollar = dollar;
+
+ // exports every module.
+ return exportsTo( factory( root, _define, _require ) );
+ },
+
+ origin;
+
+ if ( typeof module === 'object' && typeof module.exports === 'object' ) {
+
+ // For CommonJS and CommonJS-like environments where a proper window is present,
+ module.exports = makeExport();
+ } else if ( typeof define === 'function' && define.amd ) {
+
+ // Allow using this built library as an AMD module
+ // in another project. That other project will only
+ // see this AMD call, not the internal modules in
+ // the closure below.
+ define([ 'jquery' ], makeExport );
+ } else {
+
+ // Browser globals case. Just assign the
+ // result to a property on the global.
+ origin = root.WebUploader;
+ root.WebUploader = makeExport();
+ root.WebUploader.noConflict = function() {
+ root.WebUploader = origin;
+ };
+ }
+})( window, function( window, define, require ) {
+
- /**
- * @fileOverview jQuery or Zepto
- * @require "jquery"
- * @require "zepto"
- */
- define('dollar-third',[],function() {
- var req = window.require;
- var $ = window.__dollar ||
- window.jQuery ||
- window.Zepto ||
- req('jquery') ||
- req('zepto');
-
- if ( !$ ) {
- throw new Error('jQuery or Zepto not found!');
- }
+ /**
+ * @fileOverview jQuery or Zepto
+ * @require "jquery"
+ * @require "zepto"
+ */
+ define('dollar-third',[],function() {
+ var req = window.require;
+ var $ = window.__dollar ||
+ window.jQuery ||
+ window.Zepto ||
+ req('jquery') ||
+ req('zepto');
+
+ if ( !$ ) {
+ throw new Error('jQuery or Zepto not found!');
+ }
+
+ return $;
+ });
- return $;
+ /**
+ * @fileOverview Dom 操作相关
+ */
+ define('dollar',[
+ 'dollar-third'
+ ], function( _ ) {
+ return _;
});
-
- /**
- * @fileOverview Dom 操作相关
- */
- define('dollar',[
- 'dollar-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 使用jQuery的Promise
+ */
+ define('promise-third',[
+ 'dollar'
+ ], function( $ ) {
+ return {
+ Deferred: $.Deferred,
+ when: $.when,
+
+ isPromise: function( anything ) {
+ return anything && typeof anything.then === 'function';
+ }
+ };
});
- /**
- * @fileOverview 使用jQuery的Promise
- */
- define('promise-third',[
- 'dollar'
- ], function( $ ) {
- return {
- Deferred: $.Deferred,
- when: $.when,
-
- isPromise: function( anything ) {
- return anything && typeof anything.then === 'function';
- }
- };
+ /**
+ * @fileOverview Promise/A+
+ */
+ define('promise',[
+ 'promise-third'
+ ], function( _ ) {
+ return _;
});
- /**
- * @fileOverview Promise/A+
- */
- define('promise',[
- 'promise-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 基础类方法。
+ */
+
+ /**
+ * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
+ *
+ * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
+ * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
+ *
+ * * module `base`:WebUploader.Base
+ * * module `file`: WebUploader.File
+ * * module `lib/dnd`: WebUploader.Lib.Dnd
+ * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
+ *
+ *
+ * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
+ * @module WebUploader
+ * @title WebUploader API文档
+ */
+ define('base',[
+ 'dollar',
+ 'promise'
+ ], function( $, promise ) {
+
+ var noop = function() {},
+ call = Function.call;
+
+ // http://jsperf.com/uncurrythis
+ // 反科里化
+ function uncurryThis( fn ) {
+ return function() {
+ return call.apply( fn, arguments );
+ };
+ }
+
+ function bindFn( fn, context ) {
+ return function() {
+ return fn.apply( context, arguments );
+ };
+ }
+
+ function createObject( proto ) {
+ var f;
+
+ if ( Object.create ) {
+ return Object.create( proto );
+ } else {
+ f = function() {};
+ f.prototype = proto;
+ return new f();
+ }
+ }
+
+
+ /**
+ * 基础类,提供一些简单常用的方法。
+ * @class Base
+ */
+ return {
+
+ /**
+ * @property {String} version 当前版本号。
+ */
+ version: '0.1.8-alpha',
+
+ /**
+ * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
+ */
+ $: $,
+
+ Deferred: promise.Deferred,
+
+ isPromise: promise.isPromise,
+
+ when: promise.when,
+
+ /**
+ * @description 简单的浏览器检查结果。
+ *
+ * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
+ * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
+ * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
+ * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
+ * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
+ * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
+ *
+ * @property {Object} [browser]
+ */
+ browser: (function( ua ) {
+ var ret = {},
+ webkit = ua.match( /WebKit\/([\d.]+)/ ),
+ chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
+ ua.match( /CriOS\/([\d.]+)/ ),
+
+ ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
+ ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
+ firefox = ua.match( /Firefox\/([\d.]+)/ ),
+ safari = ua.match( /Safari\/([\d.]+)/ ),
+ opera = ua.match( /OPR\/([\d.]+)/ );
+
+ webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
+ chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
+ ie && (ret.ie = parseFloat( ie[ 1 ] ));
+ firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
+ safari && (ret.safari = parseFloat( safari[ 1 ] ));
+ opera && (ret.opera = parseFloat( opera[ 1 ] ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * @description 操作系统检查结果。
+ *
+ * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
+ * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
+ * @property {Object} [os]
+ */
+ os: (function( ua ) {
+ var ret = {},
+
+ // osx = !!ua.match( /\(Macintosh\; Intel / ),
+ android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
+ ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
+
+ // osx && (ret.osx = true);
+ android && (ret.android = parseFloat( android[ 1 ] ));
+ ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * 实现类与类之间的继承。
+ * @method inherits
+ * @grammar Base.inherits( super ) => child
+ * @grammar Base.inherits( super, protos ) => child
+ * @grammar Base.inherits( super, protos, statics ) => child
+ * @param {Class} super 父类
+ * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
+ * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
+ * @param {Object} [statics] 静态属性或方法。
+ * @return {Class} 返回子类。
+ * @example
+ * function Person() {
+ * console.log( 'Super' );
+ * }
+ * Person.prototype.hello = function() {
+ * console.log( 'hello' );
+ * };
+ *
+ * var Manager = Base.inherits( Person, {
+ * world: function() {
+ * console.log( 'World' );
+ * }
+ * });
+ *
+ * // 因为没有指定构造器,父类的构造器将会执行。
+ * var instance = new Manager(); // => Super
+ *
+ * // 继承子父类的方法
+ * instance.hello(); // => hello
+ * instance.world(); // => World
+ *
+ * // 子类的__super__属性指向父类
+ * console.log( Manager.__super__ === Person ); // => true
+ */
+ inherits: function( Super, protos, staticProtos ) {
+ var child;
+
+ if ( typeof protos === 'function' ) {
+ child = protos;
+ protos = null;
+ } else if ( protos && protos.hasOwnProperty('constructor') ) {
+ child = protos.constructor;
+ } else {
+ child = function() {
+ return Super.apply( this, arguments );
+ };
+ }
+
+ // 复制静态方法
+ $.extend( true, child, Super, staticProtos || {} );
+
+ /* jshint camelcase: false */
+
+ // 让子类的__super__属性指向父类。
+ child.__super__ = Super.prototype;
+
+ // 构建原型,添加原型方法或属性。
+ // 暂时用Object.create实现。
+ child.prototype = createObject( Super.prototype );
+ protos && $.extend( true, child.prototype, protos );
+
+ return child;
+ },
+
+ /**
+ * 一个不做任何事情的方法。可以用来赋值给默认的callback.
+ * @method noop
+ */
+ noop: noop,
+
+ /**
+ * 返回一个新的方法,此方法将已指定的`context`来执行。
+ * @grammar Base.bindFn( fn, context ) => Function
+ * @method bindFn
+ * @example
+ * var doSomething = function() {
+ * console.log( this.name );
+ * },
+ * obj = {
+ * name: 'Object Name'
+ * },
+ * aliasFn = Base.bind( doSomething, obj );
+ *
+ * aliasFn(); // => Object Name
+ *
+ */
+ bindFn: bindFn,
+
+ /**
+ * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
+ * @grammar Base.log( args... ) => undefined
+ * @method log
+ */
+ log: (function() {
+ if ( window.console ) {
+ return bindFn( console.log, console );
+ }
+ return noop;
+ })(),
+
+ nextTick: (function() {
+
+ return function( cb ) {
+ setTimeout( cb, 1 );
+ };
+
+ // @bug 当浏览器不在当前窗口时就停了。
+ // var next = window.requestAnimationFrame ||
+ // window.webkitRequestAnimationFrame ||
+ // window.mozRequestAnimationFrame ||
+ // function( cb ) {
+ // window.setTimeout( cb, 1000 / 60 );
+ // };
+
+ // // fix: Uncaught TypeError: Illegal invocation
+ // return bindFn( next, window );
+ })(),
+
+ /**
+ * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
+ * 将用来将非数组对象转化成数组对象。
+ * @grammar Base.slice( target, start[, end] ) => Array
+ * @method slice
+ * @example
+ * function doSomthing() {
+ * var args = Base.slice( arguments, 1 );
+ * console.log( args );
+ * }
+ *
+ * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
+ */
+ slice: uncurryThis( [].slice ),
+
+ /**
+ * 生成唯一的ID
+ * @method guid
+ * @grammar Base.guid() => String
+ * @grammar Base.guid( prefx ) => String
+ */
+ guid: (function() {
+ var counter = 0;
+
+ return function( prefix ) {
+ var guid = (+new Date()).toString( 32 ),
+ i = 0;
+
+ for ( ; i < 5; i++ ) {
+ guid += Math.floor( Math.random() * 65535 ).toString( 32 );
+ }
+
+ return (prefix || 'wu_') + guid + (counter++).toString( 32 );
+ };
+ })(),
+
+ /**
+ * 格式化文件大小, 输出成带单位的字符串
+ * @method formatSize
+ * @grammar Base.formatSize( size ) => String
+ * @grammar Base.formatSize( size, pointLength ) => String
+ * @grammar Base.formatSize( size, pointLength, units ) => String
+ * @param {Number} size 文件大小
+ * @param {Number} [pointLength=2] 精确到的小数点数。
+ * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
+ * @example
+ * console.log( Base.formatSize( 100 ) ); // => 100B
+ * console.log( Base.formatSize( 1024 ) ); // => 1.00K
+ * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
+ * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
+ * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
+ * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
+ */
+ formatSize: function( size, pointLength, units ) {
+ var unit;
+
+ units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
+
+ while ( (unit = units.shift()) && size > 1024 ) {
+ size = size / 1024;
+ }
+
+ return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
+ unit;
+ }
+ };
});
- /**
- * @fileOverview 基础类方法。
- */
-
- /**
- * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
- *
- * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
- * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
- *
- * * module `base`:WebUploader.Base
- * * module `file`: WebUploader.File
- * * module `lib/dnd`: WebUploader.Lib.Dnd
- * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
- *
- *
- * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
- * @module WebUploader
- * @title WebUploader API文档
- */
- define('base',[
- 'dollar',
- 'promise'
- ], function( $, promise ) {
-
- var noop = function() {},
- call = Function.call;
-
- // http://jsperf.com/uncurrythis
- // 反科里化
- function uncurryThis( fn ) {
- return function() {
- return call.apply( fn, arguments );
- };
- }
-
- function bindFn( fn, context ) {
- return function() {
- return fn.apply( context, arguments );
- };
- }
-
- function createObject( proto ) {
- var f;
-
- if ( Object.create ) {
- return Object.create( proto );
- } else {
- f = function() {};
- f.prototype = proto;
- return new f();
- }
- }
-
-
- /**
- * 基础类,提供一些简单常用的方法。
- * @class Base
- */
- return {
-
- /**
- * @property {String} version 当前版本号。
- */
- version: '0.1.8-alpha',
-
- /**
- * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
- */
- $: $,
-
- Deferred: promise.Deferred,
-
- isPromise: promise.isPromise,
-
- when: promise.when,
-
- /**
- * @description 简单的浏览器检查结果。
- *
- * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
- * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
- * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
- * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
- * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
- * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
- *
- * @property {Object} [browser]
- */
- browser: (function( ua ) {
- var ret = {},
- webkit = ua.match( /WebKit\/([\d.]+)/ ),
- chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
- ua.match( /CriOS\/([\d.]+)/ ),
-
- ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
- ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
- firefox = ua.match( /Firefox\/([\d.]+)/ ),
- safari = ua.match( /Safari\/([\d.]+)/ ),
- opera = ua.match( /OPR\/([\d.]+)/ );
-
- webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
- chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
- ie && (ret.ie = parseFloat( ie[ 1 ] ));
- firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
- safari && (ret.safari = parseFloat( safari[ 1 ] ));
- opera && (ret.opera = parseFloat( opera[ 1 ] ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * @description 操作系统检查结果。
- *
- * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
- * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
- * @property {Object} [os]
- */
- os: (function( ua ) {
- var ret = {},
-
- // osx = !!ua.match( /\(Macintosh\; Intel / ),
- android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
- ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
-
- // osx && (ret.osx = true);
- android && (ret.android = parseFloat( android[ 1 ] ));
- ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * 实现类与类之间的继承。
- * @method inherits
- * @grammar Base.inherits( super ) => child
- * @grammar Base.inherits( super, protos ) => child
- * @grammar Base.inherits( super, protos, statics ) => child
- * @param {Class} super 父类
- * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
- * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
- * @param {Object} [statics] 静态属性或方法。
- * @return {Class} 返回子类。
- * @example
- * function Person() {
- * console.log( 'Super' );
- * }
- * Person.prototype.hello = function() {
- * console.log( 'hello' );
- * };
- *
- * var Manager = Base.inherits( Person, {
- * world: function() {
- * console.log( 'World' );
- * }
- * });
- *
- * // 因为没有指定构造器,父类的构造器将会执行。
- * var instance = new Manager(); // => Super
- *
- * // 继承子父类的方法
- * instance.hello(); // => hello
- * instance.world(); // => World
- *
- * // 子类的__super__属性指向父类
- * console.log( Manager.__super__ === Person ); // => true
- */
- inherits: function( Super, protos, staticProtos ) {
- var child;
-
- if ( typeof protos === 'function' ) {
- child = protos;
- protos = null;
- } else if ( protos && protos.hasOwnProperty('constructor') ) {
- child = protos.constructor;
- } else {
- child = function() {
- return Super.apply( this, arguments );
- };
- }
-
- // 复制静态方法
- $.extend( true, child, Super, staticProtos || {} );
-
- /* jshint camelcase: false */
-
- // 让子类的__super__属性指向父类。
- child.__super__ = Super.prototype;
-
- // 构建原型,添加原型方法或属性。
- // 暂时用Object.create实现。
- child.prototype = createObject( Super.prototype );
- protos && $.extend( true, child.prototype, protos );
-
- return child;
- },
-
- /**
- * 一个不做任何事情的方法。可以用来赋值给默认的callback.
- * @method noop
- */
- noop: noop,
-
- /**
- * 返回一个新的方法,此方法将已指定的`context`来执行。
- * @grammar Base.bindFn( fn, context ) => Function
- * @method bindFn
- * @example
- * var doSomething = function() {
- * console.log( this.name );
- * },
- * obj = {
- * name: 'Object Name'
- * },
- * aliasFn = Base.bind( doSomething, obj );
- *
- * aliasFn(); // => Object Name
- *
- */
- bindFn: bindFn,
-
- /**
- * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
- * @grammar Base.log( args... ) => undefined
- * @method log
- */
- log: (function() {
- if ( window.console ) {
- return bindFn( console.log, console );
- }
- return noop;
- })(),
-
- nextTick: (function() {
-
- return function( cb ) {
- setTimeout( cb, 1 );
- };
-
- // @bug 当浏览器不在当前窗口时就停了。
- // var next = window.requestAnimationFrame ||
- // window.webkitRequestAnimationFrame ||
- // window.mozRequestAnimationFrame ||
- // function( cb ) {
- // window.setTimeout( cb, 1000 / 60 );
- // };
-
- // // fix: Uncaught TypeError: Illegal invocation
- // return bindFn( next, window );
- })(),
-
- /**
- * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
- * 将用来将非数组对象转化成数组对象。
- * @grammar Base.slice( target, start[, end] ) => Array
- * @method slice
- * @example
- * function doSomthing() {
- * var args = Base.slice( arguments, 1 );
- * console.log( args );
- * }
- *
- * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
- */
- slice: uncurryThis( [].slice ),
-
- /**
- * 生成唯一的ID
- * @method guid
- * @grammar Base.guid() => String
- * @grammar Base.guid( prefx ) => String
- */
- guid: (function() {
- var counter = 0;
-
- return function( prefix ) {
- var guid = (+new Date()).toString( 32 ),
- i = 0;
-
- for ( ; i < 5; i++ ) {
- guid += Math.floor( Math.random() * 65535 ).toString( 32 );
- }
-
- return (prefix || 'wu_') + guid + (counter++).toString( 32 );
- };
- })(),
-
- /**
- * 格式化文件大小, 输出成带单位的字符串
- * @method formatSize
- * @grammar Base.formatSize( size ) => String
- * @grammar Base.formatSize( size, pointLength ) => String
- * @grammar Base.formatSize( size, pointLength, units ) => String
- * @param {Number} size 文件大小
- * @param {Number} [pointLength=2] 精确到的小数点数。
- * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
- * @example
- * console.log( Base.formatSize( 100 ) ); // => 100B
- * console.log( Base.formatSize( 1024 ) ); // => 1.00K
- * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
- * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
- * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
- * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
- */
- formatSize: function( size, pointLength, units ) {
- var unit;
-
- units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
-
- while ( (unit = units.shift()) && size > 1024 ) {
- size = size / 1024;
- }
-
- return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
- unit;
- }
- };
+ /**
+ * 事件处理类,可以独立使用,也可以扩展给对象使用。
+ * @fileOverview Mediator
+ */
+ define('mediator',[
+ 'base'
+ ], function( Base ) {
+ var $ = Base.$,
+ slice = [].slice,
+ separator = /\s+/,
+ protos;
+
+ // 根据条件过滤出事件handlers.
+ function findHandlers( arr, name, callback, context ) {
+ return $.grep( arr, function( handler ) {
+ return handler &&
+ (!name || handler.e === name) &&
+ (!callback || handler.cb === callback ||
+ handler.cb._cb === callback) &&
+ (!context || handler.ctx === context);
+ });
+ }
+
+ function eachEvent( events, callback, iterator ) {
+ // 不支持对象,只支持多个event用空格隔开
+ $.each( (events || '').split( separator ), function( _, key ) {
+ iterator( key, callback );
+ });
+ }
+
+ function triggerHanders( events, args ) {
+ var stoped = false,
+ i = -1,
+ len = events.length,
+ handler;
+
+ while ( ++i < len ) {
+ handler = events[ i ];
+
+ if ( handler.cb.apply( handler.ctx2, args ) === false ) {
+ stoped = true;
+ break;
+ }
+ }
+
+ return !stoped;
+ }
+
+ protos = {
+
+ /**
+ * 绑定事件。
+ *
+ * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
+ * ```javascript
+ * var obj = {};
+ *
+ * // 使得obj有事件行为
+ * Mediator.installTo( obj );
+ *
+ * obj.on( 'testa', function( arg1, arg2 ) {
+ * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
+ * });
+ *
+ * obj.trigger( 'testa', 'arg1', 'arg2' );
+ * ```
+ *
+ * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
+ * 切会影响到`trigger`方法的返回值,为`false`。
+ *
+ * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
+ * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
+ * ```javascript
+ * obj.on( 'all', function( type, arg1, arg2 ) {
+ * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
+ * });
+ * ```
+ *
+ * @method on
+ * @grammar on( name, callback[, context] ) => self
+ * @param {String} name 事件名,支持多个事件用空格隔开
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ * @class Mediator
+ */
+ on: function( name, callback, context ) {
+ var me = this,
+ set;
+
+ if ( !callback ) {
+ return this;
+ }
+
+ set = this._events || (this._events = []);
+
+ eachEvent( name, callback, function( name, callback ) {
+ var handler = { e: name };
+
+ handler.cb = callback;
+ handler.ctx = context;
+ handler.ctx2 = context || me;
+ handler.id = set.length;
+
+ set.push( handler );
+ });
+
+ return this;
+ },
+
+ /**
+ * 绑定事件,且当handler执行完后,自动解除绑定。
+ * @method once
+ * @grammar once( name, callback[, context] ) => self
+ * @param {String} name 事件名
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ once: function( name, callback, context ) {
+ var me = this;
+
+ if ( !callback ) {
+ return me;
+ }
+
+ eachEvent( name, callback, function( name, callback ) {
+ var once = function() {
+ me.off( name, once );
+ return callback.apply( context || me, arguments );
+ };
+
+ once._cb = callback;
+ me.on( name, once, context );
+ });
+
+ return me;
+ },
+
+ /**
+ * 解除事件绑定
+ * @method off
+ * @grammar off( [name[, callback[, context] ] ] ) => self
+ * @param {String} [name] 事件名
+ * @param {Function} [callback] 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ off: function( name, cb, ctx ) {
+ var events = this._events;
+
+ if ( !events ) {
+ return this;
+ }
+
+ if ( !name && !cb && !ctx ) {
+ this._events = [];
+ return this;
+ }
+
+ eachEvent( name, cb, function( name, cb ) {
+ $.each( findHandlers( events, name, cb, ctx ), function() {
+ delete events[ this.id ];
+ });
+ });
+
+ return this;
+ },
+
+ /**
+ * 触发事件
+ * @method trigger
+ * @grammar trigger( name[, args...] ) => self
+ * @param {String} type 事件名
+ * @param {*} [...] 任意参数
+ * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
+ */
+ trigger: function( type ) {
+ var args, events, allEvents;
+
+ if ( !this._events || !type ) {
+ return this;
+ }
+
+ args = slice.call( arguments, 1 );
+ events = findHandlers( this._events, type );
+ allEvents = findHandlers( this._events, 'all' );
+
+ return triggerHanders( events, args ) &&
+ triggerHanders( allEvents, arguments );
+ }
+ };
+
+ /**
+ * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
+ * 主要目的是负责模块与模块之间的合作,降低耦合度。
+ *
+ * @class Mediator
+ */
+ return $.extend({
+
+ /**
+ * 可以通过这个接口,使任何对象具备事件功能。
+ * @method installTo
+ * @param {Object} obj 需要具备事件行为的对象。
+ * @return {Object} 返回obj.
+ */
+ installTo: function( obj ) {
+ return $.extend( obj, protos );
+ }
+
+ }, protos );
});
- /**
- * 事件处理类,可以独立使用,也可以扩展给对象使用。
- * @fileOverview Mediator
- */
- define('mediator',[
- 'base'
- ], function( Base ) {
- var $ = Base.$,
- slice = [].slice,
- separator = /\s+/,
- protos;
-
- // 根据条件过滤出事件handlers.
- function findHandlers( arr, name, callback, context ) {
- return $.grep( arr, function( handler ) {
- return handler &&
- (!name || handler.e === name) &&
- (!callback || handler.cb === callback ||
- handler.cb._cb === callback) &&
- (!context || handler.ctx === context);
- });
- }
-
- function eachEvent( events, callback, iterator ) {
- // 不支持对象,只支持多个event用空格隔开
- $.each( (events || '').split( separator ), function( _, key ) {
- iterator( key, callback );
- });
- }
-
- function triggerHanders( events, args ) {
- var stoped = false,
- i = -1,
- len = events.length,
- handler;
-
- while ( ++i < len ) {
- handler = events[ i ];
-
- if ( handler.cb.apply( handler.ctx2, args ) === false ) {
- stoped = true;
- break;
- }
- }
-
- return !stoped;
- }
-
- protos = {
-
- /**
- * 绑定事件。
- *
- * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
- * ```javascript
- * var obj = {};
- *
- * // 使得obj有事件行为
- * Mediator.installTo( obj );
- *
- * obj.on( 'testa', function( arg1, arg2 ) {
- * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
- * });
- *
- * obj.trigger( 'testa', 'arg1', 'arg2' );
- * ```
- *
- * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
- * 切会影响到`trigger`方法的返回值,为`false`。
- *
- * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
- * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
- * ```javascript
- * obj.on( 'all', function( type, arg1, arg2 ) {
- * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
- * });
- * ```
- *
- * @method on
- * @grammar on( name, callback[, context] ) => self
- * @param {String} name 事件名,支持多个事件用空格隔开
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- * @class Mediator
- */
- on: function( name, callback, context ) {
- var me = this,
- set;
+ /**
+ * @fileOverview Uploader上传类
+ */
+ define('uploader',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$;
+
+ /**
+ * 上传入口类。
+ * @class Uploader
+ * @constructor
+ * @grammar new Uploader( opts ) => Uploader
+ * @example
+ * var uploader = WebUploader.Uploader({
+ * swf: 'path_of_swf/Uploader.swf',
+ *
+ * // 开起分片上传。
+ * chunked: true
+ * });
+ */
+ function Uploader( opts ) {
+ this.options = $.extend( true, {}, Uploader.options, opts );
+ this._init( this.options );
+ }
+
+ // default Options
+ // widgets中有相应扩展
+ Uploader.options = {};
+ Mediator.installTo( Uploader.prototype );
+
+ // 批量添加纯命令式方法。
+ $.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( fn, command ) {
+ Uploader.prototype[ fn ] = function() {
+ return this.request( command, arguments );
+ };
+ });
+
+ $.extend( Uploader.prototype, {
+ state: 'pending',
+
+ _init: function( opts ) {
+ var me = this;
+
+ me.request( 'init', opts, function() {
+ me.state = 'ready';
+ me.trigger('ready');
+ });
+ },
+
+ /**
+ * 获取或者设置Uploader配置项。
+ * @method option
+ * @grammar option( key ) => *
+ * @grammar option( key, val ) => self
+ * @example
+ *
+ * // 初始状态图片上传前不会压缩
+ * var uploader = new WebUploader.Uploader({
+ * compress: null;
+ * });
+ *
+ * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
+ * uploader.option( 'compress', {
+ * width: 1600,
+ * height: 1600
+ * });
+ */
+ option: function( key, val ) {
+ var opts = this.options;
+
+ // setter
+ if ( arguments.length > 1 ) {
+
+ if ( $.isPlainObject( val ) &&
+ $.isPlainObject( opts[ key ] ) ) {
+ $.extend( opts[ key ], val );
+ } else {
+ opts[ key ] = val;
+ }
+
+ } else { // getter
+ return key ? opts[ key ] : opts;
+ }
+ },
+
+ /**
+ * 获取文件统计信息。返回一个包含一下信息的对象。
+ * * `successNum` 上传成功的文件数
+ * * `progressNum` 上传中的文件数
+ * * `cancelNum` 被删除的文件数
+ * * `invalidNum` 无效的文件数
+ * * `uploadFailNum` 上传失败的文件数
+ * * `queueNum` 还在队列中的文件数
+ * * `interruptNum` 被暂停的文件数
+ * @method getStats
+ * @grammar getStats() => Object
+ */
+ getStats: function() {
+ // return this._mgr.getStats.apply( this._mgr, arguments );
+ var stats = this.request('get-stats');
+
+ return stats ? {
+ successNum: stats.numOfSuccess,
+ progressNum: stats.numOfProgress,
+
+ // who care?
+ // queueFailNum: 0,
+ cancelNum: stats.numOfCancel,
+ invalidNum: stats.numOfInvalid,
+ uploadFailNum: stats.numOfUploadFailed,
+ queueNum: stats.numOfQueue,
+ interruptNum: stats.numOfInterrupt
+ } : {};
+ },
+
+ // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
+ trigger: function( type/*, args...*/ ) {
+ var args = [].slice.call( arguments, 1 ),
+ opts = this.options,
+ name = 'on' + type.substring( 0, 1 ).toUpperCase() +
+ type.substring( 1 );
+
+ if (
+ // 调用通过on方法注册的handler.
+ Mediator.trigger.apply( this, arguments ) === false ||
+
+ // 调用opts.onEvent
+ $.isFunction( opts[ name ] ) &&
+ opts[ name ].apply( this, args ) === false ||
+
+ // 调用this.onEvent
+ $.isFunction( this[ name ] ) &&
+ this[ name ].apply( this, args ) === false ||
+
+ // 广播所有uploader的事件。
+ Mediator.trigger.apply( Mediator,
+ [ this, type ].concat( args ) ) === false ) {
+
+ return false;
+ }
+
+ return true;
+ },
+
+ /**
+ * 销毁 webuploader 实例
+ * @method destroy
+ * @grammar destroy() => undefined
+ */
+ destroy: function() {
+ this.request( 'destroy', arguments );
+ this.off();
+ },
+
+ // widgets/widget.js将补充此方法的详细文档。
+ request: Base.noop
+ });
+
+ /**
+ * 创建Uploader实例,等同于new Uploader( opts );
+ * @method create
+ * @class Base
+ * @static
+ * @grammar Base.create( opts ) => Uploader
+ */
+ Base.create = Uploader.create = function( opts ) {
+ return new Uploader( opts );
+ };
+
+ // 暴露Uploader,可以通过它来扩展业务逻辑。
+ Base.Uploader = Uploader;
+
+ return Uploader;
+ });
- if ( !callback ) {
- return this;
- }
-
- set = this._events || (this._events = []);
-
- eachEvent( name, callback, function( name, callback ) {
- var handler = { e: name };
-
- handler.cb = callback;
- handler.ctx = context;
- handler.ctx2 = context || me;
- handler.id = set.length;
-
- set.push( handler );
- });
-
- return this;
- },
-
- /**
- * 绑定事件,且当handler执行完后,自动解除绑定。
- * @method once
- * @grammar once( name, callback[, context] ) => self
- * @param {String} name 事件名
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- once: function( name, callback, context ) {
- var me = this;
-
- if ( !callback ) {
- return me;
- }
-
- eachEvent( name, callback, function( name, callback ) {
- var once = function() {
- me.off( name, once );
- return callback.apply( context || me, arguments );
- };
-
- once._cb = callback;
- me.on( name, once, context );
- });
-
- return me;
- },
-
- /**
- * 解除事件绑定
- * @method off
- * @grammar off( [name[, callback[, context] ] ] ) => self
- * @param {String} [name] 事件名
- * @param {Function} [callback] 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- off: function( name, cb, ctx ) {
- var events = this._events;
-
- if ( !events ) {
- return this;
- }
-
- if ( !name && !cb && !ctx ) {
- this._events = [];
- return this;
- }
-
- eachEvent( name, cb, function( name, cb ) {
- $.each( findHandlers( events, name, cb, ctx ), function() {
- delete events[ this.id ];
- });
- });
-
- return this;
- },
-
- /**
- * 触发事件
- * @method trigger
- * @grammar trigger( name[, args...] ) => self
- * @param {String} type 事件名
- * @param {*} [...] 任意参数
- * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
- */
- trigger: function( type ) {
- var args, events, allEvents;
-
- if ( !this._events || !type ) {
- return this;
- }
-
- args = slice.call( arguments, 1 );
- events = findHandlers( this._events, type );
- allEvents = findHandlers( this._events, 'all' );
-
- return triggerHanders( events, args ) &&
- triggerHanders( allEvents, arguments );
- }
- };
-
- /**
- * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
- * 主要目的是负责模块与模块之间的合作,降低耦合度。
- *
- * @class Mediator
- */
- return $.extend({
-
- /**
- * 可以通过这个接口,使任何对象具备事件功能。
- * @method installTo
- * @param {Object} obj 需要具备事件行为的对象。
- * @return {Object} 返回obj.
- */
- installTo: function( obj ) {
- return $.extend( obj, protos );
- }
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/runtime',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ factories = {},
+
+ // 获取对象的第一个key
+ getFirstKey = function( obj ) {
+ for ( var key in obj ) {
+ if ( obj.hasOwnProperty( key ) ) {
+ return key;
+ }
+ }
+ return null;
+ };
+
+ // 接口类。
+ function Runtime( options ) {
+ this.options = $.extend({
+ container: document.body
+ }, options );
+ this.uid = Base.guid('rt_');
+ }
+
+ $.extend( Runtime.prototype, {
+
+ getContainer: function() {
+ var opts = this.options,
+ parent, container;
+
+ if ( this._container ) {
+ return this._container;
+ }
+
+ parent = $( opts.container || document.body );
+ container = $( document.createElement('div') );
+
+ container.attr( 'id', 'rt_' + this.uid );
+ container.css({
+ position: 'absolute',
+ top: '0px',
+ left: '0px',
+ width: '1px',
+ height: '1px',
+ overflow: 'hidden'
+ });
+
+ parent.append( container );
+ parent.addClass('webuploader-container');
+ this._container = container;
+ this._parent = parent;
+ return container;
+ },
+
+ init: Base.noop,
+ exec: Base.noop,
+
+ destroy: function() {
+ this._container && this._container.remove();
+ this._parent && this._parent.removeClass('webuploader-container');
+ this.off();
+ }
+ });
+
+ Runtime.orders = 'html5,flash';
+
+
+ /**
+ * 添加Runtime实现。
+ * @param {String} type 类型
+ * @param {Runtime} factory 具体Runtime实现。
+ */
+ Runtime.addRuntime = function( type, factory ) {
+ factories[ type ] = factory;
+ };
+
+ Runtime.hasRuntime = function( type ) {
+ return !!(type ? factories[ type ] : getFirstKey( factories ));
+ };
+
+ Runtime.create = function( opts, orders ) {
+ var type, runtime;
+
+ orders = orders || Runtime.orders;
+ $.each( orders.split( /\s*,\s*/g ), function() {
+ if ( factories[ this ] ) {
+ type = this;
+ return false;
+ }
+ });
+
+ type = type || getFirstKey( factories );
+
+ if ( !type ) {
+ throw new Error('Runtime Error');
+ }
+
+ runtime = new factories[ type ]( opts );
+ return runtime;
+ };
+
+ Mediator.installTo( Runtime.prototype );
+ return Runtime;
+ });
- }, protos );
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/client',[
+ 'base',
+ 'mediator',
+ 'runtime/runtime'
+ ], function( Base, Mediator, Runtime ) {
+
+ var cache;
+
+ cache = (function() {
+ var obj = {};
+
+ return {
+ add: function( runtime ) {
+ obj[ runtime.uid ] = runtime;
+ },
+
+ get: function( ruid, standalone ) {
+ var i;
+
+ if ( ruid ) {
+ return obj[ ruid ];
+ }
+
+ for ( i in obj ) {
+ // 有些类型不能重用,比如filepicker.
+ if ( standalone && obj[ i ].__standalone ) {
+ continue;
+ }
+
+ return obj[ i ];
+ }
+
+ return null;
+ },
+
+ remove: function( runtime ) {
+ delete obj[ runtime.uid ];
+ }
+ };
+ })();
+
+ function RuntimeClient( component, standalone ) {
+ var deferred = Base.Deferred(),
+ runtime;
+
+ this.uid = Base.guid('client_');
+
+ // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
+ this.runtimeReady = function( cb ) {
+ return deferred.done( cb );
+ };
+
+ this.connectRuntime = function( opts, cb ) {
+
+ // already connected.
+ if ( runtime ) {
+ throw new Error('already connected!');
+ }
+
+ deferred.done( cb );
+
+ if ( typeof opts === 'string' && cache.get( opts ) ) {
+ runtime = cache.get( opts );
+ }
+
+ // 像filePicker只能独立存在,不能公用。
+ runtime = runtime || cache.get( null, standalone );
+
+ // 需要创建
+ if ( !runtime ) {
+ runtime = Runtime.create( opts, opts.runtimeOrder );
+ runtime.__promise = deferred.promise();
+ runtime.once( 'ready', deferred.resolve );
+ runtime.init();
+ cache.add( runtime );
+ runtime.__client = 1;
+ } else {
+ // 来自cache
+ Base.$.extend( runtime.options, opts );
+ runtime.__promise.then( deferred.resolve );
+ runtime.__client++;
+ }
+
+ standalone && (runtime.__standalone = standalone);
+ return runtime;
+ };
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.disconnectRuntime = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ runtime.__client--;
+
+ if ( runtime.__client <= 0 ) {
+ cache.remove( runtime );
+ delete runtime.__promise;
+ runtime.destroy();
+ }
+
+ runtime = null;
+ };
+
+ this.exec = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ var args = Base.slice( arguments );
+ component && args.unshift( component );
+
+ return runtime.exec.apply( this, args );
+ };
+
+ this.getRuid = function() {
+ return runtime && runtime.uid;
+ };
+
+ this.destroy = (function( destroy ) {
+ return function() {
+ destroy && destroy.apply( this, arguments );
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ };
+ })( this.destroy );
+ }
+
+ Mediator.installTo( RuntimeClient.prototype );
+ return RuntimeClient;
});
- /**
- * @fileOverview Uploader上传类
- */
- define('uploader',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$;
-
- /**
- * 上传入口类。
- * @class Uploader
- * @constructor
- * @grammar new Uploader( opts ) => Uploader
- * @example
- * var uploader = WebUploader.Uploader({
- * swf: 'path_of_swf/Uploader.swf',
- *
- * // 开起分片上传。
- * chunked: true
- * });
- */
- function Uploader( opts ) {
- this.options = $.extend( true, {}, Uploader.options, opts );
- this._init( this.options );
- }
-
- // default Options
- // widgets中有相应扩展
- Uploader.options = {};
- Mediator.installTo( Uploader.prototype );
-
- // 批量添加纯命令式方法。
- $.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( fn, command ) {
- Uploader.prototype[ fn ] = function() {
- return this.request( command, arguments );
- };
- });
-
- $.extend( Uploader.prototype, {
- state: 'pending',
-
- _init: function( opts ) {
- var me = this;
-
- me.request( 'init', opts, function() {
- me.state = 'ready';
- me.trigger('ready');
- });
- },
-
- /**
- * 获取或者设置Uploader配置项。
- * @method option
- * @grammar option( key ) => *
- * @grammar option( key, val ) => self
- * @example
- *
- * // 初始状态图片上传前不会压缩
- * var uploader = new WebUploader.Uploader({
- * compress: null;
- * });
- *
- * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
- * uploader.option( 'compress', {
- * width: 1600,
- * height: 1600
- * });
- */
- option: function( key, val ) {
- var opts = this.options;
-
- // setter
- if ( arguments.length > 1 ) {
-
- if ( $.isPlainObject( val ) &&
- $.isPlainObject( opts[ key ] ) ) {
- $.extend( opts[ key ], val );
- } else {
- opts[ key ] = val;
- }
-
- } else { // getter
- return key ? opts[ key ] : opts;
- }
- },
-
- /**
- * 获取文件统计信息。返回一个包含一下信息的对象。
- * * `successNum` 上传成功的文件数
- * * `progressNum` 上传中的文件数
- * * `cancelNum` 被删除的文件数
- * * `invalidNum` 无效的文件数
- * * `uploadFailNum` 上传失败的文件数
- * * `queueNum` 还在队列中的文件数
- * * `interruptNum` 被暂停的文件数
- * @method getStats
- * @grammar getStats() => Object
- */
- getStats: function() {
- // return this._mgr.getStats.apply( this._mgr, arguments );
- var stats = this.request('get-stats');
-
- return stats ? {
- successNum: stats.numOfSuccess,
- progressNum: stats.numOfProgress,
-
- // who care?
- // queueFailNum: 0,
- cancelNum: stats.numOfCancel,
- invalidNum: stats.numOfInvalid,
- uploadFailNum: stats.numOfUploadFailed,
- queueNum: stats.numOfQueue,
- interruptNum: stats.numOfInterrupt
- } : {};
- },
-
- // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
- trigger: function( type/*, args...*/ ) {
- var args = [].slice.call( arguments, 1 ),
- opts = this.options,
- name = 'on' + type.substring( 0, 1 ).toUpperCase() +
- type.substring( 1 );
-
- if (
- // 调用通过on方法注册的handler.
- Mediator.trigger.apply( this, arguments ) === false ||
-
- // 调用opts.onEvent
- $.isFunction( opts[ name ] ) &&
- opts[ name ].apply( this, args ) === false ||
-
- // 调用this.onEvent
- $.isFunction( this[ name ] ) &&
- this[ name ].apply( this, args ) === false ||
-
- // 广播所有uploader的事件。
- Mediator.trigger.apply( Mediator,
- [ this, type ].concat( args ) ) === false ) {
-
- return false;
- }
-
- return true;
- },
-
- /**
- * 销毁 webuploader 实例
- * @method destroy
- * @grammar destroy() => undefined
- */
- destroy: function() {
- this.request( 'destroy', arguments );
- this.off();
- },
-
- // widgets/widget.js将补充此方法的详细文档。
- request: Base.noop
- });
-
- /**
- * 创建Uploader实例,等同于new Uploader( opts );
- * @method create
- * @class Base
- * @static
- * @grammar Base.create( opts ) => Uploader
- */
- Base.create = Uploader.create = function( opts ) {
- return new Uploader( opts );
- };
-
- // 暴露Uploader,可以通过它来扩展业务逻辑。
- Base.Uploader = Uploader;
-
- return Uploader;
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/dnd',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function DragAndDrop( opts ) {
+ opts = this.options = $.extend({}, DragAndDrop.options, opts );
+
+ opts.container = $( opts.container );
+
+ if ( !opts.container.length ) {
+ return;
+ }
+
+ RuntimeClent.call( this, 'DragAndDrop' );
+ }
+
+ DragAndDrop.options = {
+ accept: null,
+ disableGlobalDnd: false
+ };
+
+ Base.inherits( RuntimeClent, {
+ constructor: DragAndDrop,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( DragAndDrop.prototype );
+
+ return DragAndDrop;
});
-
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/runtime',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- factories = {},
-
- // 获取对象的第一个key
- getFirstKey = function( obj ) {
- for ( var key in obj ) {
- if ( obj.hasOwnProperty( key ) ) {
- return key;
- }
- }
- return null;
- };
-
- // 接口类。
- function Runtime( options ) {
- this.options = $.extend({
- container: document.body
- }, options );
- this.uid = Base.guid('rt_');
- }
-
- $.extend( Runtime.prototype, {
-
- getContainer: function() {
- var opts = this.options,
- parent, container;
-
- if ( this._container ) {
- return this._container;
- }
-
- parent = $( opts.container || document.body );
- container = $( document.createElement('div') );
-
- container.attr( 'id', 'rt_' + this.uid );
- container.css({
- position: 'absolute',
- top: '0px',
- left: '0px',
- width: '1px',
- height: '1px',
- overflow: 'hidden'
- });
-
- parent.append( container );
- parent.addClass('webuploader-container');
- this._container = container;
- this._parent = parent;
- return container;
- },
-
- init: Base.noop,
- exec: Base.noop,
-
- destroy: function() {
- this._container && this._container.remove();
- this._parent && this._parent.removeClass('webuploader-container');
- this.off();
- }
- });
-
- Runtime.orders = 'html5,flash';
-
-
- /**
- * 添加Runtime实现。
- * @param {String} type 类型
- * @param {Runtime} factory 具体Runtime实现。
- */
- Runtime.addRuntime = function( type, factory ) {
- factories[ type ] = factory;
- };
-
- Runtime.hasRuntime = function( type ) {
- return !!(type ? factories[ type ] : getFirstKey( factories ));
- };
-
- Runtime.create = function( opts, orders ) {
- var type, runtime;
-
- orders = orders || Runtime.orders;
- $.each( orders.split( /\s*,\s*/g ), function() {
- if ( factories[ this ] ) {
- type = this;
- return false;
- }
- });
-
- type = type || getFirstKey( factories );
-
- if ( !type ) {
- throw new Error('Runtime Error');
- }
-
- runtime = new factories[ type ]( opts );
- return runtime;
- };
-
- Mediator.installTo( Runtime.prototype );
- return Runtime;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/widget',[
+ 'base',
+ 'uploader'
+ ], function( Base, Uploader ) {
+
+ var $ = Base.$,
+ _init = Uploader.prototype._init,
+ _destroy = Uploader.prototype.destroy,
+ IGNORE = {},
+ widgetClass = [];
+
+ function isArrayLike( obj ) {
+ if ( !obj ) {
+ return false;
+ }
+
+ var length = obj.length,
+ type = $.type( obj );
+
+ if ( obj.nodeType === 1 && length ) {
+ return true;
+ }
+
+ return type === 'array' || type !== 'function' && type !== 'string' &&
+ (length === 0 || typeof length === 'number' && length > 0 &&
+ (length - 1) in obj);
+ }
+
+ function Widget( uploader ) {
+ this.owner = uploader;
+ this.options = uploader.options;
+ }
+
+ $.extend( Widget.prototype, {
+
+ init: Base.noop,
+
+ // 类Backbone的事件监听声明,监听uploader实例上的事件
+ // widget直接无法监听事件,事件只能通过uploader来传递
+ invoke: function( apiName, args ) {
+
+ /*
+ {
+ 'make-thumb': 'makeThumb'
+ }
+ */
+ var map = this.responseMap;
+
+ // 如果无API响应声明则忽略
+ if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
+ !$.isFunction( this[ map[ apiName ] ] ) ) {
+
+ return IGNORE;
+ }
+
+ return this[ map[ apiName ] ].apply( this, args );
+
+ },
+
+ /**
+ * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
+ * @method request
+ * @grammar request( command, args ) => * | Promise
+ * @grammar request( command, args, callback ) => Promise
+ * @for Uploader
+ */
+ request: function() {
+ return this.owner.request.apply( this.owner, arguments );
+ }
+ });
+
+ // 扩展Uploader.
+ $.extend( Uploader.prototype, {
+
+ /**
+ * @property {String | Array} [disableWidgets=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
+ */
+
+ // 覆写_init用来初始化widgets
+ _init: function() {
+ var me = this,
+ widgets = me._widgets = [],
+ deactives = me.options.disableWidgets || '';
+
+ $.each( widgetClass, function( _, klass ) {
+ (!deactives || !~deactives.indexOf( klass._name )) &&
+ widgets.push( new klass( me ) );
+ });
+
+ return _init.apply( me, arguments );
+ },
+
+ request: function( apiName, args, callback ) {
+ var i = 0,
+ widgets = this._widgets,
+ len = widgets && widgets.length,
+ rlts = [],
+ dfds = [],
+ widget, rlt, promise, key;
+
+ args = isArrayLike( args ) ? args : [ args ];
+
+ for ( ; i < len; i++ ) {
+ widget = widgets[ i ];
+ rlt = widget.invoke( apiName, args );
+
+ if ( rlt !== IGNORE ) {
+
+ // Deferred对象
+ if ( Base.isPromise( rlt ) ) {
+ dfds.push( rlt );
+ } else {
+ rlts.push( rlt );
+ }
+ }
+ }
+
+ // 如果有callback,则用异步方式。
+ if ( callback || dfds.length ) {
+ promise = Base.when.apply( Base, dfds );
+ key = promise.pipe ? 'pipe' : 'then';
+
+ // 很重要不能删除。删除了会死循环。
+ // 保证执行顺序。让callback总是在下一个 tick 中执行。
+ return promise[ key ](function() {
+ var deferred = Base.Deferred(),
+ args = arguments;
+
+ if ( args.length === 1 ) {
+ args = args[ 0 ];
+ }
+
+ setTimeout(function() {
+ deferred.resolve( args );
+ }, 1 );
+
+ return deferred.promise();
+ })[ callback ? key : 'done' ]( callback || Base.noop );
+ } else {
+ return rlts[ 0 ];
+ }
+ },
+
+ destroy: function() {
+ _destroy.apply( this, arguments );
+ this._widgets = null;
+ }
+ });
+
+ /**
+ * 添加组件
+ * @grammar Uploader.register(proto);
+ * @grammar Uploader.register(map, proto);
+ * @param {object} responseMap API 名称与函数实现的映射
+ * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
+ * @method Uploader.register
+ * @for Uploader
+ * @example
+ * Uploader.register({
+ * 'make-thumb': 'makeThumb'
+ * }, {
+ * init: function( options ) {},
+ * makeThumb: function() {}
+ * });
+ *
+ * Uploader.register({
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ */
+ Uploader.register = Widget.register = function( responseMap, widgetProto ) {
+ var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
+ klass;
+
+ if ( arguments.length === 1 ) {
+ widgetProto = responseMap;
+
+ // 自动生成 map 表。
+ $.each(widgetProto, function(key) {
+ if ( key[0] === '_' || key === 'name' ) {
+ key === 'name' && (map.name = widgetProto.name);
+ return;
+ }
+
+ map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
+ });
+
+ } else {
+ map = $.extend( map, responseMap );
+ }
+
+ widgetProto.responseMap = map;
+ klass = Base.inherits( Widget, widgetProto );
+ klass._name = map.name;
+ widgetClass.push( klass );
+
+ return klass;
+ };
+
+ /**
+ * 删除插件,只有在注册时指定了名字的才能被删除。
+ * @grammar Uploader.unRegister(name);
+ * @param {string} name 组件名字
+ * @method Uploader.unRegister
+ * @for Uploader
+ * @example
+ *
+ * Uploader.register({
+ * name: 'custom',
+ *
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ *
+ * Uploader.unRegister('custom');
+ */
+ Uploader.unRegister = Widget.unRegister = function( name ) {
+ if ( !name || name === 'anonymous' ) {
+ return;
+ }
+
+ // 删除指定的插件。
+ for ( var i = widgetClass.length; i--; ) {
+ if ( widgetClass[i]._name === name ) {
+ widgetClass.splice(i, 1)
+ }
+ }
+ };
+
+ return Widget;
});
+ /**
+ * @fileOverview DragAndDrop Widget。
+ */
+ define('widgets/filednd',[
+ 'base',
+ 'uploader',
+ 'lib/dnd',
+ 'widgets/widget'
+ ], function( Base, Uploader, Dnd ) {
+ var $ = Base.$;
+
+ Uploader.options.dnd = '';
+
+ /**
+ * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @event dndAccept
+ * @param {DataTransferItemList} items DataTransferItem
+ * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'dnd',
+
+ init: function( opts ) {
+
+ if ( !opts.dnd ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ disableGlobalDnd: opts.disableGlobalDnd,
+ container: opts.dnd,
+ accept: opts.accept
+ }),
+ dnd;
+
+ this.dnd = dnd = new Dnd( options );
+
+ dnd.once( 'ready', deferred.resolve );
+ dnd.on( 'drop', function( files ) {
+ me.request( 'add-file', [ files ]);
+ });
+
+ // 检测文件是否全部允许添加。
+ dnd.on( 'accept', function( items ) {
+ return me.owner.trigger( 'dndAccept', items );
+ });
+
+ dnd.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.dnd && this.dnd.destroy();
+ }
+ });
+ });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/client',[
- 'base',
- 'mediator',
- 'runtime/runtime'
- ], function( Base, Mediator, Runtime ) {
-
- var cache;
-
- cache = (function() {
- var obj = {};
-
- return {
- add: function( runtime ) {
- obj[ runtime.uid ] = runtime;
- },
-
- get: function( ruid, standalone ) {
- var i;
-
- if ( ruid ) {
- return obj[ ruid ];
- }
-
- for ( i in obj ) {
- // 有些类型不能重用,比如filepicker.
- if ( standalone && obj[ i ].__standalone ) {
- continue;
- }
-
- return obj[ i ];
- }
-
- return null;
- },
-
- remove: function( runtime ) {
- delete obj[ runtime.uid ];
- }
- };
- })();
-
- function RuntimeClient( component, standalone ) {
- var deferred = Base.Deferred(),
- runtime;
-
- this.uid = Base.guid('client_');
-
- // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
- this.runtimeReady = function( cb ) {
- return deferred.done( cb );
- };
-
- this.connectRuntime = function( opts, cb ) {
-
- // already connected.
- if ( runtime ) {
- throw new Error('already connected!');
- }
-
- deferred.done( cb );
-
- if ( typeof opts === 'string' && cache.get( opts ) ) {
- runtime = cache.get( opts );
- }
-
- // 像filePicker只能独立存在,不能公用。
- runtime = runtime || cache.get( null, standalone );
-
- // 需要创建
- if ( !runtime ) {
- runtime = Runtime.create( opts, opts.runtimeOrder );
- runtime.__promise = deferred.promise();
- runtime.once( 'ready', deferred.resolve );
- runtime.init();
- cache.add( runtime );
- runtime.__client = 1;
- } else {
- // 来自cache
- Base.$.extend( runtime.options, opts );
- runtime.__promise.then( deferred.resolve );
- runtime.__client++;
- }
-
- standalone && (runtime.__standalone = standalone);
- return runtime;
- };
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.disconnectRuntime = function() {
- if ( !runtime ) {
- return;
- }
-
- runtime.__client--;
-
- if ( runtime.__client <= 0 ) {
- cache.remove( runtime );
- delete runtime.__promise;
- runtime.destroy();
- }
-
- runtime = null;
- };
-
- this.exec = function() {
- if ( !runtime ) {
- return;
- }
-
- var args = Base.slice( arguments );
- component && args.unshift( component );
-
- return runtime.exec.apply( this, args );
- };
-
- this.getRuid = function() {
- return runtime && runtime.uid;
- };
-
- this.destroy = (function( destroy ) {
- return function() {
- destroy && destroy.apply( this, arguments );
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- };
- })( this.destroy );
- }
-
- Mediator.installTo( RuntimeClient.prototype );
- return RuntimeClient;
- });
- /**
- * @fileOverview 错误信息
- */
- define('lib/dnd',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function DragAndDrop( opts ) {
- opts = this.options = $.extend({}, DragAndDrop.options, opts );
-
- opts.container = $( opts.container );
-
- if ( !opts.container.length ) {
- return;
- }
-
- RuntimeClent.call( this, 'DragAndDrop' );
- }
-
- DragAndDrop.options = {
- accept: null,
- disableGlobalDnd: false
- };
-
- Base.inherits( RuntimeClent, {
- constructor: DragAndDrop,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( DragAndDrop.prototype );
-
- return DragAndDrop;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/widget',[
- 'base',
- 'uploader'
- ], function( Base, Uploader ) {
-
- var $ = Base.$,
- _init = Uploader.prototype._init,
- _destroy = Uploader.prototype.destroy,
- IGNORE = {},
- widgetClass = [];
-
- function isArrayLike( obj ) {
- if ( !obj ) {
- return false;
- }
-
- var length = obj.length,
- type = $.type( obj );
-
- if ( obj.nodeType === 1 && length ) {
- return true;
- }
-
- return type === 'array' || type !== 'function' && type !== 'string' &&
- (length === 0 || typeof length === 'number' && length > 0 &&
- (length - 1) in obj);
- }
-
- function Widget( uploader ) {
- this.owner = uploader;
- this.options = uploader.options;
- }
-
- $.extend( Widget.prototype, {
-
- init: Base.noop,
-
- // 类Backbone的事件监听声明,监听uploader实例上的事件
- // widget直接无法监听事件,事件只能通过uploader来传递
- invoke: function( apiName, args ) {
-
- /*
- {
- 'make-thumb': 'makeThumb'
- }
- */
- var map = this.responseMap;
-
- // 如果无API响应声明则忽略
- if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
- !$.isFunction( this[ map[ apiName ] ] ) ) {
-
- return IGNORE;
- }
-
- return this[ map[ apiName ] ].apply( this, args );
-
- },
-
- /**
- * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
- * @method request
- * @grammar request( command, args ) => * | Promise
- * @grammar request( command, args, callback ) => Promise
- * @for Uploader
- */
- request: function() {
- return this.owner.request.apply( this.owner, arguments );
- }
- });
-
- // 扩展Uploader.
- $.extend( Uploader.prototype, {
-
- /**
- * @property {String | Array} [disableWidgets=undefined]
- * @namespace options
- * @for Uploader
- * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
- */
-
- // 覆写_init用来初始化widgets
- _init: function() {
- var me = this,
- widgets = me._widgets = [],
- deactives = me.options.disableWidgets || '';
-
- $.each( widgetClass, function( _, klass ) {
- (!deactives || !~deactives.indexOf( klass._name )) &&
- widgets.push( new klass( me ) );
- });
-
- return _init.apply( me, arguments );
- },
-
- request: function( apiName, args, callback ) {
- var i = 0,
- widgets = this._widgets,
- len = widgets && widgets.length,
- rlts = [],
- dfds = [],
- widget, rlt, promise, key;
-
- args = isArrayLike( args ) ? args : [ args ];
-
- for ( ; i < len; i++ ) {
- widget = widgets[ i ];
- rlt = widget.invoke( apiName, args );
-
- if ( rlt !== IGNORE ) {
-
- // Deferred对象
- if ( Base.isPromise( rlt ) ) {
- dfds.push( rlt );
- } else {
- rlts.push( rlt );
- }
- }
- }
-
- // 如果有callback,则用异步方式。
- if ( callback || dfds.length ) {
- promise = Base.when.apply( Base, dfds );
- key = promise.pipe ? 'pipe' : 'then';
-
- // 很重要不能删除。删除了会死循环。
- // 保证执行顺序。让callback总是在下一个 tick 中执行。
- return promise[ key ](function() {
- var deferred = Base.Deferred(),
- args = arguments;
-
- if ( args.length === 1 ) {
- args = args[ 0 ];
- }
-
- setTimeout(function() {
- deferred.resolve( args );
- }, 1 );
-
- return deferred.promise();
- })[ callback ? key : 'done' ]( callback || Base.noop );
- } else {
- return rlts[ 0 ];
- }
- },
-
- destroy: function() {
- _destroy.apply( this, arguments );
- this._widgets = null;
- }
- });
-
- /**
- * 添加组件
- * @grammar Uploader.register(proto);
- * @grammar Uploader.register(map, proto);
- * @param {object} responseMap API 名称与函数实现的映射
- * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
- * @method Uploader.register
- * @for Uploader
- * @example
- * Uploader.register({
- * 'make-thumb': 'makeThumb'
- * }, {
- * init: function( options ) {},
- * makeThumb: function() {}
- * });
- *
- * Uploader.register({
- * 'make-thumb': function() {
- *
- * }
- * });
- */
- Uploader.register = Widget.register = function( responseMap, widgetProto ) {
- var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
- klass;
-
- if ( arguments.length === 1 ) {
- widgetProto = responseMap;
-
- // 自动生成 map 表。
- $.each(widgetProto, function(key) {
- if ( key[0] === '_' || key === 'name' ) {
- key === 'name' && (map.name = widgetProto.name);
- return;
- }
-
- map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
- });
-
- } else {
- map = $.extend( map, responseMap );
- }
-
- widgetProto.responseMap = map;
- klass = Base.inherits( Widget, widgetProto );
- klass._name = map.name;
- widgetClass.push( klass );
-
- return klass;
- };
-
- /**
- * 删除插件,只有在注册时指定了名字的才能被删除。
- * @grammar Uploader.unRegister(name);
- * @param {string} name 组件名字
- * @method Uploader.unRegister
- * @for Uploader
- * @example
- *
- * Uploader.register({
- * name: 'custom',
- *
- * 'make-thumb': function() {
- *
- * }
- * });
- *
- * Uploader.unRegister('custom');
- */
- Uploader.unRegister = Widget.unRegister = function( name ) {
- if ( !name || name === 'anonymous' ) {
- return;
- }
-
- // 删除指定的插件。
- for ( var i = widgetClass.length; i--; ) {
- if ( widgetClass[i]._name === name ) {
- widgetClass.splice(i, 1)
- }
- }
- };
-
- return Widget;
- });
- /**
- * @fileOverview DragAndDrop Widget。
- */
- define('widgets/filednd',[
- 'base',
- 'uploader',
- 'lib/dnd',
- 'widgets/widget'
- ], function( Base, Uploader, Dnd ) {
- var $ = Base.$;
-
- Uploader.options.dnd = '';
-
- /**
- * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @event dndAccept
- * @param {DataTransferItemList} items DataTransferItem
- * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
- * @for Uploader
- */
- return Uploader.register({
- name: 'dnd',
-
- init: function( opts ) {
-
- if ( !opts.dnd ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- disableGlobalDnd: opts.disableGlobalDnd,
- container: opts.dnd,
- accept: opts.accept
- }),
- dnd;
-
- this.dnd = dnd = new Dnd( options );
-
- dnd.once( 'ready', deferred.resolve );
- dnd.on( 'drop', function( files ) {
- me.request( 'add-file', [ files ]);
- });
-
- // 检测文件是否全部允许添加。
- dnd.on( 'accept', function( items ) {
- return me.owner.trigger( 'dndAccept', items );
- });
-
- dnd.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.dnd && this.dnd.destroy();
- }
- });
- });
-
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepaste',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function FilePaste( opts ) {
- opts = this.options = $.extend({}, opts );
- opts.container = $( opts.container || document.body );
- RuntimeClent.call( this, 'FilePaste' );
- }
-
- Base.inherits( RuntimeClent, {
- constructor: FilePaste,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( FilePaste.prototype );
-
- return FilePaste;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/filepaste',[
- 'base',
- 'uploader',
- 'lib/filepaste',
- 'widgets/widget'
- ], function( Base, Uploader, FilePaste ) {
- var $ = Base.$;
-
- /**
- * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
- * @namespace options
- * @for Uploader
- */
- return Uploader.register({
- name: 'paste',
-
- init: function( opts ) {
-
- if ( !opts.paste ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- container: opts.paste,
- accept: opts.accept
- }),
- paste;
-
- this.paste = paste = new FilePaste( options );
-
- paste.once( 'ready', deferred.resolve );
- paste.on( 'paste', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- paste.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.paste && this.paste.destroy();
- }
- });
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepaste',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function FilePaste( opts ) {
+ opts = this.options = $.extend({}, opts );
+ opts.container = $( opts.container || document.body );
+ RuntimeClent.call( this, 'FilePaste' );
+ }
+
+ Base.inherits( RuntimeClent, {
+ constructor: FilePaste,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( FilePaste.prototype );
+
+ return FilePaste;
});
- /**
- * @fileOverview Blob
- */
- define('lib/blob',[
- 'base',
- 'runtime/client'
- ], function( Base, RuntimeClient ) {
-
- function Blob( ruid, source ) {
- var me = this;
-
- me.source = source;
- me.ruid = ruid;
- this.size = source.size || 0;
-
- // 如果没有指定 mimetype, 但是知道文件后缀。
- if ( !source.type && this.ext &&
- ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
- this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
- } else {
- this.type = source.type || 'application/octet-stream';
- }
-
- RuntimeClient.call( me, 'Blob' );
- this.uid = source.uid || this.uid;
-
- if ( ruid ) {
- me.connectRuntime( ruid );
- }
- }
-
- Base.inherits( RuntimeClient, {
- constructor: Blob,
-
- slice: function( start, end ) {
- return this.exec( 'slice', start, end );
- },
-
- getSource: function() {
- return this.source;
- }
- });
-
- return Blob;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/filepaste',[
+ 'base',
+ 'uploader',
+ 'lib/filepaste',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePaste ) {
+ var $ = Base.$;
+
+ /**
+ * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
+ * @namespace options
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'paste',
+
+ init: function( opts ) {
+
+ if ( !opts.paste ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ container: opts.paste,
+ accept: opts.accept
+ }),
+ paste;
+
+ this.paste = paste = new FilePaste( options );
+
+ paste.once( 'ready', deferred.resolve );
+ paste.on( 'paste', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ paste.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.paste && this.paste.destroy();
+ }
+ });
});
- /**
- * 为了统一化Flash的File和HTML5的File而存在。
- * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
- * @fileOverview File
- */
- define('lib/file',[
- 'base',
- 'lib/blob'
- ], function( Base, Blob ) {
-
- var uid = 1,
- rExt = /\.([^.]+)$/;
-
- function File( ruid, file ) {
- var ext;
-
- this.name = file.name || ('untitled' + uid++);
- ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
-
- // todo 支持其他类型文件的转换。
- // 如果有 mimetype, 但是文件名里面没有找出后缀规律
- if ( !ext && file.type ) {
- ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
- RegExp.$1.toLowerCase() : '';
- this.name += '.' + ext;
- }
-
- this.ext = ext;
- this.lastModifiedDate = file.lastModifiedDate ||
- file.lastModified && new Date(file.lastModified).toLocaleString() ||
- (new Date()).toLocaleString();
-
- Blob.apply( this, arguments );
- }
-
- return Base.inherits( Blob, File );
+ /**
+ * @fileOverview Blob
+ */
+ define('lib/blob',[
+ 'base',
+ 'runtime/client'
+ ], function( Base, RuntimeClient ) {
+
+ function Blob( ruid, source ) {
+ var me = this;
+
+ me.source = source;
+ me.ruid = ruid;
+ this.size = source.size || 0;
+
+ // 如果没有指定 mimetype, 但是知道文件后缀。
+ if ( !source.type && this.ext &&
+ ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
+ this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
+ } else {
+ this.type = source.type || 'application/octet-stream';
+ }
+
+ RuntimeClient.call( me, 'Blob' );
+ this.uid = source.uid || this.uid;
+
+ if ( ruid ) {
+ me.connectRuntime( ruid );
+ }
+ }
+
+ Base.inherits( RuntimeClient, {
+ constructor: Blob,
+
+ slice: function( start, end ) {
+ return this.exec( 'slice', start, end );
+ },
+
+ getSource: function() {
+ return this.source;
+ }
+ });
+
+ return Blob;
});
+ /**
+ * 为了统一化Flash的File和HTML5的File而存在。
+ * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
+ * @fileOverview File
+ */
+ define('lib/file',[
+ 'base',
+ 'lib/blob'
+ ], function( Base, Blob ) {
+
+ var uid = 1,
+ rExt = /\.([^.]+)$/;
+
+ function File( ruid, file ) {
+ var ext;
+
+ this.name = file.name || ('untitled' + uid++);
+ ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
+
+ // todo 支持其他类型文件的转换。
+ // 如果有 mimetype, 但是文件名里面没有找出后缀规律
+ if ( !ext && file.type ) {
+ ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
+ RegExp.$1.toLowerCase() : '';
+ this.name += '.' + ext;
+ }
+
+ this.ext = ext;
+ this.lastModifiedDate = file.lastModifiedDate ||
+ file.lastModified && new Date(file.lastModified).toLocaleString() ||
+ (new Date()).toLocaleString();
+
+ Blob.apply( this, arguments );
+ }
+
+ return Base.inherits( Blob, File );
+ });
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepicker',[
- 'base',
- 'runtime/client',
- 'lib/file'
- ], function( Base, RuntimeClient, File ) {
-
- var $ = Base.$;
-
- function FilePicker( opts ) {
- opts = this.options = $.extend({}, FilePicker.options, opts );
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepicker',[
+ 'base',
+ 'runtime/client',
+ 'lib/file'
+ ], function( Base, RuntimeClient, File ) {
+
+ var $ = Base.$;
+
+ function FilePicker( opts ) {
+ opts = this.options = $.extend({}, FilePicker.options, opts );
+
+ opts.container = $( opts.id );
+
+ if ( !opts.container.length ) {
+ throw new Error('按钮指定错误');
+ }
+
+ opts.innerHTML = opts.innerHTML || opts.label ||
+ opts.container.html() || '';
+
+ opts.button = $( opts.button || document.createElement('div') );
+ opts.button.html( opts.innerHTML );
+ opts.container.html( opts.button );
+
+ RuntimeClient.call( this, 'FilePicker', true );
+ }
+
+ FilePicker.options = {
+ button: null,
+ container: null,
+ label: null,
+ innerHTML: null,
+ multiple: true,
+ accept: null,
+ name: 'file',
+ style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
+ };
+
+ Base.inherits( RuntimeClient, {
+ constructor: FilePicker,
+
+ init: function() {
+ var me = this,
+ opts = me.options,
+ button = opts.button,
+ style = opts.style;
+
+ if (style)
+ button.addClass('webuploader-pick');
+
+ me.on( 'all', function( type ) {
+ var files;
+
+ switch ( type ) {
+ case 'mouseenter':
+ if (style)
+ button.addClass('webuploader-pick-hover');
+ break;
+
+ case 'mouseleave':
+ if (style)
+ button.removeClass('webuploader-pick-hover');
+ break;
+
+ case 'change':
+ files = me.exec('getFiles');
+ me.trigger( 'select', $.map( files, function( file ) {
+ file = new File( me.getRuid(), file );
+
+ // 记录来源。
+ file._refer = opts.container;
+ return file;
+ }), opts.container );
+ break;
+ }
+ });
+
+ me.connectRuntime( opts, function() {
+ me.refresh();
+ me.exec( 'init', opts );
+ me.trigger('ready');
+ });
+
+ this._resizeHandler = Base.bindFn( this.refresh, this );
+ $( window ).on( 'resize', this._resizeHandler );
+ },
+
+ refresh: function() {
+ var shimContainer = this.getRuntime().getContainer(),
+ button = this.options.button,
+ /*
+ width = button.outerWidth ?
+ button.outerWidth() : button.width(),
+
+ height = button.outerHeight ?
+ button.outerHeight() : button.height(),
+ */
+ width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
+ height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
+ pos = button.offset();
+
+ width && height && shimContainer.css({
+ bottom: 'auto',
+ right: 'auto',
+ width: width + 'px',
+ height: height + 'px'
+ }).offset( pos );
+ },
+
+ enable: function() {
+ var btn = this.options.button;
+
+ btn.removeClass('webuploader-pick-disable');
+ this.refresh();
+ },
+
+ disable: function() {
+ var btn = this.options.button;
+
+ this.getRuntime().getContainer().css({
+ top: '-99999px'
+ });
+
+ btn.addClass('webuploader-pick-disable');
+ },
+
+ destroy: function() {
+ var btn = this.options.button;
+ $( window ).off( 'resize', this._resizeHandler );
+ btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
+ 'webuploader-pick');
+ }
+ });
+
+ return FilePicker;
+ });
- opts.container = $( opts.id );
-
- if ( !opts.container.length ) {
- throw new Error('按钮指定错误');
- }
-
- opts.innerHTML = opts.innerHTML || opts.label ||
- opts.container.html() || '';
-
- opts.button = $( opts.button || document.createElement('div') );
- opts.button.html( opts.innerHTML );
- opts.container.html( opts.button );
-
- RuntimeClient.call( this, 'FilePicker', true );
- }
-
- FilePicker.options = {
- button: null,
- container: null,
- label: null,
- innerHTML: null,
- multiple: true,
- accept: null,
- name: 'file',
- style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
- };
-
- Base.inherits( RuntimeClient, {
- constructor: FilePicker,
-
- init: function() {
- var me = this,
- opts = me.options,
- button = opts.button,
- style = opts.style;
-
- if (style)
- button.addClass('webuploader-pick');
-
- me.on( 'all', function( type ) {
- var files;
-
- switch ( type ) {
- case 'mouseenter':
- if (style)
- button.addClass('webuploader-pick-hover');
- break;
-
- case 'mouseleave':
- if (style)
- button.removeClass('webuploader-pick-hover');
- break;
-
- case 'change':
- files = me.exec('getFiles');
- me.trigger( 'select', $.map( files, function( file ) {
- file = new File( me.getRuid(), file );
-
- // 记录来源。
- file._refer = opts.container;
- return file;
- }), opts.container );
- break;
- }
- });
-
- me.connectRuntime( opts, function() {
- me.refresh();
- me.exec( 'init', opts );
- me.trigger('ready');
- });
-
- this._resizeHandler = Base.bindFn( this.refresh, this );
- $( window ).on( 'resize', this._resizeHandler );
- },
-
- refresh: function() {
- var shimContainer = this.getRuntime().getContainer(),
- button = this.options.button,
- /*
- width = button.outerWidth ?
- button.outerWidth() : button.width(),
-
- height = button.outerHeight ?
- button.outerHeight() : button.height(),
- */
- width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
- height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
- pos = button.offset();
-
- width && height && shimContainer.css({
- bottom: 'auto',
- right: 'auto',
- width: width + 'px',
- height: height + 'px'
- }).offset( pos );
- },
-
- enable: function() {
- var btn = this.options.button;
-
- btn.removeClass('webuploader-pick-disable');
- this.refresh();
- },
-
- disable: function() {
- var btn = this.options.button;
-
- this.getRuntime().getContainer().css({
- top: '-99999px'
- });
-
- btn.addClass('webuploader-pick-disable');
- },
-
- destroy: function() {
- var btn = this.options.button;
- $( window ).off( 'resize', this._resizeHandler );
- btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
- 'webuploader-pick');
- }
- });
-
- return FilePicker;
+ /**
+ * @fileOverview 文件选择相关
+ */
+ define('widgets/filepicker',[
+ 'base',
+ 'uploader',
+ 'lib/filepicker',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePicker ) {
+ var $ = Base.$;
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Selector | Object} [pick=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 指定选择文件的按钮容器,不指定则不创建按钮。
+ *
+ * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
+ * * `label` {String} 请采用 `innerHTML` 代替
+ * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
+ * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
+ */
+ pick: null,
+
+ /**
+ * @property {Array} [accept=null]
+ * @namespace options
+ * @for Uploader
+ * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
+ *
+ * * `title` {String} 文字描述
+ * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
+ * * `mimeTypes` {String} 多个用逗号分割。
+ *
+ * 如:
+ *
+ * ```
+ * {
+ * title: 'Images',
+ * extensions: 'gif,jpg,jpeg,bmp,png',
+ * mimeTypes: 'image/*'
+ * }
+ * ```
+ */
+ accept: null/*{
+ title: 'Images',
+ extensions: 'gif,jpg,jpeg,bmp,png',
+ mimeTypes: 'image/*'
+ }*/
+ });
+
+ return Uploader.register({
+ name: 'picker',
+
+ init: function( opts ) {
+ this.pickers = [];
+ return opts.pick && this.addBtn( opts.pick );
+ },
+
+ refresh: function() {
+ $.each( this.pickers, function() {
+ this.refresh();
+ });
+ },
+
+ /**
+ * @method addButton
+ * @for Uploader
+ * @grammar addButton( pick ) => Promise
+ * @description
+ * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
+ * @example
+ * uploader.addButton({
+ * id: '#btnContainer',
+ * innerHTML: '选择文件'
+ * });
+ */
+ addBtn: function( pick ) {
+ var me = this,
+ opts = me.options,
+ accept = opts.accept,
+ promises = [];
+
+ if ( !pick ) {
+ return;
+ }
+
+ $.isPlainObject( pick ) || (pick = {
+ id: pick
+ });
+
+ $( pick.id ).each(function() {
+ var options, picker, deferred;
+
+ deferred = Base.Deferred();
+
+ options = $.extend({}, pick, {
+ accept: $.isPlainObject( accept ) ? [ accept ] : accept,
+ swf: opts.swf,
+ runtimeOrder: opts.runtimeOrder,
+ id: this
+ });
+
+ picker = new FilePicker( options );
+
+ picker.once( 'ready', deferred.resolve );
+ picker.on( 'select', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ picker.on('dialogopen', function() {
+ me.owner.trigger('dialogOpen', picker.button);
+ });
+ picker.init();
+
+ me.pickers.push( picker );
+
+ promises.push( deferred.promise() );
+ });
+
+ return Base.when.apply( Base, promises );
+ },
+
+ disable: function() {
+ $.each( this.pickers, function() {
+ this.disable();
+ });
+ },
+
+ enable: function() {
+ $.each( this.pickers, function() {
+ this.enable();
+ });
+ },
+
+ destroy: function() {
+ $.each( this.pickers, function() {
+ this.destroy();
+ });
+ this.pickers = null;
+ }
+ });
});
-
- /**
- * @fileOverview 文件选择相关
- */
- define('widgets/filepicker',[
- 'base',
- 'uploader',
- 'lib/filepicker',
- 'widgets/widget'
- ], function( Base, Uploader, FilePicker ) {
- var $ = Base.$;
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Selector | Object} [pick=undefined]
- * @namespace options
- * @for Uploader
- * @description 指定选择文件的按钮容器,不指定则不创建按钮。
- *
- * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
- * * `label` {String} 请采用 `innerHTML` 代替
- * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
- * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
- */
- pick: null,
-
- /**
- * @property {Array} [accept=null]
- * @namespace options
- * @for Uploader
- * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
- *
- * * `title` {String} 文字描述
- * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
- * * `mimeTypes` {String} 多个用逗号分割。
- *
- * 如:
- *
- * ```
- * {
- * title: 'Images',
- * extensions: 'gif,jpg,jpeg,bmp,png',
- * mimeTypes: 'image/*'
- * }
- * ```
- */
- accept: null/*{
- title: 'Images',
- extensions: 'gif,jpg,jpeg,bmp,png',
- mimeTypes: 'image/*'
- }*/
- });
-
- return Uploader.register({
- name: 'picker',
-
- init: function( opts ) {
- this.pickers = [];
- return opts.pick && this.addBtn( opts.pick );
- },
-
- refresh: function() {
- $.each( this.pickers, function() {
- this.refresh();
- });
- },
-
- /**
- * @method addButton
- * @for Uploader
- * @grammar addButton( pick ) => Promise
- * @description
- * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
- * @example
- * uploader.addButton({
- * id: '#btnContainer',
- * innerHTML: '选择文件'
- * });
- */
- addBtn: function( pick ) {
- var me = this,
- opts = me.options,
- accept = opts.accept,
- promises = [];
-
- if ( !pick ) {
- return;
- }
-
- $.isPlainObject( pick ) || (pick = {
- id: pick
- });
-
- $( pick.id ).each(function() {
- var options, picker, deferred;
-
- deferred = Base.Deferred();
-
- options = $.extend({}, pick, {
- accept: $.isPlainObject( accept ) ? [ accept ] : accept,
- swf: opts.swf,
- runtimeOrder: opts.runtimeOrder,
- id: this
- });
-
- picker = new FilePicker( options );
-
- picker.once( 'ready', deferred.resolve );
- picker.on( 'select', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- picker.on('dialogopen', function() {
- me.owner.trigger('dialogOpen', picker.button);
- });
- picker.init();
-
- me.pickers.push( picker );
-
- promises.push( deferred.promise() );
- });
-
- return Base.when.apply( Base, promises );
- },
-
- disable: function() {
- $.each( this.pickers, function() {
- this.disable();
- });
- },
-
- enable: function() {
- $.each( this.pickers, function() {
- this.enable();
- });
- },
-
- destroy: function() {
- $.each( this.pickers, function() {
- this.destroy();
- });
- this.pickers = null;
- }
- });
+ /**
+ * @fileOverview Image
+ */
+ define('lib/image',[
+ 'base',
+ 'runtime/client',
+ 'lib/blob'
+ ], function( Base, RuntimeClient, Blob ) {
+ var $ = Base.$;
+
+ // 构造器。
+ function Image( opts ) {
+ this.options = $.extend({}, Image.options, opts );
+ RuntimeClient.call( this, 'Image' );
+
+ this.on( 'load', function() {
+ this._info = this.exec('info');
+ this._meta = this.exec('meta');
+ });
+ }
+
+ // 默认选项。
+ Image.options = {
+
+ // 默认的图片处理质量
+ quality: 90,
+
+ // 是否裁剪
+ crop: false,
+
+ // 是否保留头部信息
+ preserveHeaders: false,
+
+ // 是否允许放大。
+ allowMagnify: false
+ };
+
+ // 继承RuntimeClient.
+ Base.inherits( RuntimeClient, {
+ constructor: Image,
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._meta = val;
+ return this;
+ }
+
+ // getter
+ return this._meta;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ ruid = blob.getRuid();
+
+ this.connectRuntime( ruid, function() {
+ me.exec( 'init', me.options );
+ me.exec( 'loadFromBlob', blob );
+ });
+ },
+
+ resize: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'resize' ].concat( args ) );
+ },
+
+ crop: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'crop' ].concat( args ) );
+ },
+
+ getAsDataUrl: function( type ) {
+ return this.exec( 'getAsDataUrl', type );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this.exec( 'getAsBlob', type );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
+
+ return Image;
});
- /**
- * @fileOverview Image
- */
- define('lib/image',[
- 'base',
- 'runtime/client',
- 'lib/blob'
- ], function( Base, RuntimeClient, Blob ) {
- var $ = Base.$;
-
- // 构造器。
- function Image( opts ) {
- this.options = $.extend({}, Image.options, opts );
- RuntimeClient.call( this, 'Image' );
-
- this.on( 'load', function() {
- this._info = this.exec('info');
- this._meta = this.exec('meta');
- });
- }
-
- // 默认选项。
- Image.options = {
-
- // 默认的图片处理质量
- quality: 90,
-
- // 是否裁剪
- crop: false,
-
- // 是否保留头部信息
- preserveHeaders: false,
-
- // 是否允许放大。
- allowMagnify: false
- };
-
- // 继承RuntimeClient.
- Base.inherits( RuntimeClient, {
- constructor: Image,
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._meta = val;
- return this;
- }
-
- // getter
- return this._meta;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- ruid = blob.getRuid();
-
- this.connectRuntime( ruid, function() {
- me.exec( 'init', me.options );
- me.exec( 'loadFromBlob', blob );
- });
- },
-
- resize: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'resize' ].concat( args ) );
- },
-
- crop: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'crop' ].concat( args ) );
- },
-
- getAsDataUrl: function( type ) {
- return this.exec( 'getAsDataUrl', type );
- },
-
- getAsBlob: function( type ) {
- var blob = this.exec( 'getAsBlob', type );
-
- return new Blob( this.getRuid(), blob );
- }
- });
-
- return Image;
+ /**
+ * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
+ */
+ define('widgets/image',[
+ 'base',
+ 'uploader',
+ 'lib/image',
+ 'widgets/widget'
+ ], function( Base, Uploader, Image ) {
+
+ var $ = Base.$,
+ throttle;
+
+ // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
+ throttle = (function( max ) {
+ var occupied = 0,
+ waiting = [],
+ tick = function() {
+ var item;
+
+ while ( waiting.length && occupied < max ) {
+ item = waiting.shift();
+ occupied += item[ 0 ];
+ item[ 1 ]();
+ }
+ };
+
+ return function( emiter, size, cb ) {
+ waiting.push([ size, cb ]);
+ emiter.once( 'destroy', function() {
+ occupied -= size;
+ setTimeout( tick, 1 );
+ });
+ setTimeout( tick, 1 );
+ };
+ })( 5 * 1024 * 1024 );
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Object} [thumb]
+ * @namespace options
+ * @for Uploader
+ * @description 配置生成缩略图的选项。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 110,
+ * height: 110,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 70,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: true,
+ *
+ * // 是否允许裁剪。
+ * crop: true,
+ *
+ * // 为空的话则保留原有图片格式。
+ * // 否则强制转换成指定的类型。
+ * type: 'image/jpeg'
+ * }
+ * ```
+ */
+ thumb: {
+ width: 110,
+ height: 110,
+ quality: 70,
+ allowMagnify: true,
+ crop: true,
+ preserveHeaders: false,
+
+ // 为空的话则保留原有图片格式。
+ // 否则强制转换成指定的类型。
+ // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
+ // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
+ type: 'image/jpeg'
+ },
+
+ /**
+ * @property {Object} [compress]
+ * @namespace options
+ * @for Uploader
+ * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 1600,
+ * height: 1600,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 90,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: false,
+ *
+ * // 是否允许裁剪。
+ * crop: false,
+ *
+ * // 是否保留头部meta信息。
+ * preserveHeaders: true,
+ *
+ * // 如果发现压缩后文件大小比原来还大,则使用原来图片
+ * // 此属性可能会影响图片自动纠正功能
+ * noCompressIfLarger: false,
+ *
+ * // 单位字节,如果图片大小小于此值,不会采用压缩。
+ * compressSize: 0
+ * }
+ * ```
+ */
+ compress: {
+ width: 1600,
+ height: 1600,
+ quality: 90,
+ allowMagnify: false,
+ crop: false,
+ preserveHeaders: true
+ }
+ });
+
+ return Uploader.register({
+
+ name: 'image',
+
+
+ /**
+ * 生成缩略图,此过程为异步,所以需要传入`callback`。
+ * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
+ *
+ * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
+ *
+ * `callback`中可以接收到两个参数。
+ * * 第一个为error,如果生成缩略图有错误,此error将为真。
+ * * 第二个为ret, 缩略图的Data URL值。
+ *
+ * **注意**
+ * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
+ * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
+ *
+ * @method makeThumb
+ * @grammar makeThumb( file, callback ) => undefined
+ * @grammar makeThumb( file, callback, width, height ) => undefined
+ * @for Uploader
+ * @example
+ *
+ * uploader.on( 'fileQueued', function( file ) {
+ * var $li = ...;
+ *
+ * uploader.makeThumb( file, function( error, ret ) {
+ * if ( error ) {
+ * $li.text('预览错误');
+ * } else {
+ * $li.append('');
+ * }
+ * });
+ *
+ * });
+ */
+ makeThumb: function( file, cb, width, height ) {
+ var opts, image;
+
+ file = this.request( 'get-file', file );
+
+ // 只预览图片格式。
+ if ( !file.type.match( /^image/ ) ) {
+ cb( true );
+ return;
+ }
+
+ opts = $.extend({}, this.options.thumb );
+
+ // 如果传入的是object.
+ if ( $.isPlainObject( width ) ) {
+ opts = $.extend( opts, width );
+ width = null;
+ }
+
+ width = width || opts.width;
+ height = height || opts.height;
+
+ image = new Image( opts );
+
+ image.once( 'load', function() {
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ // 当 resize 完后
+ image.once( 'complete', function() {
+ cb( false, image.getAsDataUrl( opts.type ) );
+ image.destroy();
+ });
+
+ image.once( 'error', function( reason ) {
+ cb( reason || true );
+ image.destroy();
+ });
+
+ throttle( image, file.source.size, function() {
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+ image.loadFromBlob( file.source );
+ });
+ },
+
+ beforeSendFile: function( file ) {
+ var opts = this.options.compress || this.options.resize,
+ compressSize = opts && opts.compressSize || 0,
+ noCompressIfLarger = opts && opts.noCompressIfLarger || false,
+ image, deferred;
+
+ file = this.request( 'get-file', file );
+
+ // 只压缩 jpeg 图片格式。
+ // gif 可能会丢失针
+ // bmp png 基本上尺寸都不大,且压缩比比较小。
+ if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
+ file.size < compressSize ||
+ file._compressed ) {
+ return;
+ }
+
+ opts = $.extend({}, opts );
+ deferred = Base.Deferred();
+
+ image = new Image( opts );
+
+ deferred.always(function() {
+ image.destroy();
+ image = null;
+ });
+ image.once( 'error', deferred.reject );
+ image.once( 'load', function() {
+ var width = opts.width,
+ height = opts.height;
+
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ image.once( 'complete', function() {
+ var blob, size;
+
+ // 移动端 UC / qq 浏览器的无图模式下
+ // ctx.getImageData 处理大图的时候会报 Exception
+ // INDEX_SIZE_ERR: DOM Exception 1
+ try {
+ blob = image.getAsBlob( opts.type );
+
+ size = file.size;
+
+ // 如果压缩后,比原来还大则不用压缩后的。
+ if ( !noCompressIfLarger || blob.size < size ) {
+ // file.source.destroy && file.source.destroy();
+ file.source = blob;
+ file.size = blob.size;
+
+ file.trigger( 'resize', blob.size, size );
+ }
+
+ // 标记,避免重复压缩。
+ file._compressed = true;
+ deferred.resolve();
+ } catch ( e ) {
+ // 出错了直接继续,让其上传原始图片
+ deferred.resolve();
+ }
+ });
+
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+
+ image.loadFromBlob( file.source );
+ return deferred.promise();
+ }
+ });
});
- /**
- * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
- */
- define('widgets/image',[
- 'base',
- 'uploader',
- 'lib/image',
- 'widgets/widget'
- ], function( Base, Uploader, Image ) {
-
- var $ = Base.$,
- throttle;
-
- // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
- throttle = (function( max ) {
- var occupied = 0,
- waiting = [],
- tick = function() {
- var item;
-
- while ( waiting.length && occupied < max ) {
- item = waiting.shift();
- occupied += item[ 0 ];
- item[ 1 ]();
- }
- };
-
- return function( emiter, size, cb ) {
- waiting.push([ size, cb ]);
- emiter.once( 'destroy', function() {
- occupied -= size;
- setTimeout( tick, 1 );
- });
- setTimeout( tick, 1 );
- };
- })( 5 * 1024 * 1024 );
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Object} [thumb]
- * @namespace options
- * @for Uploader
- * @description 配置生成缩略图的选项。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 110,
- * height: 110,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 70,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: true,
- *
- * // 是否允许裁剪。
- * crop: true,
- *
- * // 为空的话则保留原有图片格式。
- * // 否则强制转换成指定的类型。
- * type: 'image/jpeg'
- * }
- * ```
- */
- thumb: {
- width: 110,
- height: 110,
- quality: 70,
- allowMagnify: true,
- crop: true,
- preserveHeaders: false,
-
- // 为空的话则保留原有图片格式。
- // 否则强制转换成指定的类型。
- // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
- // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
- type: 'image/jpeg'
- },
-
- /**
- * @property {Object} [compress]
- * @namespace options
- * @for Uploader
- * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 1600,
- * height: 1600,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 90,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: false,
- *
- * // 是否允许裁剪。
- * crop: false,
- *
- * // 是否保留头部meta信息。
- * preserveHeaders: true,
- *
- * // 如果发现压缩后文件大小比原来还大,则使用原来图片
- * // 此属性可能会影响图片自动纠正功能
- * noCompressIfLarger: false,
- *
- * // 单位字节,如果图片大小小于此值,不会采用压缩。
- * compressSize: 0
- * }
- * ```
- */
- compress: {
- width: 1600,
- height: 1600,
- quality: 90,
- allowMagnify: false,
- crop: false,
- preserveHeaders: true
- }
- });
-
- return Uploader.register({
-
- name: 'image',
-
-
- /**
- * 生成缩略图,此过程为异步,所以需要传入`callback`。
- * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
- *
- * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
- *
- * `callback`中可以接收到两个参数。
- * * 第一个为error,如果生成缩略图有错误,此error将为真。
- * * 第二个为ret, 缩略图的Data URL值。
- *
- * **注意**
- * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
- * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
- *
- * @method makeThumb
- * @grammar makeThumb( file, callback ) => undefined
- * @grammar makeThumb( file, callback, width, height ) => undefined
- * @for Uploader
- * @example
- *
- * uploader.on( 'fileQueued', function( file ) {
- * var $li = ...;
- *
- * uploader.makeThumb( file, function( error, ret ) {
- * if ( error ) {
- * $li.text('预览错误');
- * } else {
- * $li.append('');
- * }
- * });
- *
- * });
- */
- makeThumb: function( file, cb, width, height ) {
- var opts, image;
-
- file = this.request( 'get-file', file );
-
- // 只预览图片格式。
- if ( !file.type.match( /^image/ ) ) {
- cb( true );
- return;
- }
-
- opts = $.extend({}, this.options.thumb );
-
- // 如果传入的是object.
- if ( $.isPlainObject( width ) ) {
- opts = $.extend( opts, width );
- width = null;
- }
-
- width = width || opts.width;
- height = height || opts.height;
-
- image = new Image( opts );
-
- image.once( 'load', function() {
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- // 当 resize 完后
- image.once( 'complete', function() {
- cb( false, image.getAsDataUrl( opts.type ) );
- image.destroy();
- });
-
- image.once( 'error', function( reason ) {
- cb( reason || true );
- image.destroy();
- });
-
- throttle( image, file.source.size, function() {
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
- image.loadFromBlob( file.source );
- });
- },
-
- beforeSendFile: function( file ) {
- var opts = this.options.compress || this.options.resize,
- compressSize = opts && opts.compressSize || 0,
- noCompressIfLarger = opts && opts.noCompressIfLarger || false,
- image, deferred;
-
- file = this.request( 'get-file', file );
-
- // 只压缩 jpeg 图片格式。
- // gif 可能会丢失针
- // bmp png 基本上尺寸都不大,且压缩比比较小。
- if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
- file.size < compressSize ||
- file._compressed ) {
- return;
- }
-
- opts = $.extend({}, opts );
- deferred = Base.Deferred();
-
- image = new Image( opts );
-
- deferred.always(function() {
- image.destroy();
- image = null;
- });
- image.once( 'error', deferred.reject );
- image.once( 'load', function() {
- var width = opts.width,
- height = opts.height;
-
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- image.once( 'complete', function() {
- var blob, size;
-
- // 移动端 UC / qq 浏览器的无图模式下
- // ctx.getImageData 处理大图的时候会报 Exception
- // INDEX_SIZE_ERR: DOM Exception 1
- try {
- blob = image.getAsBlob( opts.type );
-
- size = file.size;
-
- // 如果压缩后,比原来还大则不用压缩后的。
- if ( !noCompressIfLarger || blob.size < size ) {
- // file.source.destroy && file.source.destroy();
- file.source = blob;
- file.size = blob.size;
-
- file.trigger( 'resize', blob.size, size );
- }
-
- // 标记,避免重复压缩。
- file._compressed = true;
- deferred.resolve();
- } catch ( e ) {
- // 出错了直接继续,让其上传原始图片
- deferred.resolve();
- }
- });
+ /**
+ * @fileOverview 文件属性封装
+ */
+ define('file',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ idPrefix = 'WU_FILE_',
+ idSuffix = 0,
+ rExt = /\.([^.]+)$/,
+ statusMap = {};
+
+ function gid() {
+ return idPrefix + idSuffix++;
+ }
+
+ /**
+ * 文件类
+ * @class File
+ * @constructor 构造函数
+ * @grammar new File( source ) => File
+ * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
+ */
+ function WUFile( source ) {
+
+ /**
+ * 文件名,包括扩展名(后缀)
+ * @property name
+ * @type {string}
+ */
+ this.name = source.name || 'Untitled';
+
+ /**
+ * 文件体积(字节)
+ * @property size
+ * @type {uint}
+ * @default 0
+ */
+ this.size = source.size || 0;
+
+ /**
+ * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
+ * @property type
+ * @type {string}
+ * @default 'application/octet-stream'
+ */
+ this.type = source.type || 'application/octet-stream';
+
+ /**
+ * 文件最后修改日期
+ * @property lastModifiedDate
+ * @type {int}
+ * @default 当前时间戳
+ */
+ this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
+
+ /**
+ * 文件ID,每个对象具有唯一ID,与文件名无关
+ * @property id
+ * @type {string}
+ */
+ this.id = gid();
+
+ /**
+ * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
+ * @property ext
+ * @type {string}
+ */
+ this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
+
+
+ /**
+ * 状态文字说明。在不同的status语境下有不同的用途。
+ * @property statusText
+ * @type {string}
+ */
+ this.statusText = '';
+
+ // 存储文件状态,防止通过属性直接修改
+ statusMap[ this.id ] = WUFile.Status.INITED;
+
+ this.source = source;
+ this.loaded = 0;
+
+ this.on( 'error', function( msg ) {
+ this.setStatus( WUFile.Status.ERROR, msg );
+ });
+ }
+
+ $.extend( WUFile.prototype, {
+
+ /**
+ * 设置状态,状态变化时会触发`change`事件。
+ * @method setStatus
+ * @grammar setStatus( status[, statusText] );
+ * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
+ * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
+ */
+ setStatus: function( status, text ) {
+
+ var prevStatus = statusMap[ this.id ];
+
+ typeof text !== 'undefined' && (this.statusText = text);
+
+ if ( status !== prevStatus ) {
+ statusMap[ this.id ] = status;
+ /**
+ * 文件状态变化
+ * @event statuschange
+ */
+ this.trigger( 'statuschange', status, prevStatus );
+ }
+
+ },
+
+ /**
+ * 获取文件状态
+ * @return {File.Status}
+ * @example
+ 文件状态具体包括以下几种类型:
+ {
+ // 初始化
+ INITED: 0,
+ // 已入队列
+ QUEUED: 1,
+ // 正在上传
+ PROGRESS: 2,
+ // 上传出错
+ ERROR: 3,
+ // 上传成功
+ COMPLETE: 4,
+ // 上传取消
+ CANCELLED: 5
+ }
+ */
+ getStatus: function() {
+ return statusMap[ this.id ];
+ },
+
+ /**
+ * 获取文件原始信息。
+ * @return {*}
+ */
+ getSource: function() {
+ return this.source;
+ },
+
+ destroy: function() {
+ this.off();
+ delete statusMap[ this.id ];
+ }
+ });
+
+ Mediator.installTo( WUFile.prototype );
+
+ /**
+ * 文件状态值,具体包括以下几种类型:
+ * * `inited` 初始状态
+ * * `queued` 已经进入队列, 等待上传
+ * * `progress` 上传中
+ * * `complete` 上传完成。
+ * * `error` 上传出错,可重试
+ * * `interrupt` 上传中断,可续传。
+ * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
+ * * `cancelled` 文件被移除。
+ * @property {Object} Status
+ * @namespace File
+ * @class File
+ * @static
+ */
+ WUFile.Status = {
+ INITED: 'inited', // 初始状态
+ QUEUED: 'queued', // 已经进入队列, 等待上传
+ PROGRESS: 'progress', // 上传中
+ ERROR: 'error', // 上传出错,可重试
+ COMPLETE: 'complete', // 上传完成。
+ CANCELLED: 'cancelled', // 上传取消。
+ INTERRUPT: 'interrupt', // 上传中断,可续传。
+ INVALID: 'invalid' // 文件不合格,不能重试上传。
+ };
+
+ return WUFile;
+ });
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
+ /**
+ * @fileOverview 文件队列
+ */
+ define('queue',[
+ 'base',
+ 'mediator',
+ 'file'
+ ], function( Base, Mediator, WUFile ) {
+
+ var $ = Base.$,
+ STATUS = WUFile.Status;
+
+ /**
+ * 文件队列, 用来存储各个状态中的文件。
+ * @class Queue
+ * @extends Mediator
+ */
+ function Queue() {
+
+ /**
+ * 统计文件数。
+ * * `numOfQueue` 队列中的文件数。
+ * * `numOfSuccess` 上传成功的文件数
+ * * `numOfCancel` 被取消的文件数
+ * * `numOfProgress` 正在上传中的文件数
+ * * `numOfUploadFailed` 上传错误的文件数。
+ * * `numOfInvalid` 无效的文件数。
+ * * `numOfDeleted` 被移除的文件数。
+ * * `numOfInterrupt` 被中断的文件数。
+ * @property {Object} stats
+ */
+ this.stats = {
+ numOfQueue: 0,
+ numOfSuccess: 0,
+ numOfCancel: 0,
+ numOfProgress: 0,
+ numOfUploadFailed: 0,
+ numOfInvalid: 0,
+ numOfDeleted: 0,
+ numOfInterrupt: 0
+ };
+
+ // 上传队列,仅包括等待上传的文件
+ this._queue = [];
+
+ // 存储所有文件
+ this._map = {};
+ }
+
+ $.extend( Queue.prototype, {
+
+ /**
+ * 将新文件加入对队列尾部
+ *
+ * @method append
+ * @param {File} file 文件对象
+ */
+ append: function( file ) {
+ this._queue.push( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 将新文件加入对队列头部
+ *
+ * @method prepend
+ * @param {File} file 文件对象
+ */
+ prepend: function( file ) {
+ this._queue.unshift( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 获取文件对象
+ *
+ * @method getFile
+ * @param {String} fileId 文件ID
+ * @return {File}
+ */
+ getFile: function( fileId ) {
+ if ( typeof fileId !== 'string' ) {
+ return fileId;
+ }
+ return this._map[ fileId ];
+ },
+
+ /**
+ * 从队列中取出一个指定状态的文件。
+ * @grammar fetch( status ) => File
+ * @method fetch
+ * @param {String} status [文件状态值](#WebUploader:File:File.Status)
+ * @return {File} [File](#WebUploader:File)
+ */
+ fetch: function( status ) {
+ var len = this._queue.length,
+ i, file;
+
+ status = status || STATUS.QUEUED;
+
+ for ( i = 0; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( status === file.getStatus() ) {
+ return file;
+ }
+ }
+
+ return null;
+ },
+
+ /**
+ * 对队列进行排序,能够控制文件上传顺序。
+ * @grammar sort( fn ) => undefined
+ * @method sort
+ * @param {Function} fn 排序方法
+ */
+ sort: function( fn ) {
+ if ( typeof fn === 'function' ) {
+ this._queue.sort( fn );
+ }
+ },
+
+ /**
+ * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
+ * @grammar getFiles( [status1[, status2 ...]] ) => Array
+ * @method getFiles
+ * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
+ */
+ getFiles: function() {
+ var sts = [].slice.call( arguments, 0 ),
+ ret = [],
+ i = 0,
+ len = this._queue.length,
+ file;
+
+ for ( ; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
+ continue;
+ }
+
+ ret.push( file );
+ }
+
+ return ret;
+ },
+
+ /**
+ * 在队列中删除文件。
+ * @grammar removeFile( file ) => Array
+ * @method removeFile
+ * @param {File} 文件对象。
+ */
+ removeFile: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( existing ) {
+ delete this._map[ file.id ];
+ this._delFile(file);
+ file.destroy();
+ this.stats.numOfDeleted++;
+
+ }
+ },
+
+ _fileAdded: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( !existing ) {
+ this._map[ file.id ] = file;
+
+ file.on( 'statuschange', function( cur, pre ) {
+ me._onFileStatusChange( cur, pre );
+ });
+ }
+ },
+
+ _delFile : function(file){
+ for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
+ if(this._queue[i] == file){
+ this._queue.splice(i,1);
+ break;
+ }
+ }
+ },
+
+ _onFileStatusChange: function( curStatus, preStatus ) {
+ var stats = this.stats;
+
+ switch ( preStatus ) {
+ case STATUS.PROGRESS:
+ stats.numOfProgress--;
+ break;
+
+ case STATUS.QUEUED:
+ stats.numOfQueue --;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed--;
+ break;
+
+ case STATUS.INVALID:
+ stats.numOfInvalid--;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt--;
+ break;
+ }
+
+ switch ( curStatus ) {
+ case STATUS.QUEUED:
+ stats.numOfQueue++;
+ break;
+
+ case STATUS.PROGRESS:
+ stats.numOfProgress++;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed++;
+ break;
+
+ case STATUS.COMPLETE:
+ stats.numOfSuccess++;
+ break;
+
+ case STATUS.CANCELLED:
+ stats.numOfCancel++;
+ break;
+
+
+ case STATUS.INVALID:
+ stats.numOfInvalid++;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt++;
+ break;
+ }
+ }
+
+ });
+
+ Mediator.installTo( Queue.prototype );
+
+ return Queue;
+ });
- image.loadFromBlob( file.source );
- return deferred.promise();
- }
- });
+ /**
+ * @fileOverview 队列
+ */
+ define('widgets/queue',[
+ 'base',
+ 'uploader',
+ 'queue',
+ 'file',
+ 'lib/file',
+ 'runtime/client',
+ 'widgets/widget'
+ ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
+
+ var $ = Base.$,
+ rExt = /\.\w+$/,
+ Status = WUFile.Status;
+
+ return Uploader.register({
+ name: 'queue',
+
+ init: function( opts ) {
+ var me = this,
+ deferred, len, i, item, arr, accept, runtime;
+
+ if ( $.isPlainObject( opts.accept ) ) {
+ opts.accept = [ opts.accept ];
+ }
+
+ // accept中的中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].extensions;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = '\\.' + arr.join(',')
+ .replace( /,/g, '$|\\.' )
+ .replace( /\*/g, '.*' ) + '$';
+ }
+
+ me.accept = new RegExp( accept, 'i' );
+ }
+
+ me.queue = new Queue();
+ me.stats = me.queue.stats;
+
+ // 如果当前不是html5运行时,那就算了。
+ // 不执行后续操作
+ if ( this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ // 创建一个 html5 运行时的 placeholder
+ // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
+ deferred = Base.Deferred();
+ this.placeholder = runtime = new RuntimeClient('Placeholder');
+ runtime.connectRuntime({
+ runtimeOrder: 'html5'
+ }, function() {
+ me._ruid = runtime.getRuid();
+ deferred.resolve();
+ });
+ return deferred.promise();
+ },
+
+
+ // 为了支持外部直接添加一个原生File对象。
+ _wrapFile: function( file ) {
+ if ( !(file instanceof WUFile) ) {
+
+ if ( !(file instanceof File) ) {
+ if ( !this._ruid ) {
+ throw new Error('Can\'t add external files.');
+ }
+ file = new File( this._ruid, file );
+ }
+
+ file = new WUFile( file );
+ }
+
+ return file;
+ },
+
+ // 判断文件是否可以被加入队列
+ acceptFile: function( file ) {
+ var invalid = !file || !file.size || this.accept &&
+
+ // 如果名字中有后缀,才做后缀白名单处理。
+ rExt.exec( file.name ) && !this.accept.test( file.name );
+
+ return !invalid;
+ },
+
+
+ /**
+ * @event beforeFileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
+ * @for Uploader
+ */
+
+ /**
+ * @event fileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列以后触发。
+ * @for Uploader
+ */
+
+ _addFile: function( file ) {
+ var me = this;
+
+ file = me._wrapFile( file );
+
+ // 不过类型判断允许不允许,先派送 `beforeFileQueued`
+ if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
+ return;
+ }
+
+ // 类型不匹配,则派送错误事件,并返回。
+ if ( !me.acceptFile( file ) ) {
+ me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
+ return;
+ }
+
+ me.queue.append( file );
+ me.owner.trigger( 'fileQueued', file );
+ return file;
+ },
+
+ getFile: function( fileId ) {
+ return this.queue.getFile( fileId );
+ },
+
+ /**
+ * @event filesQueued
+ * @param {File} files 数组,内容为原始File(lib/File)对象。
+ * @description 当一批文件添加进队列以后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @property {Boolean} [auto=false]
+ * @namespace options
+ * @for Uploader
+ * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
+ *
+ */
+
+ /**
+ * @method addFiles
+ * @grammar addFiles( file ) => undefined
+ * @grammar addFiles( [file1, file2 ...] ) => undefined
+ * @param {Array of File or File} [files] Files 对象 数组
+ * @description 添加文件到队列
+ * @for Uploader
+ */
+ addFile: function( files ) {
+ var me = this;
+
+ if ( !files.length ) {
+ files = [ files ];
+ }
+
+ files = $.map( files, function( file ) {
+ return me._addFile( file );
+ });
+
+ if ( files.length ) {
+
+ me.owner.trigger( 'filesQueued', files );
+
+ if ( me.options.auto ) {
+ setTimeout(function() {
+ me.request('start-upload');
+ }, 20 );
+ }
+ }
+ },
+
+ getStats: function() {
+ return this.stats;
+ },
+
+ /**
+ * @event fileDequeued
+ * @param {File} file File对象
+ * @description 当文件被移除队列后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method removeFile
+ * @grammar removeFile( file ) => undefined
+ * @grammar removeFile( id ) => undefined
+ * @grammar removeFile( file, true ) => undefined
+ * @grammar removeFile( id, true ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.removeFile( file );
+ * })
+ */
+ removeFile: function( file, remove ) {
+ var me = this;
+
+ file = file.id ? file : me.queue.getFile( file );
+
+ this.request( 'cancel-file', file );
+
+ if ( remove ) {
+ this.queue.removeFile( file );
+ }
+ },
+
+ /**
+ * @method getFiles
+ * @grammar getFiles() => Array
+ * @grammar getFiles( status1, status2, status... ) => Array
+ * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
+ * @for Uploader
+ * @example
+ * console.log( uploader.getFiles() ); // => all files
+ * console.log( uploader.getFiles('error') ) // => all error files.
+ */
+ getFiles: function() {
+ return this.queue.getFiles.apply( this.queue, arguments );
+ },
+
+ fetchFile: function() {
+ return this.queue.fetch.apply( this.queue, arguments );
+ },
+
+ /**
+ * @method retry
+ * @grammar retry() => undefined
+ * @grammar retry( file ) => undefined
+ * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
+ * @for Uploader
+ * @example
+ * function retry() {
+ * uploader.retry();
+ * }
+ */
+ retry: function( file, noForceStart ) {
+ var me = this,
+ files, i, len;
+
+ if ( file ) {
+ file = file.id ? file : me.queue.getFile( file );
+ file.setStatus( Status.QUEUED );
+ noForceStart || me.request('start-upload');
+ return;
+ }
+
+ files = me.queue.getFiles( Status.ERROR );
+ i = 0;
+ len = files.length;
+
+ for ( ; i < len; i++ ) {
+ file = files[ i ];
+ file.setStatus( Status.QUEUED );
+ }
+
+ me.request('start-upload');
+ },
+
+ /**
+ * @method sort
+ * @grammar sort( fn ) => undefined
+ * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
+ * @for Uploader
+ */
+ sortFiles: function() {
+ return this.queue.sort.apply( this.queue, arguments );
+ },
+
+ /**
+ * @event reset
+ * @description 当 uploader 被重置的时候触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method reset
+ * @grammar reset() => undefined
+ * @description 重置uploader。目前只重置了队列。
+ * @for Uploader
+ * @example
+ * uploader.reset();
+ */
+ reset: function() {
+ this.owner.trigger('reset');
+ this.queue = new Queue();
+ this.stats = this.queue.stats;
+ },
+
+ destroy: function() {
+ this.reset();
+ this.placeholder && this.placeholder.destroy();
+ }
+ });
+
});
- /**
- * @fileOverview 文件属性封装
- */
- define('file',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- idPrefix = 'WU_FILE_',
- idSuffix = 0,
- rExt = /\.([^.]+)$/,
- statusMap = {};
-
- function gid() {
- return idPrefix + idSuffix++;
- }
-
- /**
- * 文件类
- * @class File
- * @constructor 构造函数
- * @grammar new File( source ) => File
- * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
- */
- function WUFile( source ) {
-
- /**
- * 文件名,包括扩展名(后缀)
- * @property name
- * @type {string}
- */
- this.name = source.name || 'Untitled';
-
- /**
- * 文件体积(字节)
- * @property size
- * @type {uint}
- * @default 0
- */
- this.size = source.size || 0;
-
- /**
- * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
- * @property type
- * @type {string}
- * @default 'application/octet-stream'
- */
- this.type = source.type || 'application/octet-stream';
-
- /**
- * 文件最后修改日期
- * @property lastModifiedDate
- * @type {int}
- * @default 当前时间戳
- */
- this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
-
- /**
- * 文件ID,每个对象具有唯一ID,与文件名无关
- * @property id
- * @type {string}
- */
- this.id = gid();
-
- /**
- * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
- * @property ext
- * @type {string}
- */
- this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
-
-
- /**
- * 状态文字说明。在不同的status语境下有不同的用途。
- * @property statusText
- * @type {string}
- */
- this.statusText = '';
-
- // 存储文件状态,防止通过属性直接修改
- statusMap[ this.id ] = WUFile.Status.INITED;
-
- this.source = source;
- this.loaded = 0;
-
- this.on( 'error', function( msg ) {
- this.setStatus( WUFile.Status.ERROR, msg );
- });
- }
-
- $.extend( WUFile.prototype, {
-
- /**
- * 设置状态,状态变化时会触发`change`事件。
- * @method setStatus
- * @grammar setStatus( status[, statusText] );
- * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
- * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
- */
- setStatus: function( status, text ) {
-
- var prevStatus = statusMap[ this.id ];
-
- typeof text !== 'undefined' && (this.statusText = text);
-
- if ( status !== prevStatus ) {
- statusMap[ this.id ] = status;
- /**
- * 文件状态变化
- * @event statuschange
- */
- this.trigger( 'statuschange', status, prevStatus );
- }
-
- },
-
- /**
- * 获取文件状态
- * @return {File.Status}
- * @example
- 文件状态具体包括以下几种类型:
- {
- // 初始化
- INITED: 0,
- // 已入队列
- QUEUED: 1,
- // 正在上传
- PROGRESS: 2,
- // 上传出错
- ERROR: 3,
- // 上传成功
- COMPLETE: 4,
- // 上传取消
- CANCELLED: 5
- }
- */
- getStatus: function() {
- return statusMap[ this.id ];
- },
-
- /**
- * 获取文件原始信息。
- * @return {*}
- */
- getSource: function() {
- return this.source;
- },
-
- destroy: function() {
- this.off();
- delete statusMap[ this.id ];
- }
- });
-
- Mediator.installTo( WUFile.prototype );
-
- /**
- * 文件状态值,具体包括以下几种类型:
- * * `inited` 初始状态
- * * `queued` 已经进入队列, 等待上传
- * * `progress` 上传中
- * * `complete` 上传完成。
- * * `error` 上传出错,可重试
- * * `interrupt` 上传中断,可续传。
- * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
- * * `cancelled` 文件被移除。
- * @property {Object} Status
- * @namespace File
- * @class File
- * @static
- */
- WUFile.Status = {
- INITED: 'inited', // 初始状态
- QUEUED: 'queued', // 已经进入队列, 等待上传
- PROGRESS: 'progress', // 上传中
- ERROR: 'error', // 上传出错,可重试
- COMPLETE: 'complete', // 上传完成。
- CANCELLED: 'cancelled', // 上传取消。
- INTERRUPT: 'interrupt', // 上传中断,可续传。
- INVALID: 'invalid' // 文件不合格,不能重试上传。
- };
-
- return WUFile;
- });
-
- /**
- * @fileOverview 文件队列
- */
- define('queue',[
- 'base',
- 'mediator',
- 'file'
- ], function( Base, Mediator, WUFile ) {
-
- var $ = Base.$,
- STATUS = WUFile.Status;
-
- /**
- * 文件队列, 用来存储各个状态中的文件。
- * @class Queue
- * @extends Mediator
- */
- function Queue() {
-
- /**
- * 统计文件数。
- * * `numOfQueue` 队列中的文件数。
- * * `numOfSuccess` 上传成功的文件数
- * * `numOfCancel` 被取消的文件数
- * * `numOfProgress` 正在上传中的文件数
- * * `numOfUploadFailed` 上传错误的文件数。
- * * `numOfInvalid` 无效的文件数。
- * * `numOfDeleted` 被移除的文件数。
- * * `numOfInterrupt` 被中断的文件数。
- * @property {Object} stats
- */
- this.stats = {
- numOfQueue: 0,
- numOfSuccess: 0,
- numOfCancel: 0,
- numOfProgress: 0,
- numOfUploadFailed: 0,
- numOfInvalid: 0,
- numOfDeleted: 0,
- numOfInterrupt: 0
- };
-
- // 上传队列,仅包括等待上传的文件
- this._queue = [];
-
- // 存储所有文件
- this._map = {};
- }
-
- $.extend( Queue.prototype, {
-
- /**
- * 将新文件加入对队列尾部
- *
- * @method append
- * @param {File} file 文件对象
- */
- append: function( file ) {
- this._queue.push( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 将新文件加入对队列头部
- *
- * @method prepend
- * @param {File} file 文件对象
- */
- prepend: function( file ) {
- this._queue.unshift( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 获取文件对象
- *
- * @method getFile
- * @param {String} fileId 文件ID
- * @return {File}
- */
- getFile: function( fileId ) {
- if ( typeof fileId !== 'string' ) {
- return fileId;
- }
- return this._map[ fileId ];
- },
-
- /**
- * 从队列中取出一个指定状态的文件。
- * @grammar fetch( status ) => File
- * @method fetch
- * @param {String} status [文件状态值](#WebUploader:File:File.Status)
- * @return {File} [File](#WebUploader:File)
- */
- fetch: function( status ) {
- var len = this._queue.length,
- i, file;
-
- status = status || STATUS.QUEUED;
-
- for ( i = 0; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( status === file.getStatus() ) {
- return file;
- }
- }
-
- return null;
- },
-
- /**
- * 对队列进行排序,能够控制文件上传顺序。
- * @grammar sort( fn ) => undefined
- * @method sort
- * @param {Function} fn 排序方法
- */
- sort: function( fn ) {
- if ( typeof fn === 'function' ) {
- this._queue.sort( fn );
- }
- },
-
- /**
- * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
- * @grammar getFiles( [status1[, status2 ...]] ) => Array
- * @method getFiles
- * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
- */
- getFiles: function() {
- var sts = [].slice.call( arguments, 0 ),
- ret = [],
- i = 0,
- len = this._queue.length,
- file;
-
- for ( ; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
- continue;
- }
-
- ret.push( file );
- }
-
- return ret;
- },
-
- /**
- * 在队列中删除文件。
- * @grammar removeFile( file ) => Array
- * @method removeFile
- * @param {File} 文件对象。
- */
- removeFile: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( existing ) {
- delete this._map[ file.id ];
- this._delFile(file);
- file.destroy();
- this.stats.numOfDeleted++;
-
- }
- },
-
- _fileAdded: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( !existing ) {
- this._map[ file.id ] = file;
-
- file.on( 'statuschange', function( cur, pre ) {
- me._onFileStatusChange( cur, pre );
- });
- }
- },
-
- _delFile : function(file){
- for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
- if(this._queue[i] == file){
- this._queue.splice(i,1);
- break;
- }
- }
- },
-
- _onFileStatusChange: function( curStatus, preStatus ) {
- var stats = this.stats;
-
- switch ( preStatus ) {
- case STATUS.PROGRESS:
- stats.numOfProgress--;
- break;
-
- case STATUS.QUEUED:
- stats.numOfQueue --;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed--;
- break;
-
- case STATUS.INVALID:
- stats.numOfInvalid--;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt--;
- break;
- }
-
- switch ( curStatus ) {
- case STATUS.QUEUED:
- stats.numOfQueue++;
- break;
-
- case STATUS.PROGRESS:
- stats.numOfProgress++;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed++;
- break;
-
- case STATUS.COMPLETE:
- stats.numOfSuccess++;
- break;
-
- case STATUS.CANCELLED:
- stats.numOfCancel++;
- break;
-
-
- case STATUS.INVALID:
- stats.numOfInvalid++;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt++;
- break;
- }
- }
-
- });
-
- Mediator.installTo( Queue.prototype );
-
- return Queue;
- });
-
- /**
- * @fileOverview 队列
- */
- define('widgets/queue',[
- 'base',
- 'uploader',
- 'queue',
- 'file',
- 'lib/file',
- 'runtime/client',
- 'widgets/widget'
- ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
-
- var $ = Base.$,
- rExt = /\.\w+$/,
- Status = WUFile.Status;
-
- return Uploader.register({
- name: 'queue',
-
- init: function( opts ) {
- var me = this,
- deferred, len, i, item, arr, accept, runtime;
-
- if ( $.isPlainObject( opts.accept ) ) {
- opts.accept = [ opts.accept ];
- }
-
- // accept中的中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
-
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].extensions;
- item && arr.push( item );
- }
-
- if ( arr.length ) {
- accept = '\\.' + arr.join(',')
- .replace( /,/g, '$|\\.' )
- .replace( /\*/g, '.*' ) + '$';
- }
-
- me.accept = new RegExp( accept, 'i' );
- }
-
- me.queue = new Queue();
- me.stats = me.queue.stats;
-
- // 如果当前不是html5运行时,那就算了。
- // 不执行后续操作
- if ( this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- // 创建一个 html5 运行时的 placeholder
- // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
- deferred = Base.Deferred();
- this.placeholder = runtime = new RuntimeClient('Placeholder');
- runtime.connectRuntime({
- runtimeOrder: 'html5'
- }, function() {
- me._ruid = runtime.getRuid();
- deferred.resolve();
- });
- return deferred.promise();
- },
-
-
- // 为了支持外部直接添加一个原生File对象。
- _wrapFile: function( file ) {
- if ( !(file instanceof WUFile) ) {
-
- if ( !(file instanceof File) ) {
- if ( !this._ruid ) {
- throw new Error('Can\'t add external files.');
- }
- file = new File( this._ruid, file );
- }
-
- file = new WUFile( file );
- }
-
- return file;
- },
-
- // 判断文件是否可以被加入队列
- acceptFile: function( file ) {
- var invalid = !file || !file.size || this.accept &&
-
- // 如果名字中有后缀,才做后缀白名单处理。
- rExt.exec( file.name ) && !this.accept.test( file.name );
-
- return !invalid;
- },
-
-
- /**
- * @event beforeFileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
- * @for Uploader
- */
-
- /**
- * @event fileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列以后触发。
- * @for Uploader
- */
-
- _addFile: function( file ) {
- var me = this;
-
- file = me._wrapFile( file );
-
- // 不过类型判断允许不允许,先派送 `beforeFileQueued`
- if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
- return;
- }
-
- // 类型不匹配,则派送错误事件,并返回。
- if ( !me.acceptFile( file ) ) {
- me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
- return;
- }
-
- me.queue.append( file );
- me.owner.trigger( 'fileQueued', file );
- return file;
- },
-
- getFile: function( fileId ) {
- return this.queue.getFile( fileId );
- },
-
- /**
- * @event filesQueued
- * @param {File} files 数组,内容为原始File(lib/File)对象。
- * @description 当一批文件添加进队列以后触发。
- * @for Uploader
- */
-
- /**
- * @property {Boolean} [auto=false]
- * @namespace options
- * @for Uploader
- * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
- *
- */
-
- /**
- * @method addFiles
- * @grammar addFiles( file ) => undefined
- * @grammar addFiles( [file1, file2 ...] ) => undefined
- * @param {Array of File or File} [files] Files 对象 数组
- * @description 添加文件到队列
- * @for Uploader
- */
- addFile: function( files ) {
- var me = this;
-
- if ( !files.length ) {
- files = [ files ];
- }
-
- files = $.map( files, function( file ) {
- return me._addFile( file );
- });
-
- if ( files.length ) {
-
- me.owner.trigger( 'filesQueued', files );
-
- if ( me.options.auto ) {
- setTimeout(function() {
- me.request('start-upload');
- }, 20 );
- }
- }
- },
-
- getStats: function() {
- return this.stats;
- },
-
- /**
- * @event fileDequeued
- * @param {File} file File对象
- * @description 当文件被移除队列后触发。
- * @for Uploader
- */
-
- /**
- * @method removeFile
- * @grammar removeFile( file ) => undefined
- * @grammar removeFile( id ) => undefined
- * @grammar removeFile( file, true ) => undefined
- * @grammar removeFile( id, true ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.removeFile( file );
- * })
- */
- removeFile: function( file, remove ) {
- var me = this;
-
- file = file.id ? file : me.queue.getFile( file );
-
- this.request( 'cancel-file', file );
-
- if ( remove ) {
- this.queue.removeFile( file );
- }
- },
-
- /**
- * @method getFiles
- * @grammar getFiles() => Array
- * @grammar getFiles( status1, status2, status... ) => Array
- * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
- * @for Uploader
- * @example
- * console.log( uploader.getFiles() ); // => all files
- * console.log( uploader.getFiles('error') ) // => all error files.
- */
- getFiles: function() {
- return this.queue.getFiles.apply( this.queue, arguments );
- },
-
- fetchFile: function() {
- return this.queue.fetch.apply( this.queue, arguments );
- },
-
- /**
- * @method retry
- * @grammar retry() => undefined
- * @grammar retry( file ) => undefined
- * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
- * @for Uploader
- * @example
- * function retry() {
- * uploader.retry();
- * }
- */
- retry: function( file, noForceStart ) {
- var me = this,
- files, i, len;
-
- if ( file ) {
- file = file.id ? file : me.queue.getFile( file );
- file.setStatus( Status.QUEUED );
- noForceStart || me.request('start-upload');
- return;
- }
-
- files = me.queue.getFiles( Status.ERROR );
- i = 0;
- len = files.length;
-
- for ( ; i < len; i++ ) {
- file = files[ i ];
- file.setStatus( Status.QUEUED );
- }
-
- me.request('start-upload');
- },
-
- /**
- * @method sort
- * @grammar sort( fn ) => undefined
- * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
- * @for Uploader
- */
- sortFiles: function() {
- return this.queue.sort.apply( this.queue, arguments );
- },
-
- /**
- * @event reset
- * @description 当 uploader 被重置的时候触发。
- * @for Uploader
- */
-
- /**
- * @method reset
- * @grammar reset() => undefined
- * @description 重置uploader。目前只重置了队列。
- * @for Uploader
- * @example
- * uploader.reset();
- */
- reset: function() {
- this.owner.trigger('reset');
- this.queue = new Queue();
- this.stats = this.queue.stats;
- },
-
- destroy: function() {
- this.reset();
- this.placeholder && this.placeholder.destroy();
- }
- });
-
- });
- /**
- * @fileOverview 添加获取Runtime相关信息的方法。
- */
- define('widgets/runtime',[
- 'uploader',
- 'runtime/runtime',
- 'widgets/widget'
- ], function( Uploader, Runtime ) {
-
- Uploader.support = function() {
- return Runtime.hasRuntime.apply( Runtime, arguments );
- };
-
- /**
- * @property {Object} [runtimeOrder=html5,flash]
- * @namespace options
- * @for Uploader
- * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
- *
- * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
- */
-
- return Uploader.register({
- name: 'runtime',
-
- init: function() {
- if ( !this.predictRuntimeType() ) {
- throw Error('Runtime Error');
- }
- },
-
- /**
- * 预测Uploader将采用哪个`Runtime`
- * @grammar predictRuntimeType() => String
- * @method predictRuntimeType
- * @for Uploader
- */
- predictRuntimeType: function() {
- var orders = this.options.runtimeOrder || Runtime.orders,
- type = this.type,
- i, len;
-
- if ( !type ) {
- orders = orders.split( /\s*,\s*/g );
-
- for ( i = 0, len = orders.length; i < len; i++ ) {
- if ( Runtime.hasRuntime( orders[ i ] ) ) {
- this.type = type = orders[ i ];
- break;
- }
- }
- }
-
- return type;
- }
- });
- });
- /**
- * @fileOverview Transport
- */
- define('lib/transport',[
- 'base',
- 'runtime/client',
- 'mediator'
- ], function( Base, RuntimeClient, Mediator ) {
-
- var $ = Base.$;
-
- function Transport( opts ) {
- var me = this;
-
- opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
- RuntimeClient.call( this, 'Transport' );
-
- this._blob = null;
- this._formData = opts.formData || {};
- this._headers = opts.headers || {};
-
- this.on( 'progress', this._timeout );
- this.on( 'load error', function() {
- me.trigger( 'progress', 1 );
- clearTimeout( me._timer );
- });
- }
-
- Transport.options = {
- server: '',
- method: 'POST',
-
- // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
- withCredentials: false,
- fileVal: 'file',
- timeout: 2 * 60 * 1000, // 2分钟
- formData: {},
- headers: {},
- sendAsBinary: false
- };
-
- $.extend( Transport.prototype, {
-
- // 添加Blob, 只能添加一次,最后一次有效。
- appendBlob: function( key, blob, filename ) {
- var me = this,
- opts = me.options;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- });
-
- me._blob = blob;
- opts.fileVal = key || opts.fileVal;
- opts.filename = filename || opts.filename;
- },
-
- // 添加其他字段
- append: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._formData, key );
- } else {
- this._formData[ key ] = value;
- }
- },
-
- setRequestHeader: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._headers, key );
- } else {
- this._headers[ key ] = value;
- }
- },
-
- send: function( method ) {
- this.exec( 'send', method );
- this._timeout();
- },
-
- abort: function() {
- clearTimeout( this._timer );
- return this.exec('abort');
- },
-
- destroy: function() {
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- },
-
- getResponseHeaders: function() {
- return this.exec('getResponseHeaders');
- },
-
- getResponse: function() {
- return this.exec('getResponse');
- },
-
- getResponseAsJson: function() {
- return this.exec('getResponseAsJson');
- },
-
- getStatus: function() {
- return this.exec('getStatus');
- },
-
- _timeout: function() {
- var me = this,
- duration = me.options.timeout;
-
- if ( !duration ) {
- return;
- }
-
- clearTimeout( me._timer );
- me._timer = setTimeout(function() {
- me.abort();
- me.trigger( 'error', 'timeout' );
- }, duration );
- }
-
- });
-
- // 让Transport具备事件功能。
- Mediator.installTo( Transport.prototype );
-
- return Transport;
+ /**
+ * @fileOverview 添加获取Runtime相关信息的方法。
+ */
+ define('widgets/runtime',[
+ 'uploader',
+ 'runtime/runtime',
+ 'widgets/widget'
+ ], function( Uploader, Runtime ) {
+
+ Uploader.support = function() {
+ return Runtime.hasRuntime.apply( Runtime, arguments );
+ };
+
+ /**
+ * @property {Object} [runtimeOrder=html5,flash]
+ * @namespace options
+ * @for Uploader
+ * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
+ *
+ * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
+ */
+
+ return Uploader.register({
+ name: 'runtime',
+
+ init: function() {
+ if ( !this.predictRuntimeType() ) {
+ throw Error('Runtime Error');
+ }
+ },
+
+ /**
+ * 预测Uploader将采用哪个`Runtime`
+ * @grammar predictRuntimeType() => String
+ * @method predictRuntimeType
+ * @for Uploader
+ */
+ predictRuntimeType: function() {
+ var orders = this.options.runtimeOrder || Runtime.orders,
+ type = this.type,
+ i, len;
+
+ if ( !type ) {
+ orders = orders.split( /\s*,\s*/g );
+
+ for ( i = 0, len = orders.length; i < len; i++ ) {
+ if ( Runtime.hasRuntime( orders[ i ] ) ) {
+ this.type = type = orders[ i ];
+ break;
+ }
+ }
+ }
+
+ return type;
+ }
+ });
});
+ /**
+ * @fileOverview Transport
+ */
+ define('lib/transport',[
+ 'base',
+ 'runtime/client',
+ 'mediator'
+ ], function( Base, RuntimeClient, Mediator ) {
+
+ var $ = Base.$;
+
+ function Transport( opts ) {
+ var me = this;
+
+ opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
+ RuntimeClient.call( this, 'Transport' );
+
+ this._blob = null;
+ this._formData = opts.formData || {};
+ this._headers = opts.headers || {};
+
+ this.on( 'progress', this._timeout );
+ this.on( 'load error', function() {
+ me.trigger( 'progress', 1 );
+ clearTimeout( me._timer );
+ });
+ }
+
+ Transport.options = {
+ server: '',
+ method: 'POST',
+
+ // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
+ withCredentials: false,
+ fileVal: 'file',
+ timeout: 2 * 60 * 1000, // 2分钟
+ formData: {},
+ headers: {},
+ sendAsBinary: false
+ };
+
+ $.extend( Transport.prototype, {
+
+ // 添加Blob, 只能添加一次,最后一次有效。
+ appendBlob: function( key, blob, filename ) {
+ var me = this,
+ opts = me.options;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ });
+
+ me._blob = blob;
+ opts.fileVal = key || opts.fileVal;
+ opts.filename = filename || opts.filename;
+ },
+
+ // 添加其他字段
+ append: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._formData, key );
+ } else {
+ this._formData[ key ] = value;
+ }
+ },
+
+ setRequestHeader: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._headers, key );
+ } else {
+ this._headers[ key ] = value;
+ }
+ },
+
+ send: function( method ) {
+ this.exec( 'send', method );
+ this._timeout();
+ },
+
+ abort: function() {
+ clearTimeout( this._timer );
+ return this.exec('abort');
+ },
+
+ destroy: function() {
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ },
+
+ getResponseHeaders: function() {
+ return this.exec('getResponseHeaders');
+ },
+
+ getResponse: function() {
+ return this.exec('getResponse');
+ },
+
+ getResponseAsJson: function() {
+ return this.exec('getResponseAsJson');
+ },
+
+ getStatus: function() {
+ return this.exec('getStatus');
+ },
+
+ _timeout: function() {
+ var me = this,
+ duration = me.options.timeout;
+
+ if ( !duration ) {
+ return;
+ }
+
+ clearTimeout( me._timer );
+ me._timer = setTimeout(function() {
+ me.abort();
+ me.trigger( 'error', 'timeout' );
+ }, duration );
+ }
+
+ });
+
+ // 让Transport具备事件功能。
+ Mediator.installTo( Transport.prototype );
+
+ return Transport;
+ });
- /**
- * @fileOverview 负责文件上传相关。
- */
- define('widgets/upload',[
- 'base',
- 'uploader',
- 'file',
- 'lib/transport',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile, Transport ) {
-
- var $ = Base.$,
- isPromise = Base.isPromise,
- Status = WUFile.Status;
-
- // 添加默认配置项
- $.extend( Uploader.options, {
-
-
- /**
- * @property {Boolean} [prepareNextFile=false]
- * @namespace options
- * @for Uploader
- * @description 是否允许在文件传输时提前把下一个文件准备好。
- * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
- * 如果能提前在当前文件传输期处理,可以节省总体耗时。
- */
- prepareNextFile: false,
-
- /**
- * @property {Boolean} [chunked=false]
- * @namespace options
- * @for Uploader
- * @description 是否要分片处理大文件上传。
- */
- chunked: false,
-
- /**
- * @property {Boolean} [chunkSize=5242880]
- * @namespace options
- * @for Uploader
- * @description 如果要分片,分多大一片? 默认大小为5M.
- */
- chunkSize: 5 * 1024 * 1024,
-
- /**
- * @property {Boolean} [chunkRetry=2]
- * @namespace options
- * @for Uploader
- * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
- */
- chunkRetry: 2,
-
- /**
- * @property {Number} [chunkRetryDelay=1000]
- * @namespace options
- * @for Uploader
- * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
- */
- chunkRetryDelay: 1000,
-
- /**
- * @property {Boolean} [threads=3]
- * @namespace options
- * @for Uploader
- * @description 上传并发数。允许同时最大上传进程数。
- */
- threads: 3,
-
-
- /**
- * @property {Object} [formData={}]
- * @namespace options
- * @for Uploader
- * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
- */
- formData: {}
-
- /**
- * @property {Object} [fileVal='file']
- * @namespace options
- * @for Uploader
- * @description 设置文件上传域的name。
- */
-
- /**
- * @property {Object} [method=POST]
- * @namespace options
- * @for Uploader
- * @description 文件上传方式,`POST` 或者 `GET`。
- */
-
- /**
- * @property {Object} [sendAsBinary=false]
- * @namespace options
- * @for Uploader
- * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
- * 其他参数在$_GET数组中。
- */
- });
-
- // 负责将文件切片。
- function CuteFile( file, chunkSize ) {
- var pending = [],
- blob = file.source,
- total = blob.size,
- chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
- start = 0,
- index = 0,
- len, api;
-
- api = {
- file: file,
-
- has: function() {
- return !!pending.length;
- },
-
- shift: function() {
- return pending.shift();
- },
-
- unshift: function( block ) {
- pending.unshift( block );
- }
- };
-
- while ( index < chunks ) {
- len = Math.min( chunkSize, total - start );
-
- pending.push({
- file: file,
- start: start,
- end: chunkSize ? (start + len) : total,
- total: total,
- chunks: chunks,
- chunk: index++,
- cuted: api
- });
- start += len;
- }
-
- file.blocks = pending.concat();
- file.remaning = pending.length;
-
- return api;
- }
-
- Uploader.register({
- name: 'upload',
-
- init: function() {
- var owner = this.owner,
- me = this;
-
- this.runing = false;
- this.progress = false;
-
- owner
- .on( 'startUpload', function() {
- me.progress = true;
- })
- .on( 'uploadFinished', function() {
- me.progress = false;
- });
-
- // 记录当前正在传的数据,跟threads相关
- this.pool = [];
-
- // 缓存分好片的文件。
- this.stack = [];
-
- // 缓存即将上传的文件。
- this.pending = [];
-
- // 跟踪还有多少分片在上传中但是没有完成上传。
- this.remaning = 0;
- this.__tick = Base.bindFn( this._tick, this );
-
- // 销毁上传相关的属性。
- owner.on( 'uploadComplete', function( file ) {
-
- // 把其他块取消了。
- file.blocks && $.each( file.blocks, function( _, v ) {
- v.transport && (v.transport.abort(), v.transport.destroy());
- delete v.transport;
- });
-
- delete file.blocks;
- delete file.remaning;
- });
- },
-
- reset: function() {
- this.request( 'stop-upload', true );
- this.runing = false;
- this.pool = [];
- this.stack = [];
- this.pending = [];
- this.remaning = 0;
- this._trigged = false;
- this._promise = null;
- },
-
- /**
- * @event startUpload
- * @description 当开始上传流程时触发。
- * @for Uploader
- */
-
- /**
- * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
- *
- * 可以指定开始某一个文件。
- * @grammar upload() => undefined
- * @grammar upload( file | fileId) => undefined
- * @method upload
- * @for Uploader
- */
- startUpload: function(file) {
- var me = this;
-
- // 移出invalid的文件
- $.each( me.request( 'get-files', Status.INVALID ), function() {
- me.request( 'remove-file', this );
- });
-
- // 如果指定了开始某个文件,则只开始指定的文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if (file.getStatus() === Status.INTERRUPT) {
- file.setStatus( Status.QUEUED );
-
- $.each( me.pool, function( _, v ) {
-
- // 之前暂停过。
- if (v.file !== file) {
- return;
- }
-
- v.transport && v.transport.send();
- file.setStatus( Status.PROGRESS );
- });
-
-
- } else if (file.getStatus() !== Status.PROGRESS) {
- file.setStatus( Status.QUEUED );
- }
- } else {
- $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
- this.setStatus( Status.QUEUED );
- });
- }
-
- if ( me.runing ) {
- me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
- return Base.nextTick( me.__tick );
- }
-
- me.runing = true;
- var files = [];
-
- // 如果有暂停的,则续传
- file || $.each( me.pool, function( _, v ) {
- var file = v.file;
-
- if ( file.getStatus() === Status.INTERRUPT ) {
- me._trigged = false;
- files.push(file);
-
- if (v.waiting) {
- return;
- }
-
- // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
- v.transport ? v.transport.send() : me._doSend(v);
- }
- });
-
- $.each(files, function() {
- this.setStatus( Status.PROGRESS );
- });
-
- file || $.each( me.request( 'get-files',
- Status.INTERRUPT ), function() {
- this.setStatus( Status.PROGRESS );
- });
-
- me._trigged = false;
- Base.nextTick( me.__tick );
- me.owner.trigger('startUpload');
- },
-
- /**
- * @event stopUpload
- * @description 当开始上传流程暂停时触发。
- * @for Uploader
- */
-
- /**
- * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
- *
- * 如果第一个参数是文件,则只暂停指定文件。
- * @grammar stop() => undefined
- * @grammar stop( true ) => undefined
- * @grammar stop( file ) => undefined
- * @method stop
- * @for Uploader
- */
- stopUpload: function( file, interrupt ) {
- var me = this;
-
- if (file === true) {
- interrupt = file;
- file = null;
- }
-
- if ( me.runing === false ) {
- return;
- }
-
- // 如果只是暂停某个文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if ( file.getStatus() !== Status.PROGRESS &&
- file.getStatus() !== Status.QUEUED ) {
- return;
- }
-
- file.setStatus( Status.INTERRUPT );
-
-
- $.each( me.pool, function( _, v ) {
-
- // 只 abort 指定的文件,每一个分片。
- if (v.file === file) {
- v.transport && v.transport.abort();
-
- if (interrupt) {
- me._putback(v);
- me._popBlock(v);
- }
- }
- });
-
- me.owner.trigger('stopUpload', file);// 暂停,trigger event
-
- return Base.nextTick( me.__tick );
- }
-
- me.runing = false;
-
- // 正在准备中的文件。
- if (this._promise && this._promise.file) {
- this._promise.file.setStatus( Status.INTERRUPT );
- }
-
- interrupt && $.each( me.pool, function( _, v ) {
- v.transport && v.transport.abort();
- v.file.setStatus( Status.INTERRUPT );
- });
-
- me.owner.trigger('stopUpload');
- },
-
- /**
- * @method cancelFile
- * @grammar cancelFile( file ) => undefined
- * @grammar cancelFile( id ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 标记文件状态为已取消, 同时将中断文件传输。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.cancelFile( file );
- * })
- */
- cancelFile: function( file ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- file.setStatus( Status.CANCELLED );
- this.owner.trigger( 'fileDequeued', file );
- },
-
- /**
- * 判断`Uploader`是否正在上传中。
- * @grammar isInProgress() => Boolean
- * @method isInProgress
- * @for Uploader
- */
- isInProgress: function() {
- return !!this.progress;
- },
-
- _getStats: function() {
- return this.request('get-stats');
- },
-
- /**
- * 跳过一个文件上传,直接标记指定文件为已上传状态。
- * @grammar skipFile( file ) => undefined
- * @method skipFile
- * @for Uploader
- */
- skipFile: function( file, status ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- file.setStatus( status || Status.COMPLETE );
- file.skipped = true;
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- this.owner.trigger( 'uploadSkip', file );
- },
-
- /**
- * @event uploadFinished
- * @description 当所有文件上传结束时触发。
- * @for Uploader
- */
- _tick: function() {
- var me = this,
- opts = me.options,
- fn, val;
-
- // 上一个promise还没有结束,则等待完成后再执行。
- if ( me._promise ) {
- return me._promise.always( me.__tick );
- }
-
- // 还有位置,且还有文件要处理的话。
- if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
- me._trigged = false;
-
- fn = function( val ) {
- me._promise = null;
-
- // 有可能是reject过来的,所以要检测val的类型。
- val && val.file && me._startSend( val );
- Base.nextTick( me.__tick );
- };
-
- me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
-
- // 没有要上传的了,且没有正在传输的了。
- } else if ( !me.remaning && !me._getStats().numOfQueue &&
- !me._getStats().numOfInterrupt ) {
- me.runing = false;
-
- me._trigged || Base.nextTick(function() {
- me.owner.trigger('uploadFinished');
- });
- me._trigged = true;
- }
- },
-
- _putback: function(block) {
- var idx;
-
- block.cuted.unshift(block);
- idx = this.stack.indexOf(block.cuted);
-
- if (!~idx) {
- // 如果不在里面,说明移除过,需要把计数还原回去。
- this.remaning++;
- block.file.remaning++;
- this.stack.unshift(block.cuted);
- }
- },
-
- _getStack: function() {
- var i = 0,
- act;
-
- while ( (act = this.stack[ i++ ]) ) {
- if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
- return act;
- } else if (!act.has() ||
- act.file.getStatus() !== Status.PROGRESS &&
- act.file.getStatus() !== Status.INTERRUPT ) {
-
- // 把已经处理完了的,或者,状态为非 progress(上传中)、
- // interupt(暂停中) 的移除。
- this.stack.splice( --i, 1 );
- }
- }
-
- return null;
- },
-
- _nextBlock: function() {
- var me = this,
- opts = me.options,
- act, next, done, preparing;
-
- // 如果当前文件还有没有需要传输的,则直接返回剩下的。
- if ( (act = this._getStack()) ) {
-
- // 是否提前准备下一个文件
- if ( opts.prepareNextFile && !me.pending.length ) {
- me._prepareNextFile();
- }
-
- return act.shift();
-
- // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
- } else if ( me.runing ) {
-
- // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
- if ( !me.pending.length && me._getStats().numOfQueue ) {
- me._prepareNextFile();
- }
-
- next = me.pending.shift();
- done = function( file ) {
- if ( !file ) {
- return null;
- }
-
- act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
- me.stack.push(act);
- return act.shift();
- };
-
- // 文件可能还在prepare中,也有可能已经完全准备好了。
- if ( isPromise( next) ) {
- preparing = next.file;
- next = next[ next.pipe ? 'pipe' : 'then' ]( done );
- next.file = preparing;
- return next;
- }
-
- return done( next );
- }
- },
-
-
- /**
- * @event uploadStart
- * @param {File} file File对象
- * @description 某个文件开始上传前触发,一个文件只会触发一次。
- * @for Uploader
- */
- _prepareNextFile: function() {
- var me = this,
- file = me.request('fetch-file'),
- pending = me.pending,
- promise;
-
- if ( file ) {
- promise = me.request( 'before-send-file', file, function() {
-
- // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
- if ( file.getStatus() === Status.PROGRESS ||
- file.getStatus() === Status.INTERRUPT ) {
- return file;
- }
-
- return me._finishFile( file );
- });
-
- me.owner.trigger( 'uploadStart', file );
- file.setStatus( Status.PROGRESS );
-
- promise.file = file;
-
- // 如果还在pending中,则替换成文件本身。
- promise.done(function() {
- var idx = $.inArray( promise, pending );
-
- ~idx && pending.splice( idx, 1, file );
- });
-
- // befeore-send-file的钩子就有错误发生。
- promise.fail(function( reason ) {
- file.setStatus( Status.ERROR, reason );
- me.owner.trigger( 'uploadError', file, reason );
- me.owner.trigger( 'uploadComplete', file );
- });
-
- pending.push( promise );
- }
- },
-
- // 让出位置了,可以让其他分片开始上传
- _popBlock: function( block ) {
- var idx = $.inArray( block, this.pool );
-
- this.pool.splice( idx, 1 );
- block.file.remaning--;
- this.remaning--;
- },
-
- // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
- _startSend: function( block ) {
- var me = this,
- file = block.file,
- promise;
-
- // 有可能在 before-send-file 的 promise 期间改变了文件状态。
- // 如:暂停,取消
- // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
- if ( file.getStatus() !== Status.PROGRESS ) {
-
- // 如果是中断,则还需要放回去。
- if (file.getStatus() === Status.INTERRUPT) {
- me._putback(block);
- }
-
- return;
- }
-
- me.pool.push( block );
- me.remaning++;
-
- // 如果没有分片,则直接使用原始的。
- // 不会丢失content-type信息。
- block.blob = block.chunks === 1 ? file.source :
- file.source.slice( block.start, block.end );
-
- // hook, 每个分片发送之前可能要做些异步的事情。
- block.waiting = promise = me.request( 'before-send', block, function() {
- delete block.waiting;
-
- // 有可能文件已经上传出错了,所以不需要再传输了。
- if ( file.getStatus() === Status.PROGRESS ) {
- me._doSend( block );
- } else if (block.file.getStatus() !== Status.INTERRUPT) {
- me._popBlock(block);
- }
-
- Base.nextTick(me.__tick);
- });
-
- // 如果为fail了,则跳过此分片。
- promise.fail(function() {
- delete block.waiting;
-
- if ( file.remaning === 1 ) {
- me._finishFile( file ).always(function() {
- block.percentage = 1;
- me._popBlock( block );
- me.owner.trigger( 'uploadComplete', file );
- Base.nextTick( me.__tick );
- });
- } else {
- block.percentage = 1;
- me.updateFileProgress( file );
- me._popBlock( block );
- Base.nextTick( me.__tick );
- }
- });
- },
-
-
- /**
- * @event uploadBeforeSend
- * @param {Object} object
- * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
- * @param {Object} headers 可以扩展此对象来控制上传头部。
- * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
- * @for Uploader
- */
-
- /**
- * @event uploadAccept
- * @param {Object} object
- * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
- * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
- * @for Uploader
- */
-
- /**
- * @event uploadProgress
- * @param {File} file File对象
- * @param {Number} percentage 上传进度
- * @description 上传过程中触发,携带上传进度。
- * @for Uploader
- */
-
-
- /**
- * @event uploadError
- * @param {File} file File对象
- * @param {String} reason 出错的code
- * @description 当文件上传出错时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadSuccess
- * @param {File} file File对象
- * @param {Object} response 服务端返回的数据
- * @description 当文件上传成功时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadComplete
- * @param {File} [file] File对象
- * @description 不管成功或者失败,文件上传完成时触发。
- * @for Uploader
- */
-
- // 做上传操作。
- _doSend: function( block ) {
- var me = this,
- owner = me.owner,
- opts = $.extend({}, me.options, block.options),
- file = block.file,
- tr = new Transport( opts ),
- data = $.extend({}, opts.formData ),
- headers = $.extend({}, opts.headers ),
- requestAccept, ret;
-
- block.transport = tr;
-
- tr.on( 'destroy', function() {
- delete block.transport;
- me._popBlock( block );
- Base.nextTick( me.__tick );
- });
-
- // 广播上传进度。以文件为单位。
- tr.on( 'progress', function( percentage ) {
- block.percentage = percentage;
- me.updateFileProgress( file );
- });
-
- // 用来询问,是否返回的结果是有错误的。
- requestAccept = function( reject ) {
- var fn;
-
- ret = tr.getResponseAsJson() || {};
- ret._raw = tr.getResponse();
- ret._headers = tr.getResponseHeaders();
- block.response = ret;
- fn = function( value ) {
- reject = value;
- };
-
- // 服务端响应了,不代表成功了,询问是否响应正确。
- if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
- reject = reject || 'server';
- }
-
- return reject;
- };
-
- // 尝试重试,然后广播文件上传出错。
- tr.on( 'error', function( type, flag ) {
- // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
- // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
- var typeArr = type.split( '|' ), status, statusText;
- type = typeArr[0];
- status = parseFloat( typeArr[1] ),
- statusText = typeArr[2];
-
- block.retried = block.retried || 0;
-
- // 自动重试
- if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
- block.retried < opts.chunkRetry ) {
-
- block.retried++;
-
- me.retryTimer = setTimeout(function() {
- tr.send();
- }, opts.chunkRetryDelay || 1000);
-
- } else {
-
- // http status 500 ~ 600
- if ( !flag && type === 'server' ) {
- type = requestAccept( type );
- }
-
- file.setStatus( Status.ERROR, type );
- owner.trigger( 'uploadError', file, type, status, statusText );
- owner.trigger( 'uploadComplete', file );
- }
- });
-
- // 上传成功
- tr.on( 'load', function() {
- var reason;
-
- // 如果非预期,转向上传出错。
- if ( (reason = requestAccept()) ) {
- tr.trigger( 'error', reason, true );
- return;
- }
-
- // 全部上传完成。
- if ( file.remaning === 1 ) {
- me._finishFile( file, ret );
- } else {
- tr.destroy();
- }
- });
-
- // 配置默认的上传字段。
- data = $.extend( data, {
- id: file.id,
- name: file.name,
- type: file.type,
- lastModifiedDate: file.lastModifiedDate,
- size: file.size
- });
-
- block.chunks > 1 && $.extend( data, {
- chunks: block.chunks,
- chunk: block.chunk
- });
-
- // 在发送之间可以添加字段什么的。。。
- // 如果默认的字段不够使用,可以通过监听此事件来扩展
- owner.trigger( 'uploadBeforeSend', block, data, headers );
-
- // 开始发送。
- tr.appendBlob( opts.fileVal, block.blob, file.name );
- tr.append( data );
- tr.setRequestHeader( headers );
- tr.send();
- },
-
- // 完成上传。
- _finishFile: function( file, ret, hds ) {
- var owner = this.owner;
-
- return owner
- .request( 'after-send-file', arguments, function() {
- file.setStatus( Status.COMPLETE );
- owner.trigger( 'uploadSuccess', file, ret, hds );
- })
- .fail(function( reason ) {
-
- // 如果外部已经标记为invalid什么的,不再改状态。
- if ( file.getStatus() === Status.PROGRESS ) {
- file.setStatus( Status.ERROR, reason );
- }
-
- owner.trigger( 'uploadError', file, reason );
- })
- .always(function() {
- owner.trigger( 'uploadComplete', file );
- });
- },
-
- updateFileProgress: function(file) {
- var totalPercent = 0,
- uploaded = 0;
-
- if (!file.blocks) {
- return;
- }
-
- $.each( file.blocks, function( _, v ) {
- uploaded += (v.percentage || 0) * (v.end - v.start);
- });
-
- totalPercent = uploaded / file.size;
- this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
- },
-
- destroy: function() {
- clearTimeout(this.retryTimer);
- }
-
- });
- });
-
- /**
- * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
- */
-
- define('widgets/validator',[
- 'base',
- 'uploader',
- 'file',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile ) {
-
- var $ = Base.$,
- validators = {},
- api;
-
- /**
- * @event error
- * @param {String} type 错误类型。
- * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
- *
- * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
- * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
- * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
- * @for Uploader
- */
-
- // 暴露给外面的api
- api = {
-
- // 添加验证器
- addValidator: function( type, cb ) {
- validators[ type ] = cb;
- },
-
- // 移除验证器
- removeValidator: function( type ) {
- delete validators[ type ];
- }
- };
-
- // 在Uploader初始化的时候启动Validators的初始化
- Uploader.register({
- name: 'validator',
-
- init: function() {
- var me = this;
- Base.nextTick(function() {
- $.each( validators, function() {
- this.call( me.owner );
- });
- });
- }
- });
-
- /**
- * @property {int} [fileNumLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总数量, 超出则不允许加入队列。
- */
- api.addValidator( 'fileNumLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileNumLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
- if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
- return false;
- }
- if ( count >= max && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return count >= max ? false : true;
- });
-
- uploader.on( 'fileQueued', function() {
- count++;
- });
-
- uploader.on( 'fileDequeued', function() {
- count--;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
-
- /**
- * @property {int} [fileSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileSizeLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var invalid = count + file.size > max;
-
- if ( invalid && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return invalid ? false : true;
- });
-
- uploader.on( 'fileQueued', function( file ) {
- count += file.size;
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- count -= file.size;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
- /**
- * @property {int} [fileSingleSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSingleSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- max = opts.fileSingleSizeLimit;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
-
- if ( file.size > max ) {
- file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
- this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
- return false;
- }
-
- });
-
- });
-
- /**
- * @property {Boolean} [duplicate=undefined]
- * @namespace options
- * @for Uploader
- * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
- */
- api.addValidator( 'duplicate', function() {
- var uploader = this,
- opts = uploader.options,
- mapping = {};
-
- if ( opts.duplicate ) {
- return;
- }
-
- function hashString( str ) {
- var hash = 0,
- i = 0,
- len = str.length,
- _char;
-
- for ( ; i < len; i++ ) {
- _char = str.charCodeAt( i );
- hash = _char + (hash << 6) + (hash << 16) - hash;
- }
-
- return hash;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var hash = file.__hash || (file.__hash = hashString( file.name +
- file.size + file.lastModifiedDate ));
-
- // 已经重复了
- if ( mapping[ hash ] ) {
- this.trigger( 'error', 'F_DUPLICATE', file );
- return false;
- }
- });
-
- uploader.on( 'fileQueued', function( file ) {
- var hash = file.__hash;
-
- hash && (mapping[ hash ] = true);
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- var hash = file.__hash;
-
- hash && (delete mapping[ hash ]);
- });
-
- uploader.on( 'reset', function() {
- mapping = {};
- });
- });
-
- return api;
- });
-
- /**
- * @fileOverview Md5
- */
- define('lib/md5',[
- 'runtime/client',
- 'mediator'
- ], function( RuntimeClient, Mediator ) {
-
- function Md5() {
- RuntimeClient.call( this, 'Md5' );
- }
-
- // 让 Md5 具备事件功能。
- Mediator.installTo( Md5.prototype );
-
- Md5.prototype.loadFromBlob = function( blob ) {
- var me = this;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- me.exec( 'loadFromBlob', blob );
- });
- };
-
- Md5.prototype.getResult = function() {
- return this.exec('getResult');
- };
-
- return Md5;
- });
- /**
- * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
- */
- define('widgets/md5',[
- 'base',
- 'uploader',
- 'lib/md5',
- 'lib/blob',
- 'widgets/widget'
- ], function( Base, Uploader, Md5, Blob ) {
-
- return Uploader.register({
- name: 'md5',
-
-
- /**
- * 计算文件 md5 值,返回一个 promise 对象,可以监听 progress 进度。
- *
- *
- * @method md5File
- * @grammar md5File( file[, start[, end]] ) => promise
- * @for Uploader
- * @example
- *
- * uploader.on( 'fileQueued', function( file ) {
- * var $li = ...;
- *
- * uploader.md5File( file )
- *
- * // 及时显示进度
- * .progress(function(percentage) {
- * console.log('Percentage:', percentage);
- * })
- *
- * // 完成
- * .then(function(val) {
- * console.log('md5 result:', val);
- * });
- *
- * });
- */
- md5File: function( file, start, end ) {
- var md5 = new Md5(),
- deferred = Base.Deferred(),
- blob = (file instanceof Blob) ? file :
- this.request( 'get-file', file ).source;
-
- md5.on( 'progress load', function( e ) {
- e = e || {};
- deferred.notify( e.total ? e.loaded / e.total : 1 );
- });
-
- md5.on( 'complete', function() {
- deferred.resolve( md5.getResult() );
- });
-
- md5.on( 'error', function( reason ) {
- deferred.reject( reason );
- });
-
- if ( arguments.length > 1 ) {
- start = start || 0;
- end = end || 0;
- start < 0 && (start = blob.size + start);
- end < 0 && (end = blob.size + end);
- end = Math.min( end, blob.size );
- blob = blob.slice( start, end );
- }
-
- md5.loadFromBlob( blob );
-
- return deferred.promise();
- }
- });
- });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/compbase',[],function() {
-
- function CompBase( owner, runtime ) {
-
- this.owner = owner;
- this.options = owner.options;
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.getRuid = function() {
- return runtime.uid;
- };
-
- this.trigger = function() {
- return owner.trigger.apply( owner, arguments );
- };
- }
-
- return CompBase;
- });
- /**
- * @fileOverview Html5Runtime
- */
- define('runtime/html5/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var type = 'html5',
- components = {};
-
- function Html5Runtime() {
- var pool = {},
- me = this,
- destroy = this.destroy;
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- if ( components[ comp ] ) {
- instance = pool[ uid ] = pool[ uid ] ||
- new components[ comp ]( client, me );
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
- };
-
- me.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
- }
-
- Base.inherits( Runtime, {
- constructor: Html5Runtime,
-
- // 不需要连接其他程序,直接执行callback
- init: function() {
- var me = this;
- setTimeout(function() {
- me.trigger('ready');
- }, 1 );
- }
-
- });
-
- // 注册Components
- Html5Runtime.register = function( name, component ) {
- var klass = components[ name ] = Base.inherits( CompBase, component );
- return klass;
- };
-
- // 注册html5运行时。
- // 只有在支持的前提下注册。
- if ( window.Blob && window.FileReader && window.DataView ) {
- Runtime.addRuntime( type, Html5Runtime );
- }
-
- return Html5Runtime;
- });
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/html5/blob',[
- 'runtime/html5/runtime',
- 'lib/blob'
- ], function( Html5Runtime, Blob ) {
-
- return Html5Runtime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.owner.source,
- slice = blob.slice || blob.webkitSlice || blob.mozSlice;
-
- blob = slice.call( blob, start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
- });
/**
- * @fileOverview FilePaste
+ * @fileOverview 负责文件上传相关。
*/
- define('runtime/html5/dnd',[
+ define('widgets/upload',[
'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ 'uploader',
+ 'file',
+ 'lib/transport',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile, Transport ) {
var $ = Base.$,
- prefix = 'webuploader-dnd-';
+ isPromise = Base.isPromise,
+ Status = WUFile.Status;
- return Html5Runtime.register( 'DragAndDrop', {
- init: function() {
- var elem = this.elem = this.options.container;
+ // 添加默认配置项
+ $.extend( Uploader.options, {
- this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
- this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
- this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
- this.dropHandler = Base.bindFn( this._dropHandler, this );
- this.dndOver = false;
- elem.on( 'dragenter', this.dragEnterHandler );
- elem.on( 'dragover', this.dragOverHandler );
- elem.on( 'dragleave', this.dragLeaveHandler );
- elem.on( 'drop', this.dropHandler );
+ /**
+ * @property {Boolean} [prepareNextFile=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否允许在文件传输时提前把下一个文件准备好。
+ * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
+ * 如果能提前在当前文件传输期处理,可以节省总体耗时。
+ */
+ prepareNextFile: false,
- if ( this.options.disableGlobalDnd ) {
- $( document ).on( 'dragover', this.dragOverHandler );
- $( document ).on( 'drop', this.dropHandler );
- }
- },
+ /**
+ * @property {Boolean} [chunked=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否要分片处理大文件上传。
+ */
+ chunked: false,
- _dragEnterHandler: function( e ) {
- var me = this,
- denied = me._denied || false,
- items;
+ /**
+ * @property {Boolean} [chunkSize=5242880]
+ * @namespace options
+ * @for Uploader
+ * @description 如果要分片,分多大一片? 默认大小为5M.
+ */
+ chunkSize: 5 * 1024 * 1024,
- e = e.originalEvent || e;
+ /**
+ * @property {Boolean} [chunkRetry=2]
+ * @namespace options
+ * @for Uploader
+ * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
+ */
+ chunkRetry: 2,
- if ( !me.dndOver ) {
- me.dndOver = true;
+ /**
+ * @property {Number} [chunkRetryDelay=1000]
+ * @namespace options
+ * @for Uploader
+ * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
+ */
+ chunkRetryDelay: 1000,
- // 注意只有 chrome 支持。
- items = e.dataTransfer.items;
+ /**
+ * @property {Boolean} [threads=3]
+ * @namespace options
+ * @for Uploader
+ * @description 上传并发数。允许同时最大上传进程数。
+ */
+ threads: 3,
- if ( items && items.length ) {
- me._denied = denied = !me.trigger( 'accept', items );
- }
- me.elem.addClass( prefix + 'over' );
- me.elem[ denied ? 'addClass' :
- 'removeClass' ]( prefix + 'denied' );
- }
+ /**
+ * @property {Object} [formData={}]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
+ */
+ formData: {}
- e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+ /**
+ * @property {Object} [fileVal='file']
+ * @namespace options
+ * @for Uploader
+ * @description 设置文件上传域的name。
+ */
- return false;
- },
+ /**
+ * @property {Object} [method=POST]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传方式,`POST` 或者 `GET`。
+ */
- _dragOverHandler: function( e ) {
- // 只处理框内的。
- var parentElem = this.elem.parent().get( 0 );
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
+ /**
+ * @property {Object} [sendAsBinary=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
+ * 其他参数在$_GET数组中。
+ */
+ });
+
+ // 负责将文件切片。
+ function CuteFile( file, chunkSize ) {
+ var pending = [],
+ blob = file.source,
+ total = blob.size,
+ chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
+ start = 0,
+ index = 0,
+ len, api;
+
+ api = {
+ file: file,
+
+ has: function() {
+ return !!pending.length;
+ },
+
+ shift: function() {
+ return pending.shift();
+ },
+
+ unshift: function( block ) {
+ pending.unshift( block );
}
+ };
- clearTimeout( this._leaveTimer );
- this._dragEnterHandler.call( this, e );
+ while ( index < chunks ) {
+ len = Math.min( chunkSize, total - start );
- return false;
- },
+ pending.push({
+ file: file,
+ start: start,
+ end: chunkSize ? (start + len) : total,
+ total: total,
+ chunks: chunks,
+ chunk: index++,
+ cuted: api
+ });
+ start += len;
+ }
- _dragLeaveHandler: function() {
- var me = this,
- handler;
+ file.blocks = pending.concat();
+ file.remaning = pending.length;
- handler = function() {
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
- };
+ return api;
+ }
- clearTimeout( me._leaveTimer );
- me._leaveTimer = setTimeout( handler, 100 );
- return false;
- },
+ Uploader.register({
+ name: 'upload',
- _dropHandler: function( e ) {
- var me = this,
- ruid = me.getRuid(),
- parentElem = me.elem.parent().get( 0 ),
- dataTransfer, data;
+ init: function() {
+ var owner = this.owner,
+ me = this;
- // 只处理框内的。
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
- }
+ this.runing = false;
+ this.progress = false;
- e = e.originalEvent || e;
- dataTransfer = e.dataTransfer;
+ owner
+ .on( 'startUpload', function() {
+ me.progress = true;
+ })
+ .on( 'uploadFinished', function() {
+ me.progress = false;
+ });
- // 如果是页面内拖拽,还不能处理,不阻止事件。
- // 此处 ie11 下会报参数错误,
- try {
- data = dataTransfer.getData('text/html');
- } catch( err ) {
- }
+ // 记录当前正在传的数据,跟threads相关
+ this.pool = [];
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over' );
+ // 缓存分好片的文件。
+ this.stack = [];
- if ( !dataTransfer || data ) {
- return;
- }
+ // 缓存即将上传的文件。
+ this.pending = [];
- me._getTansferFiles( dataTransfer, function( results ) {
- me.trigger( 'drop', $.map( results, function( file ) {
- return new File( ruid, file );
- }) );
+ // 跟踪还有多少分片在上传中但是没有完成上传。
+ this.remaning = 0;
+ this.__tick = Base.bindFn( this._tick, this );
+
+ // 销毁上传相关的属性。
+ owner.on( 'uploadComplete', function( file ) {
+
+ // 把其他块取消了。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ v.transport && (v.transport.abort(), v.transport.destroy());
+ delete v.transport;
+ });
+
+ delete file.blocks;
+ delete file.remaning;
});
+ },
- return false;
+ reset: function() {
+ this.request( 'stop-upload', true );
+ this.runing = false;
+ this.pool = [];
+ this.stack = [];
+ this.pending = [];
+ this.remaning = 0;
+ this._trigged = false;
+ this._promise = null;
},
- // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
- _getTansferFiles: function( dataTransfer, callback ) {
- var results = [],
- promises = [],
- items, files, file, item, i, len, canAccessFolder;
+ /**
+ * @event startUpload
+ * @description 当开始上传流程时触发。
+ * @for Uploader
+ */
- items = dataTransfer.items;
- files = dataTransfer.files;
+ /**
+ * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
+ *
+ * 可以指定开始某一个文件。
+ * @grammar upload() => undefined
+ * @grammar upload( file | fileId) => undefined
+ * @method upload
+ * @for Uploader
+ */
+ startUpload: function(file) {
+ var me = this;
- canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+ // 移出invalid的文件
+ $.each( me.request( 'get-files', Status.INVALID ), function() {
+ me.request( 'remove-file', this );
+ });
- for ( i = 0, len = files.length; i < len; i++ ) {
- file = files[ i ];
- item = items && items[ i ];
+ // 如果指定了开始某个文件,则只开始指定的文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
- if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+ if (file.getStatus() === Status.INTERRUPT) {
+ file.setStatus( Status.QUEUED );
- promises.push( this._traverseDirectoryTree(
- item.webkitGetAsEntry(), results ) );
- } else {
- results.push( file );
+ $.each( me.pool, function( _, v ) {
+
+ // 之前暂停过。
+ if (v.file !== file) {
+ return;
+ }
+
+ v.transport && v.transport.send();
+ file.setStatus( Status.PROGRESS );
+ });
+
+
+ } else if (file.getStatus() !== Status.PROGRESS) {
+ file.setStatus( Status.QUEUED );
}
+ } else {
+ $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
+ this.setStatus( Status.QUEUED );
+ });
}
- Base.when.apply( Base, promises ).done(function() {
+ if ( me.runing ) {
+ me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
+ return Base.nextTick( me.__tick );
+ }
- if ( !results.length ) {
- return;
+ me.runing = true;
+ var files = [];
+
+ // 如果有暂停的,则续传
+ file || $.each( me.pool, function( _, v ) {
+ var file = v.file;
+
+ if ( file.getStatus() === Status.INTERRUPT ) {
+ me._trigged = false;
+ files.push(file);
+
+ if (v.waiting) {
+ return;
+ }
+
+ // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
+ v.transport ? v.transport.send() : me._doSend(v);
}
+ });
- callback( results );
+ $.each(files, function() {
+ this.setStatus( Status.PROGRESS );
});
+
+ file || $.each( me.request( 'get-files',
+ Status.INTERRUPT ), function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ me._trigged = false;
+ Base.nextTick( me.__tick );
+ me.owner.trigger('startUpload');
},
- _traverseDirectoryTree: function( entry, results ) {
- var deferred = Base.Deferred(),
- me = this;
+ /**
+ * @event stopUpload
+ * @description 当开始上传流程暂停时触发。
+ * @for Uploader
+ */
- if ( entry.isFile ) {
- entry.file(function( file ) {
- results.push( file );
- deferred.resolve();
- });
- } else if ( entry.isDirectory ) {
- entry.createReader().readEntries(function( entries ) {
- var len = entries.length,
- promises = [],
- arr = [], // 为了保证顺序。
- i;
+ /**
+ * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
+ *
+ * 如果第一个参数是文件,则只暂停指定文件。
+ * @grammar stop() => undefined
+ * @grammar stop( true ) => undefined
+ * @grammar stop( file ) => undefined
+ * @method stop
+ * @for Uploader
+ */
+ stopUpload: function( file, interrupt ) {
+ var me = this;
- for ( i = 0; i < len; i++ ) {
- promises.push( me._traverseDirectoryTree(
- entries[ i ], arr ) );
- }
+ if (file === true) {
+ interrupt = file;
+ file = null;
+ }
- Base.when.apply( Base, promises ).then(function() {
- results.push.apply( results, arr );
- deferred.resolve();
- }, deferred.reject );
- });
+ if ( me.runing === false ) {
+ return;
}
- return deferred.promise();
- },
+ // 如果只是暂停某个文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
- destroy: function() {
- var elem = this.elem;
+ if ( file.getStatus() !== Status.PROGRESS &&
+ file.getStatus() !== Status.QUEUED ) {
+ return;
+ }
- // 还没 init 就调用 destroy
- if (!elem) {
- return;
- }
+ file.setStatus( Status.INTERRUPT );
- elem.off( 'dragenter', this.dragEnterHandler );
- elem.off( 'dragover', this.dragOverHandler );
- elem.off( 'dragleave', this.dragLeaveHandler );
- elem.off( 'drop', this.dropHandler );
- if ( this.options.disableGlobalDnd ) {
- $( document ).off( 'dragover', this.dragOverHandler );
- $( document ).off( 'drop', this.dropHandler );
- }
- }
- });
- });
-
- /**
- * @fileOverview FilePaste
- */
- define('runtime/html5/filepaste',[
- 'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ $.each( me.pool, function( _, v ) {
- return Html5Runtime.register( 'FilePaste', {
- init: function() {
- var opts = this.options,
- elem = this.elem = opts.container,
- accept = '.*',
- arr, i, len, item;
+ // 只 abort 指定的文件,每一个分片。
+ if (v.file === file) {
+ v.transport && v.transport.abort();
- // accetp的mimeTypes中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
+ if (interrupt) {
+ me._putback(v);
+ me._popBlock(v);
+ }
+ }
+ });
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].mimeTypes;
- item && arr.push( item );
- }
+ me.owner.trigger('stopUpload', file);// 暂停,trigger event
- if ( arr.length ) {
- accept = arr.join(',');
- accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
- }
+ return Base.nextTick( me.__tick );
}
- this.accept = accept = new RegExp( accept, 'i' );
- this.hander = Base.bindFn( this._pasteHander, this );
- elem.on( 'paste', this.hander );
- },
- _pasteHander: function( e ) {
- var allowed = [],
- ruid = this.getRuid(),
- items, item, blob, i, len;
+ me.runing = false;
- e = e.originalEvent || e;
- items = e.clipboardData.items;
+ // 正在准备中的文件。
+ if (this._promise && this._promise.file) {
+ this._promise.file.setStatus( Status.INTERRUPT );
+ }
- for ( i = 0, len = items.length; i < len; i++ ) {
- item = items[ i ];
+ interrupt && $.each( me.pool, function( _, v ) {
+ v.transport && v.transport.abort();
+ v.file.setStatus( Status.INTERRUPT );
+ });
- if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
- continue;
+ me.owner.trigger('stopUpload');
+ },
+
+ /**
+ * @method cancelFile
+ * @grammar cancelFile( file ) => undefined
+ * @grammar cancelFile( id ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 标记文件状态为已取消, 同时将中断文件传输。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.cancelFile( file );
+ * })
+ */
+ cancelFile: function( file ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
}
+ });
- allowed.push( new File( ruid, blob ) );
- }
+ file.setStatus( Status.CANCELLED );
+ this.owner.trigger( 'fileDequeued', file );
+ },
- if ( allowed.length ) {
- // 不阻止非文件粘贴(文字粘贴)的事件冒泡
- e.preventDefault();
- e.stopPropagation();
- this.trigger( 'paste', allowed );
- }
+ /**
+ * 判断`Uploader`是否正在上传中。
+ * @grammar isInProgress() => Boolean
+ * @method isInProgress
+ * @for Uploader
+ */
+ isInProgress: function() {
+ return !!this.progress;
},
- destroy: function() {
- this.elem.off( 'paste', this.hander );
- }
- });
- });
-
- /**
- * @fileOverview FilePicker
- */
- define('runtime/html5/filepicker',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
+ _getStats: function() {
+ return this.request('get-stats');
+ },
- var $ = Base.$;
+ /**
+ * 跳过一个文件上传,直接标记指定文件为已上传状态。
+ * @grammar skipFile( file ) => undefined
+ * @method skipFile
+ * @for Uploader
+ */
+ skipFile: function( file, status ) {
+ file = file.id ? file : this.request( 'get-file', file );
- return Html5Runtime.register( 'FilePicker', {
- init: function() {
- var container = this.getRuntime().getContainer(),
- me = this,
- owner = me.owner,
- opts = me.options,
- label = this.label = $( document.createElement('label') ),
- input = this.input = $( document.createElement('input') ),
- arr, i, len, mouseHandler, changeHandler;
+ file.setStatus( status || Status.COMPLETE );
+ file.skipped = true;
- input.attr( 'type', 'file' );
- input.attr( 'capture', 'camera');
- input.attr( 'name', opts.name );
- input.addClass('webuploader-element-invisible');
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
- label.on( 'click', function(e) {
- input.trigger('click');
- e.stopPropagation();
- owner.trigger('dialogopen');
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
});
- label.css({
- opacity: 0,
- width: '100%',
- height: '100%',
- display: 'block',
- cursor: 'pointer',
- background: '#ffffff'
- });
+ this.owner.trigger( 'uploadSkip', file );
+ },
- if ( opts.multiple ) {
- input.attr( 'multiple', 'multiple' );
+ /**
+ * @event uploadFinished
+ * @description 当所有文件上传结束时触发。
+ * @for Uploader
+ */
+ _tick: function() {
+ var me = this,
+ opts = me.options,
+ fn, val;
+
+ // 上一个promise还没有结束,则等待完成后再执行。
+ if ( me._promise ) {
+ return me._promise.always( me.__tick );
}
- // @todo Firefox不支持单独指定后缀
- if ( opts.accept && opts.accept.length > 0 ) {
- arr = [];
+ // 还有位置,且还有文件要处理的话。
+ if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
+ me._trigged = false;
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- arr.push( opts.accept[ i ].mimeTypes );
- }
+ fn = function( val ) {
+ me._promise = null;
- input.attr( 'accept', arr.join(',') );
- }
+ // 有可能是reject过来的,所以要检测val的类型。
+ val && val.file && me._startSend( val );
+ Base.nextTick( me.__tick );
+ };
- container.append( input );
- container.append( label );
+ me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
- mouseHandler = function( e ) {
- owner.trigger( e.type );
- };
+ // 没有要上传的了,且没有正在传输的了。
+ } else if ( !me.remaning && !me._getStats().numOfQueue &&
+ !me._getStats().numOfInterrupt ) {
+ me.runing = false;
- changeHandler = function( e ) {
- var clone;
+ me._trigged || Base.nextTick(function() {
+ me.owner.trigger('uploadFinished');
+ });
+ me._trigged = true;
+ }
+ },
- // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
- if (e.target.files.length === 0){
- return false;
+ _putback: function(block) {
+ var idx;
+
+ block.cuted.unshift(block);
+ idx = this.stack.indexOf(block.cuted);
+
+ if (!~idx) {
+ // 如果不在里面,说明移除过,需要把计数还原回去。
+ this.remaning++;
+ block.file.remaning++;
+ this.stack.unshift(block.cuted);
+ }
+ },
+
+ _getStack: function() {
+ var i = 0,
+ act;
+
+ while ( (act = this.stack[ i++ ]) ) {
+ if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
+ return act;
+ } else if (!act.has() ||
+ act.file.getStatus() !== Status.PROGRESS &&
+ act.file.getStatus() !== Status.INTERRUPT ) {
+
+ // 把已经处理完了的,或者,状态为非 progress(上传中)、
+ // interupt(暂停中) 的移除。
+ this.stack.splice( --i, 1 );
}
+ }
- // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
- me.files = e.target.files;
+ return null;
+ },
+ _nextBlock: function() {
+ var me = this,
+ opts = me.options,
+ act, next, done, preparing;
- // reset input
- clone = this.cloneNode( true );
- clone.value = null;
- this.parentNode.replaceChild( clone, this );
+ // 如果当前文件还有没有需要传输的,则直接返回剩下的。
+ if ( (act = this._getStack()) ) {
- input.off();
- input = $( clone ).on( 'change', changeHandler )
- .on( 'mouseenter mouseleave', mouseHandler );
+ // 是否提前准备下一个文件
+ if ( opts.prepareNextFile && !me.pending.length ) {
+ me._prepareNextFile();
+ }
- owner.trigger('change');
+ return act.shift();
+
+ // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
+ } else if ( me.runing ) {
+
+ // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
+ if ( !me.pending.length && me._getStats().numOfQueue ) {
+ me._prepareNextFile();
+ }
+
+ next = me.pending.shift();
+ done = function( file ) {
+ if ( !file ) {
+ return null;
+ }
+
+ act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
+ me.stack.push(act);
+ return act.shift();
+ };
+
+ // 文件可能还在prepare中,也有可能已经完全准备好了。
+ if ( isPromise( next) ) {
+ preparing = next.file;
+ next = next[ next.pipe ? 'pipe' : 'then' ]( done );
+ next.file = preparing;
+ return next;
+ }
+
+ return done( next );
}
- input.on( 'change', changeHandler);
- label.on( 'mouseenter mouseleave', mouseHandler );
+ },
+
+
+ /**
+ * @event uploadStart
+ * @param {File} file File对象
+ * @description 某个文件开始上传前触发,一个文件只会触发一次。
+ * @for Uploader
+ */
+ _prepareNextFile: function() {
+ var me = this,
+ file = me.request('fetch-file'),
+ pending = me.pending,
+ promise;
+
+ if ( file ) {
+ promise = me.request( 'before-send-file', file, function() {
+ // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
+ if ( file.getStatus() === Status.PROGRESS ||
+ file.getStatus() === Status.INTERRUPT ) {
+ return file;
+ }
+
+ return me._finishFile( file );
+ });
+
+ me.owner.trigger( 'uploadStart', file );
+ file.setStatus( Status.PROGRESS );
+
+ promise.file = file;
+
+ // 如果还在pending中,则替换成文件本身。
+ promise.done(function() {
+ var idx = $.inArray( promise, pending );
+
+ ~idx && pending.splice( idx, 1, file );
+ });
+
+ // befeore-send-file的钩子就有错误发生。
+ promise.fail(function( reason ) {
+ file.setStatus( Status.ERROR, reason );
+ me.owner.trigger( 'uploadError', file, reason );
+ me.owner.trigger( 'uploadComplete', file );
+ });
+
+ pending.push( promise );
+ }
},
+ // 让出位置了,可以让其他分片开始上传
+ _popBlock: function( block ) {
+ var idx = $.inArray( block, this.pool );
- getFiles: function() {
- return this.files;
+ this.pool.splice( idx, 1 );
+ block.file.remaning--;
+ this.remaning--;
+ },
+
+ // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
+ _startSend: function( block ) {
+ var me = this,
+ file = block.file,
+ promise;
+
+ // 有可能在 before-send-file 的 promise 期间改变了文件状态。
+ // 如:暂停,取消
+ // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
+ if ( file.getStatus() !== Status.PROGRESS ) {
+
+ // 如果是中断,则还需要放回去。
+ if (file.getStatus() === Status.INTERRUPT) {
+ me._putback(block);
+ }
+
+ return;
+ }
+
+ me.pool.push( block );
+ me.remaning++;
+
+ // 如果没有分片,则直接使用原始的。
+ // 不会丢失content-type信息。
+ block.blob = block.chunks === 1 ? file.source :
+ file.source.slice( block.start, block.end );
+
+ // hook, 每个分片发送之前可能要做些异步的事情。
+ block.waiting = promise = me.request( 'before-send', block, function() {
+ delete block.waiting;
+
+ // 有可能文件已经上传出错了,所以不需要再传输了。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ me._doSend( block );
+ } else if (block.file.getStatus() !== Status.INTERRUPT) {
+ me._popBlock(block);
+ }
+
+ Base.nextTick(me.__tick);
+ });
+
+ // 如果为fail了,则跳过此分片。
+ promise.fail(function() {
+ delete block.waiting;
+
+ if ( file.remaning === 1 ) {
+ me._finishFile( file ).always(function() {
+ block.percentage = 1;
+ me._popBlock( block );
+ me.owner.trigger( 'uploadComplete', file );
+ Base.nextTick( me.__tick );
+ });
+ } else {
+ block.percentage = 1;
+ me.updateFileProgress( file );
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ }
+ });
+ },
+
+
+ /**
+ * @event uploadBeforeSend
+ * @param {Object} object
+ * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
+ * @param {Object} headers 可以扩展此对象来控制上传头部。
+ * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadAccept
+ * @param {Object} object
+ * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
+ * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadProgress
+ * @param {File} file File对象
+ * @param {Number} percentage 上传进度
+ * @description 上传过程中触发,携带上传进度。
+ * @for Uploader
+ */
+
+
+ /**
+ * @event uploadError
+ * @param {File} file File对象
+ * @param {String} reason 出错的code
+ * @description 当文件上传出错时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadSuccess
+ * @param {File} file File对象
+ * @param {Object} response 服务端返回的数据
+ * @description 当文件上传成功时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadComplete
+ * @param {File} [file] File对象
+ * @description 不管成功或者失败,文件上传完成时触发。
+ * @for Uploader
+ */
+
+ // 做上传操作。
+ _doSend: function( block ) {
+ var me = this,
+ owner = me.owner,
+ opts = $.extend({}, me.options, block.options),
+ file = block.file,
+ tr = new Transport( opts ),
+ data = $.extend({}, opts.formData ),
+ headers = $.extend({}, opts.headers ),
+ requestAccept, ret;
+
+ block.transport = tr;
+
+ tr.on( 'destroy', function() {
+ delete block.transport;
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ });
+
+ // 广播上传进度。以文件为单位。
+ tr.on( 'progress', function( percentage ) {
+ block.percentage = percentage;
+ me.updateFileProgress( file );
+ });
+
+ // 用来询问,是否返回的结果是有错误的。
+ requestAccept = function( reject ) {
+ var fn;
+
+ ret = tr.getResponseAsJson() || {};
+ ret._raw = tr.getResponse();
+ ret._headers = tr.getResponseHeaders();
+ block.response = ret;
+ fn = function( value ) {
+ reject = value;
+ };
+
+ // 服务端响应了,不代表成功了,询问是否响应正确。
+ if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
+ reject = reject || 'server';
+ }
+
+ return reject;
+ };
+
+ // 尝试重试,然后广播文件上传出错。
+ tr.on( 'error', function( type, flag ) {
+ // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
+ // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
+ var typeArr = type.split( '|' ), status, statusText;
+ type = typeArr[0];
+ status = parseFloat( typeArr[1] ),
+ statusText = typeArr[2];
+
+ block.retried = block.retried || 0;
+
+ // 自动重试
+ if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
+ block.retried < opts.chunkRetry ) {
+
+ block.retried++;
+
+ me.retryTimer = setTimeout(function() {
+ tr.send();
+ }, opts.chunkRetryDelay || 1000);
+
+ } else {
+
+ // http status 500 ~ 600
+ if ( !flag && type === 'server' ) {
+ type = requestAccept( type );
+ }
+
+ file.setStatus( Status.ERROR, type );
+ owner.trigger( 'uploadError', file, type, status, statusText );
+ owner.trigger( 'uploadComplete', file );
+ }
+ });
+
+ // 上传成功
+ tr.on( 'load', function() {
+ var reason;
+
+ // 如果非预期,转向上传出错。
+ if ( (reason = requestAccept()) ) {
+ tr.trigger( 'error', reason, true );
+ return;
+ }
+
+ // 全部上传完成。
+ if ( file.remaning === 1 ) {
+ me._finishFile( file, ret );
+ } else {
+ tr.destroy();
+ }
+ });
+
+ // 配置默认的上传字段。
+ data = $.extend( data, {
+ id: file.id,
+ name: file.name,
+ type: file.type,
+ lastModifiedDate: file.lastModifiedDate,
+ size: file.size
+ });
+
+ block.chunks > 1 && $.extend( data, {
+ chunks: block.chunks,
+ chunk: block.chunk
+ });
+
+ // 在发送之间可以添加字段什么的。。。
+ // 如果默认的字段不够使用,可以通过监听此事件来扩展
+ owner.trigger( 'uploadBeforeSend', block, data, headers );
+
+ // 开始发送。
+ tr.appendBlob( opts.fileVal, block.blob, file.name );
+ tr.append( data );
+ tr.setRequestHeader( headers );
+ tr.send();
+ },
+
+ // 完成上传。
+ _finishFile: function( file, ret, hds ) {
+ var owner = this.owner;
+
+ return owner
+ .request( 'after-send-file', arguments, function() {
+ file.setStatus( Status.COMPLETE );
+ owner.trigger( 'uploadSuccess', file, ret, hds );
+ })
+ .fail(function( reason ) {
+
+ // 如果外部已经标记为invalid什么的,不再改状态。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ file.setStatus( Status.ERROR, reason );
+ }
+
+ owner.trigger( 'uploadError', file, reason );
+ })
+ .always(function() {
+ owner.trigger( 'uploadComplete', file );
+ });
+ },
+
+ updateFileProgress: function(file) {
+ var totalPercent = 0,
+ uploaded = 0;
+
+ if (!file.blocks) {
+ return;
+ }
+
+ $.each( file.blocks, function( _, v ) {
+ uploaded += (v.percentage || 0) * (v.end - v.start);
+ });
+
+ totalPercent = uploaded / file.size;
+ this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
},
destroy: function() {
- this.input.off();
- this.label.off();
+ clearTimeout(this.retryTimer);
}
+
});
});
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/util',[
- 'base'
- ], function( Base ) {
-
- var urlAPI = window.createObjectURL && window ||
- window.URL && URL.revokeObjectURL && URL ||
- window.webkitURL,
- createObjectURL = Base.noop,
- revokeObjectURL = createObjectURL;
-
- if ( urlAPI ) {
-
- // 更安全的方式调用,比如android里面就能把context改成其他的对象。
- createObjectURL = function() {
- return urlAPI.createObjectURL.apply( urlAPI, arguments );
- };
-
- revokeObjectURL = function() {
- return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
- };
- }
-
- return {
- createObjectURL: createObjectURL,
- revokeObjectURL: revokeObjectURL,
-
- dataURL2Blob: function( dataURI ) {
- var byteStr, intArray, ab, i, mimetype, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- ab = new ArrayBuffer( byteStr.length );
- intArray = new Uint8Array( ab );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
-
- return this.arrayBufferToBlob( ab, mimetype );
- },
-
- dataURL2ArrayBuffer: function( dataURI ) {
- var byteStr, intArray, i, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- intArray = new Uint8Array( byteStr.length );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- return intArray.buffer;
- },
-
- arrayBufferToBlob: function( buffer, type ) {
- var builder = window.BlobBuilder || window.WebKitBlobBuilder,
- bb;
-
- // android不支持直接new Blob, 只能借助blobbuilder.
- if ( builder ) {
- bb = new builder();
- bb.append( buffer );
- return bb.getBlob( type );
- }
-
- return new Blob([ buffer ], type ? { type: type } : {} );
- },
-
- // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
- // 你得到的结果是png.
- canvasToDataUrl: function( canvas, type, quality ) {
- return canvas.toDataURL( type, quality / 100 );
- },
-
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- parseMeta: function( blob, callback ) {
- callback( false, {});
- },
+ /**
+ * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
+ */
+
+ define('widgets/validator',[
+ 'base',
+ 'uploader',
+ 'file',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile ) {
+
+ var $ = Base.$,
+ validators = {},
+ api;
+
+ /**
+ * @event error
+ * @param {String} type 错误类型。
+ * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
+ *
+ * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
+ * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
+ * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
+ * @for Uploader
+ */
+
+ // 暴露给外面的api
+ api = {
+
+ // 添加验证器
+ addValidator: function( type, cb ) {
+ validators[ type ] = cb;
+ },
+
+ // 移除验证器
+ removeValidator: function( type ) {
+ delete validators[ type ];
+ }
+ };
+
+ // 在Uploader初始化的时候启动Validators的初始化
+ Uploader.register({
+ name: 'validator',
+
+ init: function() {
+ var me = this;
+ Base.nextTick(function() {
+ $.each( validators, function() {
+ this.call( me.owner );
+ });
+ });
+ }
+ });
+
+ /**
+ * @property {int} [fileNumLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总数量, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileNumLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileNumLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
+ if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
+ return false;
+ }
+ if ( count >= max && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return count >= max ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function() {
+ count++;
+ });
+
+ uploader.on( 'fileDequeued', function() {
+ count--;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+
+ /**
+ * @property {int} [fileSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileSizeLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var invalid = count + file.size > max;
+
+ if ( invalid && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return invalid ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ count += file.size;
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ count -= file.size;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+ /**
+ * @property {int} [fileSingleSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSingleSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ max = opts.fileSingleSizeLimit;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+
+ if ( file.size > max ) {
+ file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
+ this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
+ return false;
+ }
+
+ });
+
+ });
+
+ /**
+ * @property {Boolean} [duplicate=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
+ */
+ api.addValidator( 'duplicate', function() {
+ var uploader = this,
+ opts = uploader.options,
+ mapping = {};
+
+ if ( opts.duplicate ) {
+ return;
+ }
+
+ function hashString( str ) {
+ var hash = 0,
+ i = 0,
+ len = str.length,
+ _char;
+
+ for ( ; i < len; i++ ) {
+ _char = str.charCodeAt( i );
+ hash = _char + (hash << 6) + (hash << 16) - hash;
+ }
+
+ return hash;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var hash = file.__hash || (file.__hash = hashString( file.name +
+ file.size + file.lastModifiedDate ));
+
+ // 已经重复了
+ if ( mapping[ hash ] ) {
+ this.trigger( 'error', 'F_DUPLICATE', file );
+ return false;
+ }
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (mapping[ hash ] = true);
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (delete mapping[ hash ]);
+ });
+
+ uploader.on( 'reset', function() {
+ mapping = {};
+ });
+ });
+
+ return api;
+ });
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- updateImageHead: function( data ) {
- return data;
- }
- };
+ /**
+ * @fileOverview Md5
+ */
+ define('lib/md5',[
+ 'runtime/client',
+ 'mediator'
+ ], function( RuntimeClient, Mediator ) {
+
+ function Md5() {
+ RuntimeClient.call( this, 'Md5' );
+ }
+
+ // 让 Md5 具备事件功能。
+ Mediator.installTo( Md5.prototype );
+
+ Md5.prototype.loadFromBlob = function( blob ) {
+ var me = this;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ me.exec( 'loadFromBlob', blob );
+ });
+ };
+
+ Md5.prototype.getResult = function() {
+ return this.exec('getResult');
+ };
+
+ return Md5;
});
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/imagemeta',[
- 'runtime/html5/util'
- ], function( Util ) {
-
- var api;
-
- api = {
- parsers: {
- 0xffe1: []
- },
-
- maxMetaDataSize: 262144,
-
- parse: function( blob, cb ) {
- var me = this,
- fr = new FileReader();
-
- fr.onload = function() {
- cb( false, me._parse( this.result ) );
- fr = fr.onload = fr.onerror = null;
- };
-
- fr.onerror = function( e ) {
- cb( e.message );
- fr = fr.onload = fr.onerror = null;
- };
-
- blob = blob.slice( 0, me.maxMetaDataSize );
- fr.readAsArrayBuffer( blob.getSource() );
- },
-
- _parse: function( buffer, noParse ) {
- if ( buffer.byteLength < 6 ) {
- return;
- }
-
- var dataview = new DataView( buffer ),
- offset = 2,
- maxOffset = dataview.byteLength - 4,
- headLength = offset,
- ret = {},
- markerBytes, markerLength, parsers, i;
-
- if ( dataview.getUint16( 0 ) === 0xffd8 ) {
-
- while ( offset < maxOffset ) {
- markerBytes = dataview.getUint16( offset );
-
- if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
- markerBytes === 0xfffe ) {
-
- markerLength = dataview.getUint16( offset + 2 ) + 2;
-
- if ( offset + markerLength > dataview.byteLength ) {
- break;
- }
-
- parsers = api.parsers[ markerBytes ];
-
- if ( !noParse && parsers ) {
- for ( i = 0; i < parsers.length; i += 1 ) {
- parsers[ i ].call( api, dataview, offset,
- markerLength, ret );
- }
- }
-
- offset += markerLength;
- headLength = offset;
- } else {
- break;
- }
- }
-
- if ( headLength > 6 ) {
- if ( buffer.slice ) {
- ret.imageHead = buffer.slice( 2, headLength );
- } else {
- // Workaround for IE10, which does not yet
- // support ArrayBuffer.slice:
- ret.imageHead = new Uint8Array( buffer )
- .subarray( 2, headLength );
- }
- }
- }
-
- return ret;
- },
-
- updateImageHead: function( buffer, head ) {
- var data = this._parse( buffer, true ),
- buf1, buf2, bodyoffset;
-
-
- bodyoffset = 2;
- if ( data.imageHead ) {
- bodyoffset = 2 + data.imageHead.byteLength;
- }
-
- if ( buffer.slice ) {
- buf2 = buffer.slice( bodyoffset );
- } else {
- buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
- }
-
- buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
-
- buf1[ 0 ] = 0xFF;
- buf1[ 1 ] = 0xD8;
- buf1.set( new Uint8Array( head ), 2 );
- buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
-
- return buf1.buffer;
- }
- };
-
- Util.parseMeta = function() {
- return api.parse.apply( api, arguments );
- };
-
- Util.updateImageHead = function() {
- return api.updateImageHead.apply( api, arguments );
- };
-
- return api;
+ /**
+ * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
+ */
+ define('widgets/md5',[
+ 'base',
+ 'uploader',
+ 'lib/md5',
+ 'lib/blob',
+ 'widgets/widget'
+ ], function( Base, Uploader, Md5, Blob ) {
+
+ return Uploader.register({
+ name: 'md5',
+
+
+ /**
+ * 计算文件 md5 值,返回一个 promise 对象,可以监听 progress 进度。
+ *
+ *
+ * @method md5File
+ * @grammar md5File( file[, start[, end]] ) => promise
+ * @for Uploader
+ * @example
+ *
+ * uploader.on( 'fileQueued', function( file ) {
+ * var $li = ...;
+ *
+ * uploader.md5File( file )
+ *
+ * // 及时显示进度
+ * .progress(function(percentage) {
+ * console.log('Percentage:', percentage);
+ * })
+ *
+ * // 完成
+ * .then(function(val) {
+ * console.log('md5 result:', val);
+ * });
+ *
+ * });
+ */
+ md5File: function( file, start, end ) {
+ var md5 = new Md5(),
+ deferred = Base.Deferred(),
+ blob = (file instanceof Blob) ? file :
+ this.request( 'get-file', file ).source;
+
+ md5.on( 'progress load', function( e ) {
+ e = e || {};
+ deferred.notify( e.total ? e.loaded / e.total : 1 );
+ });
+
+ md5.on( 'complete', function() {
+ deferred.resolve( md5.getResult() );
+ });
+
+ md5.on( 'error', function( reason ) {
+ deferred.reject( reason );
+ });
+
+ if ( arguments.length > 1 ) {
+ start = start || 0;
+ end = end || 0;
+ start < 0 && (start = blob.size + start);
+ end < 0 && (end = blob.size + end);
+ end = Math.min( end, blob.size );
+ blob = blob.slice( start, end );
+ }
+
+ md5.loadFromBlob( blob );
+
+ return deferred.promise();
+ }
+ });
});
- /**
- * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
- * 暂时项目中只用了orientation.
- *
- * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
- * @fileOverview EXIF解析
- */
-
- // Sample
- // ====================================
- // Make : Apple
- // Model : iPhone 4S
- // Orientation : 1
- // XResolution : 72 [72/1]
- // YResolution : 72 [72/1]
- // ResolutionUnit : 2
- // Software : QuickTime 7.7.1
- // DateTime : 2013:09:01 22:53:55
- // ExifIFDPointer : 190
- // ExposureTime : 0.058823529411764705 [1/17]
- // FNumber : 2.4 [12/5]
- // ExposureProgram : Normal program
- // ISOSpeedRatings : 800
- // ExifVersion : 0220
- // DateTimeOriginal : 2013:09:01 22:52:51
- // DateTimeDigitized : 2013:09:01 22:52:51
- // ComponentsConfiguration : YCbCr
- // ShutterSpeedValue : 4.058893515764426
- // ApertureValue : 2.5260688216892597 [4845/1918]
- // BrightnessValue : -0.3126686601998395
- // MeteringMode : Pattern
- // Flash : Flash did not fire, compulsory flash mode
- // FocalLength : 4.28 [107/25]
- // SubjectArea : [4 values]
- // FlashpixVersion : 0100
- // ColorSpace : 1
- // PixelXDimension : 2448
- // PixelYDimension : 3264
- // SensingMethod : One-chip color area sensor
- // ExposureMode : 0
- // WhiteBalance : Auto white balance
- // FocalLengthIn35mmFilm : 35
- // SceneCaptureType : Standard
- define('runtime/html5/imagemeta/exif',[
- 'base',
- 'runtime/html5/imagemeta'
- ], function( Base, ImageMeta ) {
-
- var EXIF = {};
-
- EXIF.ExifMap = function() {
- return this;
- };
-
- EXIF.ExifMap.prototype.map = {
- 'Orientation': 0x0112
- };
-
- EXIF.ExifMap.prototype.get = function( id ) {
- return this[ id ] || this[ this.map[ id ] ];
- };
-
- EXIF.exifTagTypes = {
- // byte, 8-bit unsigned int:
- 1: {
- getValue: function( dataView, dataOffset ) {
- return dataView.getUint8( dataOffset );
- },
- size: 1
- },
-
- // ascii, 8-bit byte:
- 2: {
- getValue: function( dataView, dataOffset ) {
- return String.fromCharCode( dataView.getUint8( dataOffset ) );
- },
- size: 1,
- ascii: true
- },
-
- // short, 16 bit int:
- 3: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint16( dataOffset, littleEndian );
- },
- size: 2
- },
-
- // long, 32 bit int:
- 4: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // rational = two long values,
- // first is numerator, second is denominator:
- 5: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian ) /
- dataView.getUint32( dataOffset + 4, littleEndian );
- },
- size: 8
- },
-
- // slong, 32 bit signed int:
- 9: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // srational, two slongs, first is numerator, second is denominator:
- 10: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian ) /
- dataView.getInt32( dataOffset + 4, littleEndian );
- },
- size: 8
- }
- };
-
- // undefined, 8-bit byte, value depending on field:
- EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
-
- EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
- littleEndian ) {
-
- var tagType = EXIF.exifTagTypes[ type ],
- tagSize, dataOffset, values, i, str, c;
-
- if ( !tagType ) {
- Base.log('Invalid Exif data: Invalid tag type.');
- return;
- }
-
- tagSize = tagType.size * length;
-
- // Determine if the value is contained in the dataOffset bytes,
- // or if the value at the dataOffset is a pointer to the actual data:
- dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
- littleEndian ) : (offset + 8);
-
- if ( dataOffset + tagSize > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid data offset.');
- return;
- }
-
- if ( length === 1 ) {
- return tagType.getValue( dataView, dataOffset, littleEndian );
- }
-
- values = [];
-
- for ( i = 0; i < length; i += 1 ) {
- values[ i ] = tagType.getValue( dataView,
- dataOffset + i * tagType.size, littleEndian );
- }
-
- if ( tagType.ascii ) {
- str = '';
-
- // Concatenate the chars:
- for ( i = 0; i < values.length; i += 1 ) {
- c = values[ i ];
-
- // Ignore the terminating NULL byte(s):
- if ( c === '\u0000' ) {
- break;
- }
- str += c;
- }
-
- return str;
- }
- return values;
- };
-
- EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
- data ) {
-
- var tag = dataView.getUint16( offset, littleEndian );
- data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
- dataView.getUint16( offset + 2, littleEndian ), // tag type
- dataView.getUint32( offset + 4, littleEndian ), // tag length
- littleEndian );
- };
-
- EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
- littleEndian, data ) {
-
- var tagsNumber, dirEndOffset, i;
-
- if ( dirOffset + 6 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory offset.');
- return;
- }
-
- tagsNumber = dataView.getUint16( dirOffset, littleEndian );
- dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
-
- if ( dirEndOffset + 4 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory size.');
- return;
- }
-
- for ( i = 0; i < tagsNumber; i += 1 ) {
- this.parseExifTag( dataView, tiffOffset,
- dirOffset + 2 + 12 * i, // tag offset
- littleEndian, data );
- }
-
- // Return the offset to the next directory:
- return dataView.getUint32( dirEndOffset, littleEndian );
- };
-
- // EXIF.getExifThumbnail = function(dataView, offset, length) {
- // var hexData,
- // i,
- // b;
- // if (!length || offset + length > dataView.byteLength) {
- // Base.log('Invalid Exif data: Invalid thumbnail data.');
- // return;
- // }
- // hexData = [];
- // for (i = 0; i < length; i += 1) {
- // b = dataView.getUint8(offset + i);
- // hexData.push((b < 16 ? '0' : '') + b.toString(16));
- // }
- // return 'data:image/jpeg,%' + hexData.join('%');
- // };
-
- EXIF.parseExifData = function( dataView, offset, length, data ) {
-
- var tiffOffset = offset + 10,
- littleEndian, dirOffset;
-
- // Check for the ASCII code for "Exif" (0x45786966):
- if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
- // No Exif data, might be XMP data instead
- return;
- }
- if ( tiffOffset + 8 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid segment size.');
- return;
- }
-
- // Check for the two null bytes:
- if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
- Base.log('Invalid Exif data: Missing byte alignment offset.');
- return;
- }
-
- // Check the byte alignment:
- switch ( dataView.getUint16( tiffOffset ) ) {
- case 0x4949:
- littleEndian = true;
- break;
-
- case 0x4D4D:
- littleEndian = false;
- break;
-
- default:
- Base.log('Invalid Exif data: Invalid byte alignment marker.');
- return;
- }
-
- // Check for the TIFF tag marker (0x002A):
- if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
- Base.log('Invalid Exif data: Missing TIFF marker.');
- return;
- }
-
- // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
- dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
- // Create the exif object to store the tags:
- data.exif = new EXIF.ExifMap();
- // Parse the tags of the main image directory and retrieve the
- // offset to the next directory, usually the thumbnail directory:
- dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
- tiffOffset + dirOffset, littleEndian, data );
-
- // 尝试读取缩略图
- // if ( dirOffset ) {
- // thumbnailData = {exif: {}};
- // dirOffset = EXIF.parseExifTags(
- // dataView,
- // tiffOffset,
- // tiffOffset + dirOffset,
- // littleEndian,
- // thumbnailData
- // );
-
- // // Check for JPEG Thumbnail offset:
- // if (thumbnailData.exif[0x0201]) {
- // data.exif.Thumbnail = EXIF.getExifThumbnail(
- // dataView,
- // tiffOffset + thumbnailData.exif[0x0201],
- // thumbnailData.exif[0x0202] // Thumbnail data length
- // );
- // }
- // }
- };
-
- ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
- return EXIF;
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/compbase',[],function() {
+
+ function CompBase( owner, runtime ) {
+
+ this.owner = owner;
+ this.options = owner.options;
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.getRuid = function() {
+ return runtime.uid;
+ };
+
+ this.trigger = function() {
+ return owner.trigger.apply( owner, arguments );
+ };
+ }
+
+ return CompBase;
});
- /**
- * 这个方式性能不行,但是可以解决android里面的toDataUrl的bug
- * android里面toDataUrl('image/jpege')得到的结果却是png.
- *
- * 所以这里没辙,只能借助这个工具
- * @fileOverview jpeg encoder
- */
- define('runtime/html5/jpegencoder',[], function( require, exports, module ) {
-
- /*
- Copyright (c) 2008, Adobe Systems Incorporated
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
- * Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- * Neither the name of Adobe Systems Incorporated nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /*
- JPEG encoder ported to JavaScript and optimized by Andreas Ritter, www.bytestrom.eu, 11/2009
-
- Basic GUI blocking jpeg encoder
- */
-
- function JPEGEncoder(quality) {
- var self = this;
- var fround = Math.round;
- var ffloor = Math.floor;
- var YTable = new Array(64);
- var UVTable = new Array(64);
- var fdtbl_Y = new Array(64);
- var fdtbl_UV = new Array(64);
- var YDC_HT;
- var UVDC_HT;
- var YAC_HT;
- var UVAC_HT;
-
- var bitcode = new Array(65535);
- var category = new Array(65535);
- var outputfDCTQuant = new Array(64);
- var DU = new Array(64);
- var byteout = [];
- var bytenew = 0;
- var bytepos = 7;
-
- var YDU = new Array(64);
- var UDU = new Array(64);
- var VDU = new Array(64);
- var clt = new Array(256);
- var RGB_YUV_TABLE = new Array(2048);
- var currentQuality;
-
- var ZigZag = [
- 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
- ];
-
- var std_dc_luminance_nrcodes = [0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0];
- var std_dc_luminance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
- var std_ac_luminance_nrcodes = [0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d];
- var std_ac_luminance_values = [
- 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,
- 0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,
- 0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08,
- 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,
- 0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,
- 0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28,
- 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,
- 0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,
- 0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,
- 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,
- 0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,
- 0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89,
- 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,
- 0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,
- 0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,
- 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,
- 0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,
- 0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2,
- 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,
- 0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
- 0xf9,0xfa
- ];
-
- var std_dc_chrominance_nrcodes = [0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0];
- var std_dc_chrominance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
- var std_ac_chrominance_nrcodes = [0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77];
- var std_ac_chrominance_values = [
- 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,
- 0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,
- 0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91,
- 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,
- 0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,
- 0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,
- 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,
- 0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,
- 0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,
- 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,
- 0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,
- 0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,
- 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,
- 0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
- 0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,
- 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
- 0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,
- 0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
- 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,
- 0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
- 0xf9,0xfa
- ];
-
- function initQuantTables(sf){
- var YQT = [
- 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
- ];
-
- for (var i = 0; i < 64; i++) {
- var t = ffloor((YQT[i]*sf+50)/100);
- if (t < 1) {
- t = 1;
- } else if (t > 255) {
- t = 255;
- }
- YTable[ZigZag[i]] = t;
- }
- var UVQT = [
- 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
- ];
- for (var j = 0; j < 64; j++) {
- var u = ffloor((UVQT[j]*sf+50)/100);
- if (u < 1) {
- u = 1;
- } else if (u > 255) {
- u = 255;
- }
- UVTable[ZigZag[j]] = u;
- }
- var aasf = [
- 1.0, 1.387039845, 1.306562965, 1.175875602,
- 1.0, 0.785694958, 0.541196100, 0.275899379
- ];
- var k = 0;
- for (var row = 0; row < 8; row++)
- {
- for (var col = 0; col < 8; col++)
- {
- fdtbl_Y[k] = (1.0 / (YTable [ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
- fdtbl_UV[k] = (1.0 / (UVTable[ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
- k++;
- }
- }
- }
-
- function computeHuffmanTbl(nrcodes, std_table){
- var codevalue = 0;
- var pos_in_table = 0;
- var HT = new Array();
- for (var k = 1; k <= 16; k++) {
- for (var j = 1; j <= nrcodes[k]; j++) {
- HT[std_table[pos_in_table]] = [];
- HT[std_table[pos_in_table]][0] = codevalue;
- HT[std_table[pos_in_table]][1] = k;
- pos_in_table++;
- codevalue++;
- }
- codevalue*=2;
- }
- return HT;
- }
-
- function initHuffmanTbl()
- {
- YDC_HT = computeHuffmanTbl(std_dc_luminance_nrcodes,std_dc_luminance_values);
- UVDC_HT = computeHuffmanTbl(std_dc_chrominance_nrcodes,std_dc_chrominance_values);
- YAC_HT = computeHuffmanTbl(std_ac_luminance_nrcodes,std_ac_luminance_values);
- UVAC_HT = computeHuffmanTbl(std_ac_chrominance_nrcodes,std_ac_chrominance_values);
- }
-
- function initCategoryNumber()
- {
- var nrlower = 1;
- var nrupper = 2;
- for (var cat = 1; cat <= 15; cat++) {
- //Positive numbers
- for (var nr = nrlower; nr>0] = 38470 * i;
- RGB_YUV_TABLE[(i+ 512)>>0] = 7471 * i + 0x8000;
- RGB_YUV_TABLE[(i+ 768)>>0] = -11059 * i;
- RGB_YUV_TABLE[(i+1024)>>0] = -21709 * i;
- RGB_YUV_TABLE[(i+1280)>>0] = 32768 * i + 0x807FFF;
- RGB_YUV_TABLE[(i+1536)>>0] = -27439 * i;
- RGB_YUV_TABLE[(i+1792)>>0] = - 5329 * i;
- }
- }
-
- // IO functions
- function writeBits(bs)
- {
- var value = bs[0];
- var posval = bs[1]-1;
- while ( posval >= 0 ) {
- if (value & (1 << posval) ) {
- bytenew |= (1 << bytepos);
- }
- posval--;
- bytepos--;
- if (bytepos < 0) {
- if (bytenew == 0xFF) {
- writeByte(0xFF);
- writeByte(0);
- }
- else {
- writeByte(bytenew);
- }
- bytepos=7;
- bytenew=0;
- }
- }
- }
-
- function writeByte(value)
- {
- byteout.push(clt[value]); // write char directly instead of converting later
- }
-
- function writeWord(value)
- {
- writeByte((value>>8)&0xFF);
- writeByte((value )&0xFF);
- }
-
- // DCT & quantization core
- function fDCTQuant(data, fdtbl)
- {
- var d0, d1, d2, d3, d4, d5, d6, d7;
- /* Pass 1: process rows. */
- var dataOff=0;
- var i;
- var I8 = 8;
- var I64 = 64;
- for (i=0; i 0.0) ? ((fDCTQuant + 0.5)|0) : ((fDCTQuant - 0.5)|0);
- //outputfDCTQuant[i] = fround(fDCTQuant);
-
- }
- return outputfDCTQuant;
- }
-
- function writeAPP0()
- {
- writeWord(0xFFE0); // marker
- writeWord(16); // length
- writeByte(0x4A); // J
- writeByte(0x46); // F
- writeByte(0x49); // I
- writeByte(0x46); // F
- writeByte(0); // = "JFIF",'\0'
- writeByte(1); // versionhi
- writeByte(1); // versionlo
- writeByte(0); // xyunits
- writeWord(1); // xdensity
- writeWord(1); // ydensity
- writeByte(0); // thumbnwidth
- writeByte(0); // thumbnheight
- }
-
- function writeSOF0(width, height)
- {
- writeWord(0xFFC0); // marker
- writeWord(17); // length, truecolor YUV JPG
- writeByte(8); // precision
- writeWord(height);
- writeWord(width);
- writeByte(3); // nrofcomponents
- writeByte(1); // IdY
- writeByte(0x11); // HVY
- writeByte(0); // QTY
- writeByte(2); // IdU
- writeByte(0x11); // HVU
- writeByte(1); // QTU
- writeByte(3); // IdV
- writeByte(0x11); // HVV
- writeByte(1); // QTV
- }
-
- function writeDQT()
- {
- writeWord(0xFFDB); // marker
- writeWord(132); // length
- writeByte(0);
- for (var i=0; i<64; i++) {
- writeByte(YTable[i]);
- }
- writeByte(1);
- for (var j=0; j<64; j++) {
- writeByte(UVTable[j]);
- }
- }
-
- function writeDHT()
- {
- writeWord(0xFFC4); // marker
- writeWord(0x01A2); // length
-
- writeByte(0); // HTYDCinfo
- for (var i=0; i<16; i++) {
- writeByte(std_dc_luminance_nrcodes[i+1]);
- }
- for (var j=0; j<=11; j++) {
- writeByte(std_dc_luminance_values[j]);
- }
-
- writeByte(0x10); // HTYACinfo
- for (var k=0; k<16; k++) {
- writeByte(std_ac_luminance_nrcodes[k+1]);
- }
- for (var l=0; l<=161; l++) {
- writeByte(std_ac_luminance_values[l]);
- }
-
- writeByte(1); // HTUDCinfo
- for (var m=0; m<16; m++) {
- writeByte(std_dc_chrominance_nrcodes[m+1]);
- }
- for (var n=0; n<=11; n++) {
- writeByte(std_dc_chrominance_values[n]);
- }
-
- writeByte(0x11); // HTUACinfo
- for (var o=0; o<16; o++) {
- writeByte(std_ac_chrominance_nrcodes[o+1]);
- }
- for (var p=0; p<=161; p++) {
- writeByte(std_ac_chrominance_values[p]);
- }
- }
-
- function writeSOS()
- {
- writeWord(0xFFDA); // marker
- writeWord(12); // length
- writeByte(3); // nrofcomponents
- writeByte(1); // IdY
- writeByte(0); // HTY
- writeByte(2); // IdU
- writeByte(0x11); // HTU
- writeByte(3); // IdV
- writeByte(0x11); // HTV
- writeByte(0); // Ss
- writeByte(0x3f); // Se
- writeByte(0); // Bf
- }
-
- function processDU(CDU, fdtbl, DC, HTDC, HTAC){
- var EOB = HTAC[0x00];
- var M16zeroes = HTAC[0xF0];
- var pos;
- var I16 = 16;
- var I63 = 63;
- var I64 = 64;
- var DU_DCT = fDCTQuant(CDU, fdtbl);
- //ZigZag reorder
- for (var j=0;j0)&&(DU[end0pos]==0); end0pos--) {};
- //end0pos = first element in reverse order !=0
- if ( end0pos == 0) {
- writeBits(EOB);
- return DC;
- }
- var i = 1;
- var lng;
- while ( i <= end0pos ) {
- var startpos = i;
- for (; (DU[i]==0) && (i<=end0pos); ++i) {}
- var nrzeroes = i-startpos;
- if ( nrzeroes >= I16 ) {
- lng = nrzeroes>>4;
- for (var nrmarker=1; nrmarker <= lng; ++nrmarker)
- writeBits(M16zeroes);
- nrzeroes = nrzeroes&0xF;
- }
- pos = 32767+DU[i];
- writeBits(HTAC[(nrzeroes<<4)+category[pos]]);
- writeBits(bitcode[pos]);
- i++;
- }
- if ( end0pos != I63 ) {
- writeBits(EOB);
- }
- return DC;
- }
-
- function initCharLookupTable(){
- var sfcc = String.fromCharCode;
- for(var i=0; i < 256; i++){ ///// ACHTUNG // 255
- clt[i] = sfcc(i);
- }
- }
-
- this.encode = function(image,quality) // image data object
- {
- // var time_start = new Date().getTime();
-
- if(quality) setQuality(quality);
-
- // Initialize bit writer
- byteout = new Array();
- bytenew=0;
- bytepos=7;
-
- // Add JPEG headers
- writeWord(0xFFD8); // SOI
- writeAPP0();
- writeDQT();
- writeSOF0(image.width,image.height);
- writeDHT();
- writeSOS();
-
-
- // Encode 8x8 macroblocks
- var DCY=0;
- var DCU=0;
- var DCV=0;
-
- bytenew=0;
- bytepos=7;
-
-
- this.encode.displayName = "_encode_";
-
- var imageData = image.data;
- var width = image.width;
- var height = image.height;
-
- var quadWidth = width*4;
- var tripleWidth = width*3;
-
- var x, y = 0;
- var r, g, b;
- var start,p, col,row,pos;
- while(y < height){
- x = 0;
- while(x < quadWidth){
- start = quadWidth * y + x;
- p = start;
- col = -1;
- row = 0;
-
- for(pos=0; pos < 64; pos++){
- row = pos >> 3;// /8
- col = ( pos & 7 ) * 4; // %8
- p = start + ( row * quadWidth ) + col;
-
- if(y+row >= height){ // padding bottom
- p-= (quadWidth*(y+1+row-height));
- }
-
- if(x+col >= quadWidth){ // padding right
- p-= ((x+col) - quadWidth +4)
- }
-
- r = imageData[ p++ ];
- g = imageData[ p++ ];
- b = imageData[ p++ ];
-
-
- /* // calculate YUV values dynamically
- YDU[pos]=((( 0.29900)*r+( 0.58700)*g+( 0.11400)*b))-128; //-0x80
- UDU[pos]=(((-0.16874)*r+(-0.33126)*g+( 0.50000)*b));
- VDU[pos]=((( 0.50000)*r+(-0.41869)*g+(-0.08131)*b));
- */
-
- // use lookup table (slightly faster)
- YDU[pos] = ((RGB_YUV_TABLE[r] + RGB_YUV_TABLE[(g + 256)>>0] + RGB_YUV_TABLE[(b + 512)>>0]) >> 16)-128;
- UDU[pos] = ((RGB_YUV_TABLE[(r + 768)>>0] + RGB_YUV_TABLE[(g + 1024)>>0] + RGB_YUV_TABLE[(b + 1280)>>0]) >> 16)-128;
- VDU[pos] = ((RGB_YUV_TABLE[(r + 1280)>>0] + RGB_YUV_TABLE[(g + 1536)>>0] + RGB_YUV_TABLE[(b + 1792)>>0]) >> 16)-128;
-
- }
-
- DCY = processDU(YDU, fdtbl_Y, DCY, YDC_HT, YAC_HT);
- DCU = processDU(UDU, fdtbl_UV, DCU, UVDC_HT, UVAC_HT);
- DCV = processDU(VDU, fdtbl_UV, DCV, UVDC_HT, UVAC_HT);
- x+=32;
- }
- y+=8;
- }
-
-
- ////////////////////////////////////////////////////////////////
-
- // Do the bit alignment of the EOI marker
- if ( bytepos >= 0 ) {
- var fillbits = [];
- fillbits[1] = bytepos+1;
- fillbits[0] = (1<<(bytepos+1))-1;
- writeBits(fillbits);
- }
-
- writeWord(0xFFD9); //EOI
-
- var jpegDataUri = 'data:image/jpeg;base64,' + btoa(byteout.join(''));
-
- byteout = [];
-
- // benchmarking
- // var duration = new Date().getTime() - time_start;
- // console.log('Encoding time: '+ currentQuality + 'ms');
- //
-
- return jpegDataUri
- }
-
- function setQuality(quality){
- if (quality <= 0) {
- quality = 1;
- }
- if (quality > 100) {
- quality = 100;
- }
-
- if(currentQuality == quality) return // don't recalc if unchanged
-
- var sf = 0;
- if (quality < 50) {
- sf = Math.floor(5000 / quality);
- } else {
- sf = Math.floor(200 - quality*2);
- }
-
- initQuantTables(sf);
- currentQuality = quality;
- // console.log('Quality set to: '+quality +'%');
- }
-
- function init(){
- // var time_start = new Date().getTime();
- if(!quality) quality = 50;
- // Create tables
- initCharLookupTable()
- initHuffmanTbl();
- initCategoryNumber();
- initRGBYUVTable();
-
- setQuality(quality);
- // var duration = new Date().getTime() - time_start;
- // console.log('Initialization '+ duration + 'ms');
- }
-
- init();
-
- };
-
- JPEGEncoder.encode = function( data, quality ) {
- var encoder = new JPEGEncoder( quality );
-
- return encoder.encode( data );
- }
-
- return JPEGEncoder;
+ /**
+ * @fileOverview Html5Runtime
+ */
+ define('runtime/html5/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var type = 'html5',
+ components = {};
+
+ function Html5Runtime() {
+ var pool = {},
+ me = this,
+ destroy = this.destroy;
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ if ( components[ comp ] ) {
+ instance = pool[ uid ] = pool[ uid ] ||
+ new components[ comp ]( client, me );
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+ };
+
+ me.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+ }
+
+ Base.inherits( Runtime, {
+ constructor: Html5Runtime,
+
+ // 不需要连接其他程序,直接执行callback
+ init: function() {
+ var me = this;
+ setTimeout(function() {
+ me.trigger('ready');
+ }, 1 );
+ }
+
+ });
+
+ // 注册Components
+ Html5Runtime.register = function( name, component ) {
+ var klass = components[ name ] = Base.inherits( CompBase, component );
+ return klass;
+ };
+
+ // 注册html5运行时。
+ // 只有在支持的前提下注册。
+ if ( window.Blob && window.FileReader && window.DataView ) {
+ Runtime.addRuntime( type, Html5Runtime );
+ }
+
+ return Html5Runtime;
});
- /**
- * @fileOverview Fix android canvas.toDataUrl bug.
- */
- define('runtime/html5/androidpatch',[
- 'runtime/html5/util',
- 'runtime/html5/jpegencoder',
- 'base'
- ], function( Util, encoder, Base ) {
- var origin = Util.canvasToDataUrl,
- supportJpeg;
-
- Util.canvasToDataUrl = function( canvas, type, quality ) {
- var ctx, w, h, fragement, parts;
-
- // 非android手机直接跳过。
- if ( !Base.os.android ) {
- return origin.apply( null, arguments );
- }
-
- // 检测是否canvas支持jpeg导出,根据数据格式来判断。
- // JPEG 前两位分别是:255, 216
- if ( type === 'image/jpeg' && typeof supportJpeg === 'undefined' ) {
- fragement = origin.apply( null, arguments );
-
- parts = fragement.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- fragement = atob( parts[ 1 ] );
- } else {
- fragement = decodeURIComponent( parts[ 1 ] );
- }
-
- fragement = fragement.substring( 0, 2 );
-
- supportJpeg = fragement.charCodeAt( 0 ) === 255 &&
- fragement.charCodeAt( 1 ) === 216;
- }
-
- // 只有在android环境下才修复
- if ( type === 'image/jpeg' && !supportJpeg ) {
- w = canvas.width;
- h = canvas.height;
- ctx = canvas.getContext('2d');
-
- return encoder.encode( ctx.getImageData( 0, 0, w, h ), quality );
- }
-
- return origin.apply( null, arguments );
- };
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/html5/blob',[
+ 'runtime/html5/runtime',
+ 'lib/blob'
+ ], function( Html5Runtime, Blob ) {
+
+ return Html5Runtime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.owner.source,
+ slice = blob.slice || blob.webkitSlice || blob.mozSlice;
+
+ blob = slice.call( blob, start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
});
- /**
- * @fileOverview Image
- */
- define('runtime/html5/image',[
- 'base',
- 'runtime/html5/runtime',
- 'runtime/html5/util'
- ], function( Base, Html5Runtime, Util ) {
-
- var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
-
- return Html5Runtime.register( 'Image', {
-
- // flag: 标记是否被修改过。
- modified: false,
-
- init: function() {
- var me = this,
- img = new Image();
-
- img.onload = function() {
-
- me._info = {
- type: me.type,
- width: this.width,
- height: this.height
- };
-
- //debugger;
-
- // 读取meta信息。
- if ( !me._metas && 'image/jpeg' === me.type ) {
- Util.parseMeta( me._blob, function( error, ret ) {
- me._metas = ret;
- me.owner.trigger('load');
- });
- } else {
- me.owner.trigger('load');
- }
- };
-
- img.onerror = function() {
- me.owner.trigger('error');
- };
-
- me._img = img;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- img = me._img;
-
- me._blob = blob;
- me.type = blob.type;
- img.src = Util.createObjectURL( blob.getSource() );
- me.owner.once( 'load', function() {
- Util.revokeObjectURL( img.src );
- });
- },
-
- resize: function( width, height ) {
- var canvas = this._canvas ||
- (this._canvas = document.createElement('canvas'));
-
- this._resize( this._img, canvas, width, height );
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'resize' );
- },
-
- crop: function( x, y, w, h, s ) {
- var cvs = this._canvas ||
- (this._canvas = document.createElement('canvas')),
- opts = this.options,
- img = this._img,
- iw = img.naturalWidth,
- ih = img.naturalHeight,
- orientation = this.getOrientation();
-
- s = s || 1;
-
- // todo 解决 orientation 的问题。
- // values that require 90 degree rotation
- // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // switch ( orientation ) {
- // case 6:
- // tmp = x;
- // x = y;
- // y = iw * s - tmp - w;
- // console.log(ih * s, tmp, w)
- // break;
- // }
-
- // (w ^= h, h ^= w, w ^= h);
- // }
-
- cvs.width = w;
- cvs.height = h;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
- this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
-
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'crop' );
- },
-
- getAsBlob: function( type ) {
- var blob = this._blob,
- opts = this.options,
- canvas;
-
- type = type || this.type;
-
- // blob需要重新生成。
- if ( this.modified || this.type !== type ) {
- canvas = this._canvas;
-
- if ( type === 'image/jpeg' ) {
-
- blob = Util.canvasToDataUrl( canvas, type, opts.quality );
-
- if ( opts.preserveHeaders && this._metas &&
- this._metas.imageHead ) {
-
- blob = Util.dataURL2ArrayBuffer( blob );
- blob = Util.updateImageHead( blob,
- this._metas.imageHead );
- blob = Util.arrayBufferToBlob( blob, type );
- return blob;
- }
- } else {
- blob = Util.canvasToDataUrl( canvas, type );
- }
-
- blob = Util.dataURL2Blob( blob );
- }
-
- return blob;
- },
-
- getAsDataUrl: function( type ) {
- var opts = this.options;
-
- type = type || this.type;
-
- if ( type === 'image/jpeg' ) {
- return Util.canvasToDataUrl( this._canvas, type, opts.quality );
- } else {
- return this._canvas.toDataURL( type );
- }
- },
-
- getOrientation: function() {
- return this._metas && this._metas.exif &&
- this._metas.exif.get('Orientation') || 1;
- },
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._metas = val;
- return this;
- }
-
- // getter
- return this._metas;
- },
-
- destroy: function() {
- var canvas = this._canvas;
- this._img.onload = null;
-
- if ( canvas ) {
- canvas.getContext('2d')
- .clearRect( 0, 0, canvas.width, canvas.height );
- canvas.width = canvas.height = 0;
- this._canvas = null;
- }
-
- // 释放内存。非常重要,否则释放不了image的内存。
- this._img.src = BLANK;
- this._img = this._blob = null;
- },
-
- _resize: function( img, cvs, width, height ) {
- var opts = this.options,
- naturalWidth = img.width,
- naturalHeight = img.height,
- orientation = this.getOrientation(),
- scale, w, h, x, y;
-
- // values that require 90 degree rotation
- if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // 交换width, height的值。
- width ^= height;
- height ^= width;
- width ^= height;
- }
-
- scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
- height / naturalHeight );
-
- // 不允许放大。
- opts.allowMagnify || (scale = Math.min( 1, scale ));
-
- w = naturalWidth * scale;
- h = naturalHeight * scale;
-
- if ( opts.crop ) {
- cvs.width = width;
- cvs.height = height;
- } else {
- cvs.width = w;
- cvs.height = h;
- }
-
- x = (cvs.width - w) / 2;
- y = (cvs.height - h) / 2;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
-
- this._renderImageToCanvas( cvs, img, x, y, w, h );
- },
-
- _rotate2Orientaion: function( canvas, orientation ) {
- var width = canvas.width,
- height = canvas.height,
- ctx = canvas.getContext('2d');
-
- switch ( orientation ) {
- case 5:
- case 6:
- case 7:
- case 8:
- canvas.width = height;
- canvas.height = width;
- break;
- }
-
- switch ( orientation ) {
- case 2: // horizontal flip
- ctx.translate( width, 0 );
- ctx.scale( -1, 1 );
- break;
-
- case 3: // 180 rotate left
- ctx.translate( width, height );
- ctx.rotate( Math.PI );
- break;
-
- case 4: // vertical flip
- ctx.translate( 0, height );
- ctx.scale( 1, -1 );
- break;
-
- case 5: // vertical flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.scale( 1, -1 );
- break;
-
- case 6: // 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( 0, -height );
- break;
-
- case 7: // horizontal flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( width, -height );
- ctx.scale( -1, 1 );
- break;
-
- case 8: // 90 rotate left
- ctx.rotate( -0.5 * Math.PI );
- ctx.translate( -width, 0 );
- break;
- }
- },
-
- // https://github.com/stomita/ios-imagefile-megapixel/
- // blob/master/src/megapix-image.js
- _renderImageToCanvas: (function() {
-
- // 如果不是ios, 不需要这么复杂!
- if ( !Base.os.ios ) {
- return function( canvas ) {
- var args = Base.slice( arguments, 1 ),
- ctx = canvas.getContext('2d');
-
- ctx.drawImage.apply( ctx, args );
- };
- }
-
- /**
- * Detecting vertical squash in loaded image.
- * Fixes a bug which squash image vertically while drawing into
- * canvas for some images.
- */
- function detectVerticalSquash( img, iw, ih ) {
- var canvas = document.createElement('canvas'),
- ctx = canvas.getContext('2d'),
- sy = 0,
- ey = ih,
- py = ih,
- data, alpha, ratio;
-
-
- canvas.width = 1;
- canvas.height = ih;
- ctx.drawImage( img, 0, 0 );
- data = ctx.getImageData( 0, 0, 1, ih ).data;
-
- // search image edge pixel position in case
- // it is squashed vertically.
- while ( py > sy ) {
- alpha = data[ (py - 1) * 4 + 3 ];
-
- if ( alpha === 0 ) {
- ey = py;
- } else {
- sy = py;
- }
-
- py = (ey + sy) >> 1;
- }
-
- ratio = (py / ih);
- return (ratio === 0) ? 1 : ratio;
- }
-
- // fix ie7 bug
- // http://stackoverflow.com/questions/11929099/
- // html5-canvas-drawimage-ratio-bug-ios
- if ( Base.os.ios >= 7 ) {
- return function( canvas, img, x, y, w, h ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- vertSquashRatio = detectVerticalSquash( img, iw, ih );
-
- return canvas.getContext('2d').drawImage( img, 0, 0,
- iw * vertSquashRatio, ih * vertSquashRatio,
- x, y, w, h );
- };
- }
-
- /**
- * Detect subsampling in loaded image.
- * In iOS, larger images than 2M pixels may be
- * subsampled in rendering.
- */
- function detectSubsampling( img ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- canvas, ctx;
-
- // subsampling may happen overmegapixel image
- if ( iw * ih > 1024 * 1024 ) {
- canvas = document.createElement('canvas');
- canvas.width = canvas.height = 1;
- ctx = canvas.getContext('2d');
- ctx.drawImage( img, -iw + 1, 0 );
-
- // subsampled image becomes half smaller in rendering size.
- // check alpha channel value to confirm image is covering
- // edge pixel or not. if alpha value is 0
- // image is not covering, hence subsampled.
- return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
- } else {
- return false;
- }
- }
-
-
- return function( canvas, img, x, y, width, height ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- ctx = canvas.getContext('2d'),
- subsampled = detectSubsampling( img ),
- doSquash = this.type === 'image/jpeg',
- d = 1024,
- sy = 0,
- dy = 0,
- tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
-
- if ( subsampled ) {
- iw /= 2;
- ih /= 2;
- }
-
- ctx.save();
- tmpCanvas = document.createElement('canvas');
- tmpCanvas.width = tmpCanvas.height = d;
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/dnd',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ var $ = Base.$,
+ prefix = 'webuploader-dnd-';
+
+ return Html5Runtime.register( 'DragAndDrop', {
+ init: function() {
+ var elem = this.elem = this.options.container;
+
+ this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
+ this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
+ this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
+ this.dropHandler = Base.bindFn( this._dropHandler, this );
+ this.dndOver = false;
+
+ elem.on( 'dragenter', this.dragEnterHandler );
+ elem.on( 'dragover', this.dragOverHandler );
+ elem.on( 'dragleave', this.dragLeaveHandler );
+ elem.on( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).on( 'dragover', this.dragOverHandler );
+ $( document ).on( 'drop', this.dropHandler );
+ }
+ },
+
+ _dragEnterHandler: function( e ) {
+ var me = this,
+ denied = me._denied || false,
+ items;
+
+ e = e.originalEvent || e;
+
+ if ( !me.dndOver ) {
+ me.dndOver = true;
+
+ // 注意只有 chrome 支持。
+ items = e.dataTransfer.items;
+
+ if ( items && items.length ) {
+ me._denied = denied = !me.trigger( 'accept', items );
+ }
+
+ me.elem.addClass( prefix + 'over' );
+ me.elem[ denied ? 'addClass' :
+ 'removeClass' ]( prefix + 'denied' );
+ }
+
+ e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+
+ return false;
+ },
+
+ _dragOverHandler: function( e ) {
+ // 只处理框内的。
+ var parentElem = this.elem.parent().get( 0 );
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ clearTimeout( this._leaveTimer );
+ this._dragEnterHandler.call( this, e );
+
+ return false;
+ },
+
+ _dragLeaveHandler: function() {
+ var me = this,
+ handler;
+
+ handler = function() {
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
+ };
+
+ clearTimeout( me._leaveTimer );
+ me._leaveTimer = setTimeout( handler, 100 );
+ return false;
+ },
+
+ _dropHandler: function( e ) {
+ var me = this,
+ ruid = me.getRuid(),
+ parentElem = me.elem.parent().get( 0 ),
+ dataTransfer, data;
+
+ // 只处理框内的。
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ e = e.originalEvent || e;
+ dataTransfer = e.dataTransfer;
+
+ // 如果是页面内拖拽,还不能处理,不阻止事件。
+ // 此处 ie11 下会报参数错误,
+ try {
+ data = dataTransfer.getData('text/html');
+ } catch( err ) {
+ }
+
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over' );
+
+ if ( !dataTransfer || data ) {
+ return;
+ }
+
+ me._getTansferFiles( dataTransfer, function( results ) {
+ me.trigger( 'drop', $.map( results, function( file ) {
+ return new File( ruid, file );
+ }) );
+ });
+
+ return false;
+ },
+
+ // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
+ _getTansferFiles: function( dataTransfer, callback ) {
+ var results = [],
+ promises = [],
+ items, files, file, item, i, len, canAccessFolder;
+
+ items = dataTransfer.items;
+ files = dataTransfer.files;
+
+ canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+
+ for ( i = 0, len = files.length; i < len; i++ ) {
+ file = files[ i ];
+ item = items && items[ i ];
+
+ if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+
+ promises.push( this._traverseDirectoryTree(
+ item.webkitGetAsEntry(), results ) );
+ } else {
+ results.push( file );
+ }
+ }
+
+ Base.when.apply( Base, promises ).done(function() {
+
+ if ( !results.length ) {
+ return;
+ }
+
+ callback( results );
+ });
+ },
+
+ _traverseDirectoryTree: function( entry, results ) {
+ var deferred = Base.Deferred(),
+ me = this;
+
+ if ( entry.isFile ) {
+ entry.file(function( file ) {
+ results.push( file );
+ deferred.resolve();
+ });
+ } else if ( entry.isDirectory ) {
+ entry.createReader().readEntries(function( entries ) {
+ var len = entries.length,
+ promises = [],
+ arr = [], // 为了保证顺序。
+ i;
+
+ for ( i = 0; i < len; i++ ) {
+ promises.push( me._traverseDirectoryTree(
+ entries[ i ], arr ) );
+ }
+
+ Base.when.apply( Base, promises ).then(function() {
+ results.push.apply( results, arr );
+ deferred.resolve();
+ }, deferred.reject );
+ });
+ }
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ var elem = this.elem;
+
+ // 还没 init 就调用 destroy
+ if (!elem) {
+ return;
+ }
+
+ elem.off( 'dragenter', this.dragEnterHandler );
+ elem.off( 'dragover', this.dragOverHandler );
+ elem.off( 'dragleave', this.dragLeaveHandler );
+ elem.off( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).off( 'dragover', this.dragOverHandler );
+ $( document ).off( 'drop', this.dropHandler );
+ }
+ }
+ });
+ });
- tmpCtx = tmpCanvas.getContext('2d');
- vertSquashRatio = doSquash ?
- detectVerticalSquash( img, iw, ih ) : 1;
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/filepaste',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ return Html5Runtime.register( 'FilePaste', {
+ init: function() {
+ var opts = this.options,
+ elem = this.elem = opts.container,
+ accept = '.*',
+ arr, i, len, item;
+
+ // accetp的mimeTypes中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].mimeTypes;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = arr.join(',');
+ accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
+ }
+ }
+ this.accept = accept = new RegExp( accept, 'i' );
+ this.hander = Base.bindFn( this._pasteHander, this );
+ elem.on( 'paste', this.hander );
+ },
+
+ _pasteHander: function( e ) {
+ var allowed = [],
+ ruid = this.getRuid(),
+ items, item, blob, i, len;
+
+ e = e.originalEvent || e;
+ items = e.clipboardData.items;
+
+ for ( i = 0, len = items.length; i < len; i++ ) {
+ item = items[ i ];
+
+ if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
+ continue;
+ }
+
+ allowed.push( new File( ruid, blob ) );
+ }
+
+ if ( allowed.length ) {
+ // 不阻止非文件粘贴(文字粘贴)的事件冒泡
+ e.preventDefault();
+ e.stopPropagation();
+ this.trigger( 'paste', allowed );
+ }
+ },
+
+ destroy: function() {
+ this.elem.off( 'paste', this.hander );
+ }
+ });
+ });
- dw = Math.ceil( d * width / iw );
- dh = Math.ceil( d * height / ih / vertSquashRatio );
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/html5/filepicker',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var $ = Base.$;
+
+ return Html5Runtime.register( 'FilePicker', {
+ init: function() {
+ var container = this.getRuntime().getContainer(),
+ me = this,
+ owner = me.owner,
+ opts = me.options,
+ label = this.label = $( document.createElement('label') ),
+ input = this.input = $( document.createElement('input') ),
+ arr, i, len, mouseHandler, changeHandler;
+
+ input.attr( 'type', 'file' );
+ // input.attr( 'capture', 'camera');
+ input.attr( 'name', opts.name );
+ input.addClass('webuploader-element-invisible');
+
+ label.on( 'click', function(e) {
+ input.trigger('click');
+ e.stopPropagation();
+ owner.trigger('dialogopen');
+ });
+
+ label.css({
+ opacity: 0,
+ width: '100%',
+ height: '100%',
+ display: 'block',
+ cursor: 'pointer',
+ background: '#ffffff'
+ });
+
+ if ( opts.multiple ) {
+ input.attr( 'multiple', 'multiple' );
+ }
+
+ // @todo Firefox不支持单独指定后缀
+ if ( opts.accept && opts.accept.length > 0 ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ arr.push( opts.accept[ i ].mimeTypes );
+ }
+
+ input.attr( 'accept', arr.join(',') );
+ }
+
+ container.append( input );
+ container.append( label );
+
+ mouseHandler = function( e ) {
+ owner.trigger( e.type );
+ };
+
+ changeHandler = function( e ) {
+ var clone;
+
+ // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
+ if (e.target.files.length === 0){
+ return false;
+ }
+
+ // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
+ me.files = e.target.files;
+
+
+ // reset input
+ clone = this.cloneNode( true );
+ clone.value = null;
+ this.parentNode.replaceChild( clone, this );
+
+ input.off();
+ input = $( clone ).on( 'change', changeHandler )
+ .on( 'mouseenter mouseleave', mouseHandler );
+
+ owner.trigger('change');
+ }
+ input.on( 'change', changeHandler);
+ label.on( 'mouseenter mouseleave', mouseHandler );
+
+ },
+
+
+ getFiles: function() {
+ return this.files;
+ },
+
+ destroy: function() {
+ this.input.off();
+ this.label.off();
+ }
+ });
+ });
- while ( sy < ih ) {
- sx = 0;
- dx = 0;
- while ( sx < iw ) {
- tmpCtx.clearRect( 0, 0, d, d );
- tmpCtx.drawImage( img, -sx, -sy );
- ctx.drawImage( tmpCanvas, 0, 0, d, d,
- x + dx, y + dy, dw, dh );
- sx += d;
- dx += dw;
- }
- sy += d;
- dy += dh;
- }
- ctx.restore();
- tmpCanvas = tmpCtx = null;
- };
- })()
- });
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/util',[
+ 'base'
+ ], function( Base ) {
+
+ var urlAPI = window.createObjectURL && window ||
+ window.URL && URL.revokeObjectURL && URL ||
+ window.webkitURL,
+ createObjectURL = Base.noop,
+ revokeObjectURL = createObjectURL;
+
+ if ( urlAPI ) {
+
+ // 更安全的方式调用,比如android里面就能把context改成其他的对象。
+ createObjectURL = function() {
+ return urlAPI.createObjectURL.apply( urlAPI, arguments );
+ };
+
+ revokeObjectURL = function() {
+ return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
+ };
+ }
+
+ return {
+ createObjectURL: createObjectURL,
+ revokeObjectURL: revokeObjectURL,
+
+ dataURL2Blob: function( dataURI ) {
+ var byteStr, intArray, ab, i, mimetype, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ ab = new ArrayBuffer( byteStr.length );
+ intArray = new Uint8Array( ab );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
+
+ return this.arrayBufferToBlob( ab, mimetype );
+ },
+
+ dataURL2ArrayBuffer: function( dataURI ) {
+ var byteStr, intArray, i, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ intArray = new Uint8Array( byteStr.length );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ return intArray.buffer;
+ },
+
+ arrayBufferToBlob: function( buffer, type ) {
+ var builder = window.BlobBuilder || window.WebKitBlobBuilder,
+ bb;
+
+ // android不支持直接new Blob, 只能借助blobbuilder.
+ if ( builder ) {
+ bb = new builder();
+ bb.append( buffer );
+ return bb.getBlob( type );
+ }
+
+ return new Blob([ buffer ], type ? { type: type } : {} );
+ },
+
+ // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
+ // 你得到的结果是png.
+ canvasToDataUrl: function( canvas, type, quality ) {
+ return canvas.toDataURL( type, quality / 100 );
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ parseMeta: function( blob, callback ) {
+ callback( false, {});
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ updateImageHead: function( data ) {
+ return data;
+ }
+ };
+ });
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/imagemeta',[
+ 'runtime/html5/util'
+ ], function( Util ) {
+
+ var api;
+
+ api = {
+ parsers: {
+ 0xffe1: []
+ },
+
+ maxMetaDataSize: 262144,
+
+ parse: function( blob, cb ) {
+ var me = this,
+ fr = new FileReader();
+
+ fr.onload = function() {
+ cb( false, me._parse( this.result ) );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ fr.onerror = function( e ) {
+ cb( e.message );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ blob = blob.slice( 0, me.maxMetaDataSize );
+ fr.readAsArrayBuffer( blob.getSource() );
+ },
+
+ _parse: function( buffer, noParse ) {
+ if ( buffer.byteLength < 6 ) {
+ return;
+ }
+
+ var dataview = new DataView( buffer ),
+ offset = 2,
+ maxOffset = dataview.byteLength - 4,
+ headLength = offset,
+ ret = {},
+ markerBytes, markerLength, parsers, i;
+
+ if ( dataview.getUint16( 0 ) === 0xffd8 ) {
+
+ while ( offset < maxOffset ) {
+ markerBytes = dataview.getUint16( offset );
+
+ if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
+ markerBytes === 0xfffe ) {
+
+ markerLength = dataview.getUint16( offset + 2 ) + 2;
+
+ if ( offset + markerLength > dataview.byteLength ) {
+ break;
+ }
+
+ parsers = api.parsers[ markerBytes ];
+
+ if ( !noParse && parsers ) {
+ for ( i = 0; i < parsers.length; i += 1 ) {
+ parsers[ i ].call( api, dataview, offset,
+ markerLength, ret );
+ }
+ }
+
+ offset += markerLength;
+ headLength = offset;
+ } else {
+ break;
+ }
+ }
+
+ if ( headLength > 6 ) {
+ if ( buffer.slice ) {
+ ret.imageHead = buffer.slice( 2, headLength );
+ } else {
+ // Workaround for IE10, which does not yet
+ // support ArrayBuffer.slice:
+ ret.imageHead = new Uint8Array( buffer )
+ .subarray( 2, headLength );
+ }
+ }
+ }
+
+ return ret;
+ },
+
+ updateImageHead: function( buffer, head ) {
+ var data = this._parse( buffer, true ),
+ buf1, buf2, bodyoffset;
+
+
+ bodyoffset = 2;
+ if ( data.imageHead ) {
+ bodyoffset = 2 + data.imageHead.byteLength;
+ }
+
+ if ( buffer.slice ) {
+ buf2 = buffer.slice( bodyoffset );
+ } else {
+ buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
+ }
+
+ buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
+
+ buf1[ 0 ] = 0xFF;
+ buf1[ 1 ] = 0xD8;
+ buf1.set( new Uint8Array( head ), 2 );
+ buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
+
+ return buf1.buffer;
+ }
+ };
+
+ Util.parseMeta = function() {
+ return api.parse.apply( api, arguments );
+ };
+
+ Util.updateImageHead = function() {
+ return api.updateImageHead.apply( api, arguments );
+ };
+
+ return api;
});
-
- /**
- * @fileOverview Transport
- * @todo 支持chunked传输,优势:
- * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
- * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
- */
- define('runtime/html5/transport',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
-
- var noop = Base.noop,
- $ = Base.$;
-
- return Html5Runtime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- formData, binary, fr;
-
- if ( opts.sendAsBinary ) {
- server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData )) : '';
-
- binary = blob.getSource();
- } else {
- formData = new FormData();
- $.each( owner._formData, function( k, v ) {
- formData.append( k, v );
- });
-
- formData.append( opts.fileVal, blob.getSource(),
- opts.filename || owner._formData.name || '' );
- }
-
- if ( opts.withCredentials && 'withCredentials' in xhr ) {
- xhr.open( opts.method, server, true );
- xhr.withCredentials = true;
- } else {
- xhr.open( opts.method, server );
- }
-
- this._setRequestHeader( xhr, opts.headers );
-
- if ( binary ) {
- // 强制设置成 content-type 为文件流。
- xhr.overrideMimeType &&
- xhr.overrideMimeType('application/octet-stream');
-
- // android直接发送blob会导致服务端接收到的是空文件。
- // bug详情。
- // https://code.google.com/p/android/issues/detail?id=39882
- // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
- if ( Base.os.android ) {
- fr = new FileReader();
-
- fr.onload = function() {
- xhr.send( this.result );
- fr = fr.onload = null;
- };
-
- fr.readAsArrayBuffer( binary );
- } else {
- xhr.send( binary );
- }
- } else {
- xhr.send( formData );
- }
- },
-
- getResponse: function() {
- return this._response;
- },
-
- getResponseAsJson: function() {
- return this._parseJson( this._response );
- },
-
- getResponseHeaders: function() {
- return this._headers;
- },
-
- getStatus: function() {
- return this._status;
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- xhr.abort();
-
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _parseHeader: function(raw) {
- var ret = {};
-
- raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
- ret[key.trim()] = value.trim();
- });
-
- return ret;
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new XMLHttpRequest(),
- opts = this.options;
-
- if ( opts.withCredentials && !('withCredentials' in xhr) &&
- typeof XDomainRequest !== 'undefined' ) {
- xhr = new XDomainRequest();
- }
-
- xhr.upload.onprogress = function( e ) {
- var percentage = 0;
-
- if ( e.lengthComputable ) {
- percentage = e.loaded / e.total;
- }
-
- return me.trigger( 'progress', percentage );
- };
-
- xhr.onreadystatechange = function() {
-
- if ( xhr.readyState !== 4 ) {
- return;
- }
-
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- me._xhr = null;
- me._status = xhr.status;
-
- var separator = '|', // 分隔符
- // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
- status = separator + xhr.status +
- separator + xhr.statusText;
-
- if ( xhr.status >= 200 && xhr.status < 300 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger('load');
- } else if ( xhr.status >= 500 && xhr.status < 600 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger( 'error', 'server' + status );
- }
-
-
- return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
- };
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.setRequestHeader( key, val );
- });
- },
-
- _parseJson: function( str ) {
- var json;
-
- try {
- json = JSON.parse( str );
- } catch ( ex ) {
- json = {};
- }
-
- return json;
- }
- });
+ /**
+ * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
+ * 暂时项目中只用了orientation.
+ *
+ * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
+ * @fileOverview EXIF解析
+ */
+
+ // Sample
+ // ====================================
+ // Make : Apple
+ // Model : iPhone 4S
+ // Orientation : 1
+ // XResolution : 72 [72/1]
+ // YResolution : 72 [72/1]
+ // ResolutionUnit : 2
+ // Software : QuickTime 7.7.1
+ // DateTime : 2013:09:01 22:53:55
+ // ExifIFDPointer : 190
+ // ExposureTime : 0.058823529411764705 [1/17]
+ // FNumber : 2.4 [12/5]
+ // ExposureProgram : Normal program
+ // ISOSpeedRatings : 800
+ // ExifVersion : 0220
+ // DateTimeOriginal : 2013:09:01 22:52:51
+ // DateTimeDigitized : 2013:09:01 22:52:51
+ // ComponentsConfiguration : YCbCr
+ // ShutterSpeedValue : 4.058893515764426
+ // ApertureValue : 2.5260688216892597 [4845/1918]
+ // BrightnessValue : -0.3126686601998395
+ // MeteringMode : Pattern
+ // Flash : Flash did not fire, compulsory flash mode
+ // FocalLength : 4.28 [107/25]
+ // SubjectArea : [4 values]
+ // FlashpixVersion : 0100
+ // ColorSpace : 1
+ // PixelXDimension : 2448
+ // PixelYDimension : 3264
+ // SensingMethod : One-chip color area sensor
+ // ExposureMode : 0
+ // WhiteBalance : Auto white balance
+ // FocalLengthIn35mmFilm : 35
+ // SceneCaptureType : Standard
+ define('runtime/html5/imagemeta/exif',[
+ 'base',
+ 'runtime/html5/imagemeta'
+ ], function( Base, ImageMeta ) {
+
+ var EXIF = {};
+
+ EXIF.ExifMap = function() {
+ return this;
+ };
+
+ EXIF.ExifMap.prototype.map = {
+ 'Orientation': 0x0112
+ };
+
+ EXIF.ExifMap.prototype.get = function( id ) {
+ return this[ id ] || this[ this.map[ id ] ];
+ };
+
+ EXIF.exifTagTypes = {
+ // byte, 8-bit unsigned int:
+ 1: {
+ getValue: function( dataView, dataOffset ) {
+ return dataView.getUint8( dataOffset );
+ },
+ size: 1
+ },
+
+ // ascii, 8-bit byte:
+ 2: {
+ getValue: function( dataView, dataOffset ) {
+ return String.fromCharCode( dataView.getUint8( dataOffset ) );
+ },
+ size: 1,
+ ascii: true
+ },
+
+ // short, 16 bit int:
+ 3: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint16( dataOffset, littleEndian );
+ },
+ size: 2
+ },
+
+ // long, 32 bit int:
+ 4: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // rational = two long values,
+ // first is numerator, second is denominator:
+ 5: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian ) /
+ dataView.getUint32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ },
+
+ // slong, 32 bit signed int:
+ 9: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // srational, two slongs, first is numerator, second is denominator:
+ 10: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian ) /
+ dataView.getInt32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ }
+ };
+
+ // undefined, 8-bit byte, value depending on field:
+ EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
+
+ EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
+ littleEndian ) {
+
+ var tagType = EXIF.exifTagTypes[ type ],
+ tagSize, dataOffset, values, i, str, c;
+
+ if ( !tagType ) {
+ Base.log('Invalid Exif data: Invalid tag type.');
+ return;
+ }
+
+ tagSize = tagType.size * length;
+
+ // Determine if the value is contained in the dataOffset bytes,
+ // or if the value at the dataOffset is a pointer to the actual data:
+ dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
+ littleEndian ) : (offset + 8);
+
+ if ( dataOffset + tagSize > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid data offset.');
+ return;
+ }
+
+ if ( length === 1 ) {
+ return tagType.getValue( dataView, dataOffset, littleEndian );
+ }
+
+ values = [];
+
+ for ( i = 0; i < length; i += 1 ) {
+ values[ i ] = tagType.getValue( dataView,
+ dataOffset + i * tagType.size, littleEndian );
+ }
+
+ if ( tagType.ascii ) {
+ str = '';
+
+ // Concatenate the chars:
+ for ( i = 0; i < values.length; i += 1 ) {
+ c = values[ i ];
+
+ // Ignore the terminating NULL byte(s):
+ if ( c === '\u0000' ) {
+ break;
+ }
+ str += c;
+ }
+
+ return str;
+ }
+ return values;
+ };
+
+ EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
+ data ) {
+
+ var tag = dataView.getUint16( offset, littleEndian );
+ data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
+ dataView.getUint16( offset + 2, littleEndian ), // tag type
+ dataView.getUint32( offset + 4, littleEndian ), // tag length
+ littleEndian );
+ };
+
+ EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
+ littleEndian, data ) {
+
+ var tagsNumber, dirEndOffset, i;
+
+ if ( dirOffset + 6 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory offset.');
+ return;
+ }
+
+ tagsNumber = dataView.getUint16( dirOffset, littleEndian );
+ dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
+
+ if ( dirEndOffset + 4 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory size.');
+ return;
+ }
+
+ for ( i = 0; i < tagsNumber; i += 1 ) {
+ this.parseExifTag( dataView, tiffOffset,
+ dirOffset + 2 + 12 * i, // tag offset
+ littleEndian, data );
+ }
+
+ // Return the offset to the next directory:
+ return dataView.getUint32( dirEndOffset, littleEndian );
+ };
+
+ // EXIF.getExifThumbnail = function(dataView, offset, length) {
+ // var hexData,
+ // i,
+ // b;
+ // if (!length || offset + length > dataView.byteLength) {
+ // Base.log('Invalid Exif data: Invalid thumbnail data.');
+ // return;
+ // }
+ // hexData = [];
+ // for (i = 0; i < length; i += 1) {
+ // b = dataView.getUint8(offset + i);
+ // hexData.push((b < 16 ? '0' : '') + b.toString(16));
+ // }
+ // return 'data:image/jpeg,%' + hexData.join('%');
+ // };
+
+ EXIF.parseExifData = function( dataView, offset, length, data ) {
+
+ var tiffOffset = offset + 10,
+ littleEndian, dirOffset;
+
+ // Check for the ASCII code for "Exif" (0x45786966):
+ if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
+ // No Exif data, might be XMP data instead
+ return;
+ }
+ if ( tiffOffset + 8 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid segment size.');
+ return;
+ }
+
+ // Check for the two null bytes:
+ if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
+ Base.log('Invalid Exif data: Missing byte alignment offset.');
+ return;
+ }
+
+ // Check the byte alignment:
+ switch ( dataView.getUint16( tiffOffset ) ) {
+ case 0x4949:
+ littleEndian = true;
+ break;
+
+ case 0x4D4D:
+ littleEndian = false;
+ break;
+
+ default:
+ Base.log('Invalid Exif data: Invalid byte alignment marker.');
+ return;
+ }
+
+ // Check for the TIFF tag marker (0x002A):
+ if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
+ Base.log('Invalid Exif data: Missing TIFF marker.');
+ return;
+ }
+
+ // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
+ dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
+ // Create the exif object to store the tags:
+ data.exif = new EXIF.ExifMap();
+ // Parse the tags of the main image directory and retrieve the
+ // offset to the next directory, usually the thumbnail directory:
+ dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
+ tiffOffset + dirOffset, littleEndian, data );
+
+ // 尝试读取缩略图
+ // if ( dirOffset ) {
+ // thumbnailData = {exif: {}};
+ // dirOffset = EXIF.parseExifTags(
+ // dataView,
+ // tiffOffset,
+ // tiffOffset + dirOffset,
+ // littleEndian,
+ // thumbnailData
+ // );
+
+ // // Check for JPEG Thumbnail offset:
+ // if (thumbnailData.exif[0x0201]) {
+ // data.exif.Thumbnail = EXIF.getExifThumbnail(
+ // dataView,
+ // tiffOffset + thumbnailData.exif[0x0201],
+ // thumbnailData.exif[0x0202] // Thumbnail data length
+ // );
+ // }
+ // }
+ };
+
+ ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
+ return EXIF;
});
-
- /**
- * @fileOverview Transport flash实现
- */
- define('runtime/html5/md5',[
- 'runtime/html5/runtime'
- ], function( FlashRuntime ) {
-
- /*
- * Fastest md5 implementation around (JKM md5)
- * Credits: Joseph Myers
- *
- * @see http://www.myersdaily.org/joseph/javascript/md5-text.html
- * @see http://jsperf.com/md5-shootout/7
- */
-
- /* this function is much faster,
- so if possible we use it. Some IEs
- are the only ones I know of that
- need the idiotic second function,
- generated by an if clause. */
- var add32 = function (a, b) {
- return (a + b) & 0xFFFFFFFF;
- },
-
- cmn = function (q, a, b, x, s, t) {
- a = add32(add32(a, q), add32(x, t));
- return add32((a << s) | (a >>> (32 - s)), b);
- },
-
- ff = function (a, b, c, d, x, s, t) {
- return cmn((b & c) | ((~b) & d), a, b, x, s, t);
- },
-
- gg = function (a, b, c, d, x, s, t) {
- return cmn((b & d) | (c & (~d)), a, b, x, s, t);
- },
-
- hh = function (a, b, c, d, x, s, t) {
- return cmn(b ^ c ^ d, a, b, x, s, t);
- },
-
- ii = function (a, b, c, d, x, s, t) {
- return cmn(c ^ (b | (~d)), a, b, x, s, t);
- },
-
- md5cycle = function (x, k) {
- var a = x[0],
- b = x[1],
- c = x[2],
- d = x[3];
-
- a = ff(a, b, c, d, k[0], 7, -680876936);
- d = ff(d, a, b, c, k[1], 12, -389564586);
- c = ff(c, d, a, b, k[2], 17, 606105819);
- b = ff(b, c, d, a, k[3], 22, -1044525330);
- a = ff(a, b, c, d, k[4], 7, -176418897);
- d = ff(d, a, b, c, k[5], 12, 1200080426);
- c = ff(c, d, a, b, k[6], 17, -1473231341);
- b = ff(b, c, d, a, k[7], 22, -45705983);
- a = ff(a, b, c, d, k[8], 7, 1770035416);
- d = ff(d, a, b, c, k[9], 12, -1958414417);
- c = ff(c, d, a, b, k[10], 17, -42063);
- b = ff(b, c, d, a, k[11], 22, -1990404162);
- a = ff(a, b, c, d, k[12], 7, 1804603682);
- d = ff(d, a, b, c, k[13], 12, -40341101);
- c = ff(c, d, a, b, k[14], 17, -1502002290);
- b = ff(b, c, d, a, k[15], 22, 1236535329);
-
- a = gg(a, b, c, d, k[1], 5, -165796510);
- d = gg(d, a, b, c, k[6], 9, -1069501632);
- c = gg(c, d, a, b, k[11], 14, 643717713);
- b = gg(b, c, d, a, k[0], 20, -373897302);
- a = gg(a, b, c, d, k[5], 5, -701558691);
- d = gg(d, a, b, c, k[10], 9, 38016083);
- c = gg(c, d, a, b, k[15], 14, -660478335);
- b = gg(b, c, d, a, k[4], 20, -405537848);
- a = gg(a, b, c, d, k[9], 5, 568446438);
- d = gg(d, a, b, c, k[14], 9, -1019803690);
- c = gg(c, d, a, b, k[3], 14, -187363961);
- b = gg(b, c, d, a, k[8], 20, 1163531501);
- a = gg(a, b, c, d, k[13], 5, -1444681467);
- d = gg(d, a, b, c, k[2], 9, -51403784);
- c = gg(c, d, a, b, k[7], 14, 1735328473);
- b = gg(b, c, d, a, k[12], 20, -1926607734);
-
- a = hh(a, b, c, d, k[5], 4, -378558);
- d = hh(d, a, b, c, k[8], 11, -2022574463);
- c = hh(c, d, a, b, k[11], 16, 1839030562);
- b = hh(b, c, d, a, k[14], 23, -35309556);
- a = hh(a, b, c, d, k[1], 4, -1530992060);
- d = hh(d, a, b, c, k[4], 11, 1272893353);
- c = hh(c, d, a, b, k[7], 16, -155497632);
- b = hh(b, c, d, a, k[10], 23, -1094730640);
- a = hh(a, b, c, d, k[13], 4, 681279174);
- d = hh(d, a, b, c, k[0], 11, -358537222);
- c = hh(c, d, a, b, k[3], 16, -722521979);
- b = hh(b, c, d, a, k[6], 23, 76029189);
- a = hh(a, b, c, d, k[9], 4, -640364487);
- d = hh(d, a, b, c, k[12], 11, -421815835);
- c = hh(c, d, a, b, k[15], 16, 530742520);
- b = hh(b, c, d, a, k[2], 23, -995338651);
-
- a = ii(a, b, c, d, k[0], 6, -198630844);
- d = ii(d, a, b, c, k[7], 10, 1126891415);
- c = ii(c, d, a, b, k[14], 15, -1416354905);
- b = ii(b, c, d, a, k[5], 21, -57434055);
- a = ii(a, b, c, d, k[12], 6, 1700485571);
- d = ii(d, a, b, c, k[3], 10, -1894986606);
- c = ii(c, d, a, b, k[10], 15, -1051523);
- b = ii(b, c, d, a, k[1], 21, -2054922799);
- a = ii(a, b, c, d, k[8], 6, 1873313359);
- d = ii(d, a, b, c, k[15], 10, -30611744);
- c = ii(c, d, a, b, k[6], 15, -1560198380);
- b = ii(b, c, d, a, k[13], 21, 1309151649);
- a = ii(a, b, c, d, k[4], 6, -145523070);
- d = ii(d, a, b, c, k[11], 10, -1120210379);
- c = ii(c, d, a, b, k[2], 15, 718787259);
- b = ii(b, c, d, a, k[9], 21, -343485551);
-
- x[0] = add32(a, x[0]);
- x[1] = add32(b, x[1]);
- x[2] = add32(c, x[2]);
- x[3] = add32(d, x[3]);
- },
-
- /* there needs to be support for Unicode here,
- * unless we pretend that we can redefine the MD-5
- * algorithm for multi-byte characters (perhaps
- * by adding every four 16-bit characters and
- * shortening the sum to 32 bits). Otherwise
- * I suggest performing MD-5 as if every character
- * was two bytes--e.g., 0040 0025 = @%--but then
- * how will an ordinary MD-5 sum be matched?
- * There is no way to standardize text to something
- * like UTF-8 before transformation; speed cost is
- * utterly prohibitive. The JavaScript standard
- * itself needs to look at this: it should start
- * providing access to strings as preformed UTF-8
- * 8-bit unsigned value arrays.
- */
- md5blk = function (s) {
- var md5blks = [],
- i; /* Andy King said do it this way. */
-
- for (i = 0; i < 64; i += 4) {
- md5blks[i >> 2] = s.charCodeAt(i) + (s.charCodeAt(i + 1) << 8) + (s.charCodeAt(i + 2) << 16) + (s.charCodeAt(i + 3) << 24);
- }
- return md5blks;
- },
-
- md5blk_array = function (a) {
- var md5blks = [],
- i; /* Andy King said do it this way. */
-
- for (i = 0; i < 64; i += 4) {
- md5blks[i >> 2] = a[i] + (a[i + 1] << 8) + (a[i + 2] << 16) + (a[i + 3] << 24);
- }
- return md5blks;
- },
-
- md51 = function (s) {
- var n = s.length,
- state = [1732584193, -271733879, -1732584194, 271733878],
- i,
- length,
- tail,
- tmp,
- lo,
- hi;
-
- for (i = 64; i <= n; i += 64) {
- md5cycle(state, md5blk(s.substring(i - 64, i)));
- }
- s = s.substring(i - 64);
- length = s.length;
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= s.charCodeAt(i) << ((i % 4) << 3);
- }
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Beware that the final length might not fit in 32 bits so we take care of that
- tmp = n * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
-
- md5cycle(state, tail);
- return state;
- },
-
- md51_array = function (a) {
- var n = a.length,
- state = [1732584193, -271733879, -1732584194, 271733878],
- i,
- length,
- tail,
- tmp,
- lo,
- hi;
-
- for (i = 64; i <= n; i += 64) {
- md5cycle(state, md5blk_array(a.subarray(i - 64, i)));
- }
-
- // Not sure if it is a bug, however IE10 will always produce a sub array of length 1
- // containing the last element of the parent array if the sub array specified starts
- // beyond the length of the parent array - weird.
- // https://connect.microsoft.com/IE/feedback/details/771452/typed-array-subarray-issue
- a = (i - 64) < n ? a.subarray(i - 64) : new Uint8Array(0);
-
- length = a.length;
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= a[i] << ((i % 4) << 3);
- }
-
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Beware that the final length might not fit in 32 bits so we take care of that
- tmp = n * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
-
- md5cycle(state, tail);
-
- return state;
- },
-
- hex_chr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'],
-
- rhex = function (n) {
- var s = '',
- j;
- for (j = 0; j < 4; j += 1) {
- s += hex_chr[(n >> (j * 8 + 4)) & 0x0F] + hex_chr[(n >> (j * 8)) & 0x0F];
- }
- return s;
- },
-
- hex = function (x) {
- var i;
- for (i = 0; i < x.length; i += 1) {
- x[i] = rhex(x[i]);
- }
- return x.join('');
- },
-
- md5 = function (s) {
- return hex(md51(s));
- },
-
-
-
- ////////////////////////////////////////////////////////////////////////////
-
- /**
- * SparkMD5 OOP implementation.
- *
- * Use this class to perform an incremental md5, otherwise use the
- * static methods instead.
- */
- SparkMD5 = function () {
- // call reset to init the instance
- this.reset();
- };
-
-
- // In some cases the fast add32 function cannot be used..
- if (md5('hello') !== '5d41402abc4b2a76b9719d911017c592') {
- add32 = function (x, y) {
- var lsw = (x & 0xFFFF) + (y & 0xFFFF),
- msw = (x >> 16) + (y >> 16) + (lsw >> 16);
- return (msw << 16) | (lsw & 0xFFFF);
- };
- }
-
-
- /**
- * Appends a string.
- * A conversion will be applied if an utf8 string is detected.
- *
- * @param {String} str The string to be appended
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.append = function (str) {
- // converts the string to utf8 bytes if necessary
- if (/[\u0080-\uFFFF]/.test(str)) {
- str = unescape(encodeURIComponent(str));
- }
-
- // then append as binary
- this.appendBinary(str);
-
- return this;
- };
-
- /**
- * Appends a binary string.
- *
- * @param {String} contents The binary string to be appended
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.appendBinary = function (contents) {
- this._buff += contents;
- this._length += contents.length;
-
- var length = this._buff.length,
- i;
-
- for (i = 64; i <= length; i += 64) {
- md5cycle(this._state, md5blk(this._buff.substring(i - 64, i)));
- }
-
- this._buff = this._buff.substr(i - 64);
-
- return this;
- };
-
- /**
- * Finishes the incremental computation, reseting the internal state and
- * returning the result.
- * Use the raw parameter to obtain the raw result instead of the hex one.
- *
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.prototype.end = function (raw) {
- var buff = this._buff,
- length = buff.length,
- i,
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- ret;
-
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= buff.charCodeAt(i) << ((i % 4) << 3);
- }
-
- this._finish(tail, length);
- ret = !!raw ? this._state : hex(this._state);
-
- this.reset();
-
- return ret;
- };
-
- /**
- * Finish the final calculation based on the tail.
- *
- * @param {Array} tail The tail (will be modified)
- * @param {Number} length The length of the remaining buffer
- */
- SparkMD5.prototype._finish = function (tail, length) {
- var i = length,
- tmp,
- lo,
- hi;
-
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(this._state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Do the final computation based on the tail and length
- // Beware that the final length may not fit in 32 bits so we take care of that
- tmp = this._length * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
- md5cycle(this._state, tail);
- };
-
- /**
- * Resets the internal state of the computation.
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.reset = function () {
- this._buff = "";
- this._length = 0;
- this._state = [1732584193, -271733879, -1732584194, 271733878];
-
- return this;
- };
-
- /**
- * Releases memory used by the incremental buffer and other aditional
- * resources. If you plan to use the instance again, use reset instead.
- */
- SparkMD5.prototype.destroy = function () {
- delete this._state;
- delete this._buff;
- delete this._length;
- };
-
-
- /**
- * Performs the md5 hash on a string.
- * A conversion will be applied if utf8 string is detected.
- *
- * @param {String} str The string
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.hash = function (str, raw) {
- // converts the string to utf8 bytes if necessary
- if (/[\u0080-\uFFFF]/.test(str)) {
- str = unescape(encodeURIComponent(str));
- }
-
- var hash = md51(str);
-
- return !!raw ? hash : hex(hash);
- };
-
- /**
- * Performs the md5 hash on a binary string.
- *
- * @param {String} content The binary string
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.hashBinary = function (content, raw) {
- var hash = md51(content);
-
- return !!raw ? hash : hex(hash);
- };
-
- /**
- * SparkMD5 OOP implementation for array buffers.
- *
- * Use this class to perform an incremental md5 ONLY for array buffers.
- */
- SparkMD5.ArrayBuffer = function () {
- // call reset to init the instance
- this.reset();
- };
-
- ////////////////////////////////////////////////////////////////////////////
-
- /**
- * Appends an array buffer.
- *
- * @param {ArrayBuffer} arr The array to be appended
- *
- * @return {SparkMD5.ArrayBuffer} The instance itself
- */
- SparkMD5.ArrayBuffer.prototype.append = function (arr) {
- // TODO: we could avoid the concatenation here but the algorithm would be more complex
- // if you find yourself needing extra performance, please make a PR.
- var buff = this._concatArrayBuffer(this._buff, arr),
- length = buff.length,
- i;
-
- this._length += arr.byteLength;
-
- for (i = 64; i <= length; i += 64) {
- md5cycle(this._state, md5blk_array(buff.subarray(i - 64, i)));
- }
-
- // Avoids IE10 weirdness (documented above)
- this._buff = (i - 64) < length ? buff.subarray(i - 64) : new Uint8Array(0);
-
- return this;
- };
-
- /**
- * Finishes the incremental computation, reseting the internal state and
- * returning the result.
- * Use the raw parameter to obtain the raw result instead of the hex one.
- *
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.ArrayBuffer.prototype.end = function (raw) {
- var buff = this._buff,
- length = buff.length,
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- i,
- ret;
-
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= buff[i] << ((i % 4) << 3);
- }
-
- this._finish(tail, length);
- ret = !!raw ? this._state : hex(this._state);
-
- this.reset();
-
- return ret;
- };
-
- SparkMD5.ArrayBuffer.prototype._finish = SparkMD5.prototype._finish;
-
- /**
- * Resets the internal state of the computation.
- *
- * @return {SparkMD5.ArrayBuffer} The instance itself
- */
- SparkMD5.ArrayBuffer.prototype.reset = function () {
- this._buff = new Uint8Array(0);
- this._length = 0;
- this._state = [1732584193, -271733879, -1732584194, 271733878];
-
- return this;
- };
-
- /**
- * Releases memory used by the incremental buffer and other aditional
- * resources. If you plan to use the instance again, use reset instead.
- */
- SparkMD5.ArrayBuffer.prototype.destroy = SparkMD5.prototype.destroy;
-
- /**
- * Concats two array buffers, returning a new one.
- *
- * @param {ArrayBuffer} first The first array buffer
- * @param {ArrayBuffer} second The second array buffer
- *
- * @return {ArrayBuffer} The new array buffer
- */
- SparkMD5.ArrayBuffer.prototype._concatArrayBuffer = function (first, second) {
- var firstLength = first.length,
- result = new Uint8Array(firstLength + second.byteLength);
-
- result.set(first);
- result.set(new Uint8Array(second), firstLength);
-
- return result;
- };
-
- /**
- * Performs the md5 hash on an array buffer.
- *
- * @param {ArrayBuffer} arr The array buffer
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.ArrayBuffer.hash = function (arr, raw) {
- var hash = md51_array(new Uint8Array(arr));
-
- return !!raw ? hash : hex(hash);
- };
-
- return FlashRuntime.register( 'Md5', {
- init: function() {
- // do nothing.
- },
-
- loadFromBlob: function( file ) {
- var blob = file.getSource(),
- chunkSize = 2 * 1024 * 1024,
- chunks = Math.ceil( blob.size / chunkSize ),
- chunk = 0,
- owner = this.owner,
- spark = new SparkMD5.ArrayBuffer(),
- me = this,
- blobSlice = blob.mozSlice || blob.webkitSlice || blob.slice,
- loadNext, fr;
-
- fr = new FileReader();
-
- loadNext = function() {
- var start, end;
-
- start = chunk * chunkSize;
- end = Math.min( start + chunkSize, blob.size );
-
- fr.onload = function( e ) {
- spark.append( e.target.result );
- owner.trigger( 'progress', {
- total: file.size,
- loaded: end
- });
- };
-
- fr.onloadend = function() {
- fr.onloadend = fr.onload = null;
-
- if ( ++chunk < chunks ) {
- setTimeout( loadNext, 1 );
- } else {
- setTimeout(function(){
- owner.trigger('load');
- me.result = spark.end();
- loadNext = file = blob = spark = null;
- owner.trigger('complete');
- }, 50 );
- }
- };
-
- fr.readAsArrayBuffer( blobSlice.call( blob, start, end ) );
- };
-
- loadNext();
- },
-
- getResult: function() {
- return this.result;
- }
- });
+ /**
+ * 这个方式性能不行,但是可以解决android里面的toDataUrl的bug
+ * android里面toDataUrl('image/jpege')得到的结果却是png.
+ *
+ * 所以这里没辙,只能借助这个工具
+ * @fileOverview jpeg encoder
+ */
+ define('runtime/html5/jpegencoder',[], function( require, exports, module ) {
+
+ /*
+ Copyright (c) 2008, Adobe Systems Incorporated
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of Adobe Systems Incorporated nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+ /*
+ JPEG encoder ported to JavaScript and optimized by Andreas Ritter, www.bytestrom.eu, 11/2009
+
+ Basic GUI blocking jpeg encoder
+ */
+
+ function JPEGEncoder(quality) {
+ var self = this;
+ var fround = Math.round;
+ var ffloor = Math.floor;
+ var YTable = new Array(64);
+ var UVTable = new Array(64);
+ var fdtbl_Y = new Array(64);
+ var fdtbl_UV = new Array(64);
+ var YDC_HT;
+ var UVDC_HT;
+ var YAC_HT;
+ var UVAC_HT;
+
+ var bitcode = new Array(65535);
+ var category = new Array(65535);
+ var outputfDCTQuant = new Array(64);
+ var DU = new Array(64);
+ var byteout = [];
+ var bytenew = 0;
+ var bytepos = 7;
+
+ var YDU = new Array(64);
+ var UDU = new Array(64);
+ var VDU = new Array(64);
+ var clt = new Array(256);
+ var RGB_YUV_TABLE = new Array(2048);
+ var currentQuality;
+
+ var ZigZag = [
+ 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
+ ];
+
+ var std_dc_luminance_nrcodes = [0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0];
+ var std_dc_luminance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
+ var std_ac_luminance_nrcodes = [0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d];
+ var std_ac_luminance_values = [
+ 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,
+ 0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,
+ 0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08,
+ 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,
+ 0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,
+ 0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28,
+ 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,
+ 0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,
+ 0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,
+ 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,
+ 0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,
+ 0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89,
+ 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,
+ 0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,
+ 0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,
+ 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,
+ 0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,
+ 0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2,
+ 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,
+ 0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
+ 0xf9,0xfa
+ ];
+
+ var std_dc_chrominance_nrcodes = [0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0];
+ var std_dc_chrominance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
+ var std_ac_chrominance_nrcodes = [0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77];
+ var std_ac_chrominance_values = [
+ 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,
+ 0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,
+ 0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91,
+ 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,
+ 0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,
+ 0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,
+ 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,
+ 0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,
+ 0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,
+ 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,
+ 0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,
+ 0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,
+ 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,
+ 0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
+ 0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,
+ 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
+ 0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,
+ 0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
+ 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,
+ 0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
+ 0xf9,0xfa
+ ];
+
+ function initQuantTables(sf){
+ var YQT = [
+ 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
+ ];
+
+ for (var i = 0; i < 64; i++) {
+ var t = ffloor((YQT[i]*sf+50)/100);
+ if (t < 1) {
+ t = 1;
+ } else if (t > 255) {
+ t = 255;
+ }
+ YTable[ZigZag[i]] = t;
+ }
+ var UVQT = [
+ 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
+ ];
+ for (var j = 0; j < 64; j++) {
+ var u = ffloor((UVQT[j]*sf+50)/100);
+ if (u < 1) {
+ u = 1;
+ } else if (u > 255) {
+ u = 255;
+ }
+ UVTable[ZigZag[j]] = u;
+ }
+ var aasf = [
+ 1.0, 1.387039845, 1.306562965, 1.175875602,
+ 1.0, 0.785694958, 0.541196100, 0.275899379
+ ];
+ var k = 0;
+ for (var row = 0; row < 8; row++)
+ {
+ for (var col = 0; col < 8; col++)
+ {
+ fdtbl_Y[k] = (1.0 / (YTable [ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
+ fdtbl_UV[k] = (1.0 / (UVTable[ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
+ k++;
+ }
+ }
+ }
+
+ function computeHuffmanTbl(nrcodes, std_table){
+ var codevalue = 0;
+ var pos_in_table = 0;
+ var HT = new Array();
+ for (var k = 1; k <= 16; k++) {
+ for (var j = 1; j <= nrcodes[k]; j++) {
+ HT[std_table[pos_in_table]] = [];
+ HT[std_table[pos_in_table]][0] = codevalue;
+ HT[std_table[pos_in_table]][1] = k;
+ pos_in_table++;
+ codevalue++;
+ }
+ codevalue*=2;
+ }
+ return HT;
+ }
+
+ function initHuffmanTbl()
+ {
+ YDC_HT = computeHuffmanTbl(std_dc_luminance_nrcodes,std_dc_luminance_values);
+ UVDC_HT = computeHuffmanTbl(std_dc_chrominance_nrcodes,std_dc_chrominance_values);
+ YAC_HT = computeHuffmanTbl(std_ac_luminance_nrcodes,std_ac_luminance_values);
+ UVAC_HT = computeHuffmanTbl(std_ac_chrominance_nrcodes,std_ac_chrominance_values);
+ }
+
+ function initCategoryNumber()
+ {
+ var nrlower = 1;
+ var nrupper = 2;
+ for (var cat = 1; cat <= 15; cat++) {
+ //Positive numbers
+ for (var nr = nrlower; nr>0] = 38470 * i;
+ RGB_YUV_TABLE[(i+ 512)>>0] = 7471 * i + 0x8000;
+ RGB_YUV_TABLE[(i+ 768)>>0] = -11059 * i;
+ RGB_YUV_TABLE[(i+1024)>>0] = -21709 * i;
+ RGB_YUV_TABLE[(i+1280)>>0] = 32768 * i + 0x807FFF;
+ RGB_YUV_TABLE[(i+1536)>>0] = -27439 * i;
+ RGB_YUV_TABLE[(i+1792)>>0] = - 5329 * i;
+ }
+ }
+
+ // IO functions
+ function writeBits(bs)
+ {
+ var value = bs[0];
+ var posval = bs[1]-1;
+ while ( posval >= 0 ) {
+ if (value & (1 << posval) ) {
+ bytenew |= (1 << bytepos);
+ }
+ posval--;
+ bytepos--;
+ if (bytepos < 0) {
+ if (bytenew == 0xFF) {
+ writeByte(0xFF);
+ writeByte(0);
+ }
+ else {
+ writeByte(bytenew);
+ }
+ bytepos=7;
+ bytenew=0;
+ }
+ }
+ }
+
+ function writeByte(value)
+ {
+ byteout.push(clt[value]); // write char directly instead of converting later
+ }
+
+ function writeWord(value)
+ {
+ writeByte((value>>8)&0xFF);
+ writeByte((value )&0xFF);
+ }
+
+ // DCT & quantization core
+ function fDCTQuant(data, fdtbl)
+ {
+ var d0, d1, d2, d3, d4, d5, d6, d7;
+ /* Pass 1: process rows. */
+ var dataOff=0;
+ var i;
+ var I8 = 8;
+ var I64 = 64;
+ for (i=0; i 0.0) ? ((fDCTQuant + 0.5)|0) : ((fDCTQuant - 0.5)|0);
+ //outputfDCTQuant[i] = fround(fDCTQuant);
+
+ }
+ return outputfDCTQuant;
+ }
+
+ function writeAPP0()
+ {
+ writeWord(0xFFE0); // marker
+ writeWord(16); // length
+ writeByte(0x4A); // J
+ writeByte(0x46); // F
+ writeByte(0x49); // I
+ writeByte(0x46); // F
+ writeByte(0); // = "JFIF",'\0'
+ writeByte(1); // versionhi
+ writeByte(1); // versionlo
+ writeByte(0); // xyunits
+ writeWord(1); // xdensity
+ writeWord(1); // ydensity
+ writeByte(0); // thumbnwidth
+ writeByte(0); // thumbnheight
+ }
+
+ function writeSOF0(width, height)
+ {
+ writeWord(0xFFC0); // marker
+ writeWord(17); // length, truecolor YUV JPG
+ writeByte(8); // precision
+ writeWord(height);
+ writeWord(width);
+ writeByte(3); // nrofcomponents
+ writeByte(1); // IdY
+ writeByte(0x11); // HVY
+ writeByte(0); // QTY
+ writeByte(2); // IdU
+ writeByte(0x11); // HVU
+ writeByte(1); // QTU
+ writeByte(3); // IdV
+ writeByte(0x11); // HVV
+ writeByte(1); // QTV
+ }
+
+ function writeDQT()
+ {
+ writeWord(0xFFDB); // marker
+ writeWord(132); // length
+ writeByte(0);
+ for (var i=0; i<64; i++) {
+ writeByte(YTable[i]);
+ }
+ writeByte(1);
+ for (var j=0; j<64; j++) {
+ writeByte(UVTable[j]);
+ }
+ }
+
+ function writeDHT()
+ {
+ writeWord(0xFFC4); // marker
+ writeWord(0x01A2); // length
+
+ writeByte(0); // HTYDCinfo
+ for (var i=0; i<16; i++) {
+ writeByte(std_dc_luminance_nrcodes[i+1]);
+ }
+ for (var j=0; j<=11; j++) {
+ writeByte(std_dc_luminance_values[j]);
+ }
+
+ writeByte(0x10); // HTYACinfo
+ for (var k=0; k<16; k++) {
+ writeByte(std_ac_luminance_nrcodes[k+1]);
+ }
+ for (var l=0; l<=161; l++) {
+ writeByte(std_ac_luminance_values[l]);
+ }
+
+ writeByte(1); // HTUDCinfo
+ for (var m=0; m<16; m++) {
+ writeByte(std_dc_chrominance_nrcodes[m+1]);
+ }
+ for (var n=0; n<=11; n++) {
+ writeByte(std_dc_chrominance_values[n]);
+ }
+
+ writeByte(0x11); // HTUACinfo
+ for (var o=0; o<16; o++) {
+ writeByte(std_ac_chrominance_nrcodes[o+1]);
+ }
+ for (var p=0; p<=161; p++) {
+ writeByte(std_ac_chrominance_values[p]);
+ }
+ }
+
+ function writeSOS()
+ {
+ writeWord(0xFFDA); // marker
+ writeWord(12); // length
+ writeByte(3); // nrofcomponents
+ writeByte(1); // IdY
+ writeByte(0); // HTY
+ writeByte(2); // IdU
+ writeByte(0x11); // HTU
+ writeByte(3); // IdV
+ writeByte(0x11); // HTV
+ writeByte(0); // Ss
+ writeByte(0x3f); // Se
+ writeByte(0); // Bf
+ }
+
+ function processDU(CDU, fdtbl, DC, HTDC, HTAC){
+ var EOB = HTAC[0x00];
+ var M16zeroes = HTAC[0xF0];
+ var pos;
+ var I16 = 16;
+ var I63 = 63;
+ var I64 = 64;
+ var DU_DCT = fDCTQuant(CDU, fdtbl);
+ //ZigZag reorder
+ for (var j=0;j0)&&(DU[end0pos]==0); end0pos--) {};
+ //end0pos = first element in reverse order !=0
+ if ( end0pos == 0) {
+ writeBits(EOB);
+ return DC;
+ }
+ var i = 1;
+ var lng;
+ while ( i <= end0pos ) {
+ var startpos = i;
+ for (; (DU[i]==0) && (i<=end0pos); ++i) {}
+ var nrzeroes = i-startpos;
+ if ( nrzeroes >= I16 ) {
+ lng = nrzeroes>>4;
+ for (var nrmarker=1; nrmarker <= lng; ++nrmarker)
+ writeBits(M16zeroes);
+ nrzeroes = nrzeroes&0xF;
+ }
+ pos = 32767+DU[i];
+ writeBits(HTAC[(nrzeroes<<4)+category[pos]]);
+ writeBits(bitcode[pos]);
+ i++;
+ }
+ if ( end0pos != I63 ) {
+ writeBits(EOB);
+ }
+ return DC;
+ }
+
+ function initCharLookupTable(){
+ var sfcc = String.fromCharCode;
+ for(var i=0; i < 256; i++){ ///// ACHTUNG // 255
+ clt[i] = sfcc(i);
+ }
+ }
+
+ this.encode = function(image,quality) // image data object
+ {
+ // var time_start = new Date().getTime();
+
+ if(quality) setQuality(quality);
+
+ // Initialize bit writer
+ byteout = new Array();
+ bytenew=0;
+ bytepos=7;
+
+ // Add JPEG headers
+ writeWord(0xFFD8); // SOI
+ writeAPP0();
+ writeDQT();
+ writeSOF0(image.width,image.height);
+ writeDHT();
+ writeSOS();
+
+
+ // Encode 8x8 macroblocks
+ var DCY=0;
+ var DCU=0;
+ var DCV=0;
+
+ bytenew=0;
+ bytepos=7;
+
+
+ this.encode.displayName = "_encode_";
+
+ var imageData = image.data;
+ var width = image.width;
+ var height = image.height;
+
+ var quadWidth = width*4;
+ var tripleWidth = width*3;
+
+ var x, y = 0;
+ var r, g, b;
+ var start,p, col,row,pos;
+ while(y < height){
+ x = 0;
+ while(x < quadWidth){
+ start = quadWidth * y + x;
+ p = start;
+ col = -1;
+ row = 0;
+
+ for(pos=0; pos < 64; pos++){
+ row = pos >> 3;// /8
+ col = ( pos & 7 ) * 4; // %8
+ p = start + ( row * quadWidth ) + col;
+
+ if(y+row >= height){ // padding bottom
+ p-= (quadWidth*(y+1+row-height));
+ }
+
+ if(x+col >= quadWidth){ // padding right
+ p-= ((x+col) - quadWidth +4)
+ }
+
+ r = imageData[ p++ ];
+ g = imageData[ p++ ];
+ b = imageData[ p++ ];
+
+
+ /* // calculate YUV values dynamically
+ YDU[pos]=((( 0.29900)*r+( 0.58700)*g+( 0.11400)*b))-128; //-0x80
+ UDU[pos]=(((-0.16874)*r+(-0.33126)*g+( 0.50000)*b));
+ VDU[pos]=((( 0.50000)*r+(-0.41869)*g+(-0.08131)*b));
+ */
+
+ // use lookup table (slightly faster)
+ YDU[pos] = ((RGB_YUV_TABLE[r] + RGB_YUV_TABLE[(g + 256)>>0] + RGB_YUV_TABLE[(b + 512)>>0]) >> 16)-128;
+ UDU[pos] = ((RGB_YUV_TABLE[(r + 768)>>0] + RGB_YUV_TABLE[(g + 1024)>>0] + RGB_YUV_TABLE[(b + 1280)>>0]) >> 16)-128;
+ VDU[pos] = ((RGB_YUV_TABLE[(r + 1280)>>0] + RGB_YUV_TABLE[(g + 1536)>>0] + RGB_YUV_TABLE[(b + 1792)>>0]) >> 16)-128;
+
+ }
+
+ DCY = processDU(YDU, fdtbl_Y, DCY, YDC_HT, YAC_HT);
+ DCU = processDU(UDU, fdtbl_UV, DCU, UVDC_HT, UVAC_HT);
+ DCV = processDU(VDU, fdtbl_UV, DCV, UVDC_HT, UVAC_HT);
+ x+=32;
+ }
+ y+=8;
+ }
+
+
+ ////////////////////////////////////////////////////////////////
+
+ // Do the bit alignment of the EOI marker
+ if ( bytepos >= 0 ) {
+ var fillbits = [];
+ fillbits[1] = bytepos+1;
+ fillbits[0] = (1<<(bytepos+1))-1;
+ writeBits(fillbits);
+ }
+
+ writeWord(0xFFD9); //EOI
+
+ var jpegDataUri = 'data:image/jpeg;base64,' + btoa(byteout.join(''));
+
+ byteout = [];
+
+ // benchmarking
+ // var duration = new Date().getTime() - time_start;
+ // console.log('Encoding time: '+ currentQuality + 'ms');
+ //
+
+ return jpegDataUri
+ }
+
+ function setQuality(quality){
+ if (quality <= 0) {
+ quality = 1;
+ }
+ if (quality > 100) {
+ quality = 100;
+ }
+
+ if(currentQuality == quality) return // don't recalc if unchanged
+
+ var sf = 0;
+ if (quality < 50) {
+ sf = Math.floor(5000 / quality);
+ } else {
+ sf = Math.floor(200 - quality*2);
+ }
+
+ initQuantTables(sf);
+ currentQuality = quality;
+ // console.log('Quality set to: '+quality +'%');
+ }
+
+ function init(){
+ // var time_start = new Date().getTime();
+ if(!quality) quality = 50;
+ // Create tables
+ initCharLookupTable()
+ initHuffmanTbl();
+ initCategoryNumber();
+ initRGBYUVTable();
+
+ setQuality(quality);
+ // var duration = new Date().getTime() - time_start;
+ // console.log('Initialization '+ duration + 'ms');
+ }
+
+ init();
+
+ };
+
+ JPEGEncoder.encode = function( data, quality ) {
+ var encoder = new JPEGEncoder( quality );
+
+ return encoder.encode( data );
+ }
+
+ return JPEGEncoder;
});
- /**
- * @fileOverview FlashRuntime
- */
- define('runtime/flash/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var $ = Base.$,
- type = 'flash',
- components = {};
-
-
- function getFlashVersion() {
- var version;
-
- try {
- version = navigator.plugins[ 'Shockwave Flash' ];
- version = version.description;
- } catch ( ex ) {
- try {
- version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash')
- .GetVariable('$version');
- } catch ( ex2 ) {
- version = '0.0';
- }
- }
- version = version.match( /\d+/g );
- return parseFloat( version[ 0 ] + '.' + version[ 1 ], 10 );
- }
-
- function FlashRuntime() {
- var pool = {},
- clients = {},
- destroy = this.destroy,
- me = this,
- jsreciver = Base.guid('webuploader_');
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/ ) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- clients[ uid ] = client;
-
- if ( components[ comp ] ) {
- if ( !pool[ uid ] ) {
- pool[ uid ] = new components[ comp ]( client, me );
- }
-
- instance = pool[ uid ];
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
-
- return me.flashExec.apply( client, arguments );
- };
-
- function handler( evt, obj ) {
- var type = evt.type || evt,
- parts, uid;
-
- parts = type.split('::');
- uid = parts[ 0 ];
- type = parts[ 1 ];
-
- // console.log.apply( console, arguments );
-
- if ( type === 'Ready' && uid === me.uid ) {
- me.trigger('ready');
- } else if ( clients[ uid ] ) {
- clients[ uid ].trigger( type.toLowerCase(), evt, obj );
- }
-
- // Base.log( evt, obj );
- }
-
- // flash的接受器。
- window[ jsreciver ] = function() {
- var args = arguments;
-
- // 为了能捕获得到。
- setTimeout(function() {
- handler.apply( null, args );
- }, 1 );
- };
-
- this.jsreciver = jsreciver;
-
- this.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
-
- this.flashExec = function( comp, fn ) {
- var flash = me.getFlash(),
- args = Base.slice( arguments, 2 );
-
- return flash.exec( this.uid, comp, fn, args );
- };
-
- // @todo
- }
-
- Base.inherits( Runtime, {
- constructor: FlashRuntime,
-
- init: function() {
- var container = this.getContainer(),
- opts = this.options,
- html;
-
- // if not the minimal height, shims are not initialized
- // in older browsers (e.g FF3.6, IE6,7,8, Safari 4.0,5.0, etc)
- container.css({
- position: 'absolute',
- top: '-8px',
- left: '-8px',
- width: '9px',
- height: '9px',
- overflow: 'hidden'
- });
-
- // insert flash object
- html = '';
-
- container.html( html );
- },
-
- getFlash: function() {
- if ( this._flash ) {
- return this._flash;
- }
-
- this._flash = $( '#' + this.uid ).get( 0 );
- return this._flash;
- }
-
- });
-
- FlashRuntime.register = function( name, component ) {
- component = components[ name ] = Base.inherits( CompBase, $.extend({
-
- // @todo fix this later
- flashExec: function() {
- var owner = this.owner,
- runtime = this.getRuntime();
-
- return runtime.flashExec.apply( owner, arguments );
- }
- }, component ) );
-
- return component;
- };
-
- if ( getFlashVersion() >= 11.4 ) {
- Runtime.addRuntime( type, FlashRuntime );
- }
-
- return FlashRuntime;
+ /**
+ * @fileOverview Fix android canvas.toDataUrl bug.
+ */
+ define('runtime/html5/androidpatch',[
+ 'runtime/html5/util',
+ 'runtime/html5/jpegencoder',
+ 'base'
+ ], function( Util, encoder, Base ) {
+ var origin = Util.canvasToDataUrl,
+ supportJpeg;
+
+ Util.canvasToDataUrl = function( canvas, type, quality ) {
+ var ctx, w, h, fragement, parts;
+
+ // 非android手机直接跳过。
+ if ( !Base.os.android ) {
+ return origin.apply( null, arguments );
+ }
+
+ // 检测是否canvas支持jpeg导出,根据数据格式来判断。
+ // JPEG 前两位分别是:255, 216
+ if ( type === 'image/jpeg' && typeof supportJpeg === 'undefined' ) {
+ fragement = origin.apply( null, arguments );
+
+ parts = fragement.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ fragement = atob( parts[ 1 ] );
+ } else {
+ fragement = decodeURIComponent( parts[ 1 ] );
+ }
+
+ fragement = fragement.substring( 0, 2 );
+
+ supportJpeg = fragement.charCodeAt( 0 ) === 255 &&
+ fragement.charCodeAt( 1 ) === 216;
+ }
+
+ // 只有在android环境下才修复
+ if ( type === 'image/jpeg' && !supportJpeg ) {
+ w = canvas.width;
+ h = canvas.height;
+ ctx = canvas.getContext('2d');
+
+ return encoder.encode( ctx.getImageData( 0, 0, w, h ), quality );
+ }
+
+ return origin.apply( null, arguments );
+ };
});
- /**
- * @fileOverview FilePicker
- */
- define('runtime/flash/filepicker',[
- 'base',
- 'runtime/flash/runtime'
- ], function( Base, FlashRuntime ) {
- var $ = Base.$;
-
- return FlashRuntime.register( 'FilePicker', {
- init: function( opts ) {
- var copy = $.extend({}, opts ),
- len, i;
-
- // 修复Flash再没有设置title的情况下无法弹出flash文件选择框的bug.
- len = copy.accept && copy.accept.length;
- for ( i = 0; i < len; i++ ) {
- if ( !copy.accept[ i ].title ) {
- copy.accept[ i ].title = 'Files';
- }
- }
-
- delete copy.button;
- delete copy.id;
- delete copy.container;
+ /**
+ * @fileOverview Image
+ */
+ define('runtime/html5/image',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'runtime/html5/util'
+ ], function( Base, Html5Runtime, Util ) {
+
+ var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
+
+ return Html5Runtime.register( 'Image', {
+
+ // flag: 标记是否被修改过。
+ modified: false,
+
+ init: function() {
+ var me = this,
+ img = new Image();
+
+ img.onload = function() {
+
+ me._info = {
+ type: me.type,
+ width: this.width,
+ height: this.height
+ };
+
+ //debugger;
+
+ // 读取meta信息。
+ if ( !me._metas && 'image/jpeg' === me.type ) {
+ Util.parseMeta( me._blob, function( error, ret ) {
+ me._metas = ret;
+ me.owner.trigger('load');
+ });
+ } else {
+ me.owner.trigger('load');
+ }
+ };
+
+ img.onerror = function() {
+ me.owner.trigger('error');
+ };
+
+ me._img = img;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ img = me._img;
+
+ me._blob = blob;
+ me.type = blob.type;
+ img.src = Util.createObjectURL( blob.getSource() );
+ me.owner.once( 'load', function() {
+ Util.revokeObjectURL( img.src );
+ });
+ },
+
+ resize: function( width, height ) {
+ var canvas = this._canvas ||
+ (this._canvas = document.createElement('canvas'));
+
+ this._resize( this._img, canvas, width, height );
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'resize' );
+ },
+
+ crop: function( x, y, w, h, s ) {
+ var cvs = this._canvas ||
+ (this._canvas = document.createElement('canvas')),
+ opts = this.options,
+ img = this._img,
+ iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ orientation = this.getOrientation();
+
+ s = s || 1;
+
+ // todo 解决 orientation 的问题。
+ // values that require 90 degree rotation
+ // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // switch ( orientation ) {
+ // case 6:
+ // tmp = x;
+ // x = y;
+ // y = iw * s - tmp - w;
+ // console.log(ih * s, tmp, w)
+ // break;
+ // }
+
+ // (w ^= h, h ^= w, w ^= h);
+ // }
+
+ cvs.width = w;
+ cvs.height = h;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+ this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
+
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'crop' );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this._blob,
+ opts = this.options,
+ canvas;
+
+ type = type || this.type;
+
+ // blob需要重新生成。
+ if ( this.modified || this.type !== type ) {
+ canvas = this._canvas;
+
+ if ( type === 'image/jpeg' ) {
+
+ blob = Util.canvasToDataUrl( canvas, type, opts.quality );
+
+ if ( opts.preserveHeaders && this._metas &&
+ this._metas.imageHead ) {
+
+ blob = Util.dataURL2ArrayBuffer( blob );
+ blob = Util.updateImageHead( blob,
+ this._metas.imageHead );
+ blob = Util.arrayBufferToBlob( blob, type );
+ return blob;
+ }
+ } else {
+ blob = Util.canvasToDataUrl( canvas, type );
+ }
+
+ blob = Util.dataURL2Blob( blob );
+ }
+
+ return blob;
+ },
+
+ getAsDataUrl: function( type ) {
+ var opts = this.options;
+
+ type = type || this.type;
+
+ if ( type === 'image/jpeg' ) {
+ return Util.canvasToDataUrl( this._canvas, type, opts.quality );
+ } else {
+ return this._canvas.toDataURL( type );
+ }
+ },
+
+ getOrientation: function() {
+ return this._metas && this._metas.exif &&
+ this._metas.exif.get('Orientation') || 1;
+ },
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._metas = val;
+ return this;
+ }
+
+ // getter
+ return this._metas;
+ },
+
+ destroy: function() {
+ var canvas = this._canvas;
+ this._img.onload = null;
+
+ if ( canvas ) {
+ canvas.getContext('2d')
+ .clearRect( 0, 0, canvas.width, canvas.height );
+ canvas.width = canvas.height = 0;
+ this._canvas = null;
+ }
+
+ // 释放内存。非常重要,否则释放不了image的内存。
+ this._img.src = BLANK;
+ this._img = this._blob = null;
+ },
+
+ _resize: function( img, cvs, width, height ) {
+ var opts = this.options,
+ naturalWidth = img.width,
+ naturalHeight = img.height,
+ orientation = this.getOrientation(),
+ scale, w, h, x, y;
+
+ // values that require 90 degree rotation
+ if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // 交换width, height的值。
+ width ^= height;
+ height ^= width;
+ width ^= height;
+ }
+
+ scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
+ height / naturalHeight );
+
+ // 不允许放大。
+ opts.allowMagnify || (scale = Math.min( 1, scale ));
+
+ w = naturalWidth * scale;
+ h = naturalHeight * scale;
+
+ if ( opts.crop ) {
+ cvs.width = width;
+ cvs.height = height;
+ } else {
+ cvs.width = w;
+ cvs.height = h;
+ }
+
+ x = (cvs.width - w) / 2;
+ y = (cvs.height - h) / 2;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+
+ this._renderImageToCanvas( cvs, img, x, y, w, h );
+ },
+
+ _rotate2Orientaion: function( canvas, orientation ) {
+ var width = canvas.width,
+ height = canvas.height,
+ ctx = canvas.getContext('2d');
+
+ switch ( orientation ) {
+ case 5:
+ case 6:
+ case 7:
+ case 8:
+ canvas.width = height;
+ canvas.height = width;
+ break;
+ }
+
+ switch ( orientation ) {
+ case 2: // horizontal flip
+ ctx.translate( width, 0 );
+ ctx.scale( -1, 1 );
+ break;
+
+ case 3: // 180 rotate left
+ ctx.translate( width, height );
+ ctx.rotate( Math.PI );
+ break;
+
+ case 4: // vertical flip
+ ctx.translate( 0, height );
+ ctx.scale( 1, -1 );
+ break;
+
+ case 5: // vertical flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.scale( 1, -1 );
+ break;
+
+ case 6: // 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( 0, -height );
+ break;
+
+ case 7: // horizontal flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( width, -height );
+ ctx.scale( -1, 1 );
+ break;
+
+ case 8: // 90 rotate left
+ ctx.rotate( -0.5 * Math.PI );
+ ctx.translate( -width, 0 );
+ break;
+ }
+ },
+
+ // https://github.com/stomita/ios-imagefile-megapixel/
+ // blob/master/src/megapix-image.js
+ _renderImageToCanvas: (function() {
+
+ // 如果不是ios, 不需要这么复杂!
+ if ( !Base.os.ios ) {
+ return function( canvas ) {
+ var args = Base.slice( arguments, 1 ),
+ ctx = canvas.getContext('2d');
+
+ ctx.drawImage.apply( ctx, args );
+ };
+ }
+
+ /**
+ * Detecting vertical squash in loaded image.
+ * Fixes a bug which squash image vertically while drawing into
+ * canvas for some images.
+ */
+ function detectVerticalSquash( img, iw, ih ) {
+ var canvas = document.createElement('canvas'),
+ ctx = canvas.getContext('2d'),
+ sy = 0,
+ ey = ih,
+ py = ih,
+ data, alpha, ratio;
+
+
+ canvas.width = 1;
+ canvas.height = ih;
+ ctx.drawImage( img, 0, 0 );
+ data = ctx.getImageData( 0, 0, 1, ih ).data;
+
+ // search image edge pixel position in case
+ // it is squashed vertically.
+ while ( py > sy ) {
+ alpha = data[ (py - 1) * 4 + 3 ];
+
+ if ( alpha === 0 ) {
+ ey = py;
+ } else {
+ sy = py;
+ }
+
+ py = (ey + sy) >> 1;
+ }
+
+ ratio = (py / ih);
+ return (ratio === 0) ? 1 : ratio;
+ }
+
+ // fix ie7 bug
+ // http://stackoverflow.com/questions/11929099/
+ // html5-canvas-drawimage-ratio-bug-ios
+ if ( Base.os.ios >= 7 ) {
+ return function( canvas, img, x, y, w, h ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ vertSquashRatio = detectVerticalSquash( img, iw, ih );
+
+ return canvas.getContext('2d').drawImage( img, 0, 0,
+ iw * vertSquashRatio, ih * vertSquashRatio,
+ x, y, w, h );
+ };
+ }
+
+ /**
+ * Detect subsampling in loaded image.
+ * In iOS, larger images than 2M pixels may be
+ * subsampled in rendering.
+ */
+ function detectSubsampling( img ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ canvas, ctx;
+
+ // subsampling may happen overmegapixel image
+ if ( iw * ih > 1024 * 1024 ) {
+ canvas = document.createElement('canvas');
+ canvas.width = canvas.height = 1;
+ ctx = canvas.getContext('2d');
+ ctx.drawImage( img, -iw + 1, 0 );
+
+ // subsampled image becomes half smaller in rendering size.
+ // check alpha channel value to confirm image is covering
+ // edge pixel or not. if alpha value is 0
+ // image is not covering, hence subsampled.
+ return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
+ } else {
+ return false;
+ }
+ }
+
+
+ return function( canvas, img, x, y, width, height ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ ctx = canvas.getContext('2d'),
+ subsampled = detectSubsampling( img ),
+ doSquash = this.type === 'image/jpeg',
+ d = 1024,
+ sy = 0,
+ dy = 0,
+ tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
+
+ if ( subsampled ) {
+ iw /= 2;
+ ih /= 2;
+ }
+
+ ctx.save();
+ tmpCanvas = document.createElement('canvas');
+ tmpCanvas.width = tmpCanvas.height = d;
+
+ tmpCtx = tmpCanvas.getContext('2d');
+ vertSquashRatio = doSquash ?
+ detectVerticalSquash( img, iw, ih ) : 1;
+
+ dw = Math.ceil( d * width / iw );
+ dh = Math.ceil( d * height / ih / vertSquashRatio );
+
+ while ( sy < ih ) {
+ sx = 0;
+ dx = 0;
+ while ( sx < iw ) {
+ tmpCtx.clearRect( 0, 0, d, d );
+ tmpCtx.drawImage( img, -sx, -sy );
+ ctx.drawImage( tmpCanvas, 0, 0, d, d,
+ x + dx, y + dy, dw, dh );
+ sx += d;
+ dx += dw;
+ }
+ sy += d;
+ dy += dh;
+ }
+ ctx.restore();
+ tmpCanvas = tmpCtx = null;
+ };
+ })()
+ });
+ });
- this.flashExec( 'FilePicker', 'init', copy );
- },
+ /**
+ * @fileOverview Transport
+ * @todo 支持chunked传输,优势:
+ * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
+ * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
+ */
+ define('runtime/html5/transport',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var noop = Base.noop,
+ $ = Base.$;
+
+ return Html5Runtime.register( 'Transport', {
+ init: function() {
+ this._status = 0;
+ this._response = null;
+ },
+
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ formData, binary, fr;
+
+ if ( opts.sendAsBinary ) {
+ server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData )) : '';
+
+ binary = blob.getSource();
+ } else {
+ formData = new FormData();
+ $.each( owner._formData, function( k, v ) {
+ formData.append( k, v );
+ });
+
+ formData.append( opts.fileVal, blob.getSource(),
+ opts.filename || owner._formData.name || '' );
+ }
+
+ if ( opts.withCredentials && 'withCredentials' in xhr ) {
+ xhr.open( opts.method, server, true );
+ xhr.withCredentials = true;
+ } else {
+ xhr.open( opts.method, server );
+ }
+
+ this._setRequestHeader( xhr, opts.headers );
+
+ if ( binary ) {
+ // 强制设置成 content-type 为文件流。
+ xhr.overrideMimeType &&
+ xhr.overrideMimeType('application/octet-stream');
+
+ // android直接发送blob会导致服务端接收到的是空文件。
+ // bug详情。
+ // https://code.google.com/p/android/issues/detail?id=39882
+ // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
+ if ( Base.os.android ) {
+ fr = new FileReader();
+
+ fr.onload = function() {
+ xhr.send( this.result );
+ fr = fr.onload = null;
+ };
+
+ fr.readAsArrayBuffer( binary );
+ } else {
+ xhr.send( binary );
+ }
+ } else {
+ xhr.send( formData );
+ }
+ },
+
+ getResponse: function() {
+ return this._response;
+ },
+
+ getResponseAsJson: function() {
+ return this._parseJson( this._response );
+ },
+
+ getResponseHeaders: function() {
+ return this._headers;
+ },
+
+ getStatus: function() {
+ return this._status;
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ xhr.abort();
+
+ this._xhr = xhr = null;
+ }
+ },
+
+ destroy: function() {
+ this.abort();
+ },
+
+ _parseHeader: function(raw) {
+ var ret = {};
+
+ raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
+ ret[key.trim()] = value.trim();
+ });
+
+ return ret;
+ },
+
+ _initAjax: function() {
+ var me = this,
+ xhr = new XMLHttpRequest(),
+ opts = this.options;
+
+ if ( opts.withCredentials && !('withCredentials' in xhr) &&
+ typeof XDomainRequest !== 'undefined' ) {
+ xhr = new XDomainRequest();
+ }
+
+ xhr.upload.onprogress = function( e ) {
+ var percentage = 0;
+
+ if ( e.lengthComputable ) {
+ percentage = e.loaded / e.total;
+ }
+
+ return me.trigger( 'progress', percentage );
+ };
+
+ xhr.onreadystatechange = function() {
+
+ if ( xhr.readyState !== 4 ) {
+ return;
+ }
+
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ me._xhr = null;
+ me._status = xhr.status;
+
+ var separator = '|', // 分隔符
+ // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
+ status = separator + xhr.status +
+ separator + xhr.statusText;
+
+ if ( xhr.status >= 200 && xhr.status < 300 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger('load');
+ } else if ( xhr.status >= 500 && xhr.status < 600 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger( 'error', 'server' + status );
+ }
+
+
+ return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
+ };
+
+ me._xhr = xhr;
+ return xhr;
+ },
+
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.setRequestHeader( key, val );
+ });
+ },
+
+ _parseJson: function( str ) {
+ var json;
+
+ try {
+ json = JSON.parse( str );
+ } catch ( ex ) {
+ json = {};
+ }
+
+ return json;
+ }
+ });
+ });
- destroy: function() {
- this.flashExec( 'FilePicker', 'destroy' );
- }
- });
+ /**
+ * @fileOverview Transport flash实现
+ */
+ define('runtime/html5/md5',[
+ 'runtime/html5/runtime'
+ ], function( FlashRuntime ) {
+
+ /*
+ * Fastest md5 implementation around (JKM md5)
+ * Credits: Joseph Myers
+ *
+ * @see http://www.myersdaily.org/joseph/javascript/md5-text.html
+ * @see http://jsperf.com/md5-shootout/7
+ */
+
+ /* this function is much faster,
+ so if possible we use it. Some IEs
+ are the only ones I know of that
+ need the idiotic second function,
+ generated by an if clause. */
+ var add32 = function (a, b) {
+ return (a + b) & 0xFFFFFFFF;
+ },
+
+ cmn = function (q, a, b, x, s, t) {
+ a = add32(add32(a, q), add32(x, t));
+ return add32((a << s) | (a >>> (32 - s)), b);
+ },
+
+ ff = function (a, b, c, d, x, s, t) {
+ return cmn((b & c) | ((~b) & d), a, b, x, s, t);
+ },
+
+ gg = function (a, b, c, d, x, s, t) {
+ return cmn((b & d) | (c & (~d)), a, b, x, s, t);
+ },
+
+ hh = function (a, b, c, d, x, s, t) {
+ return cmn(b ^ c ^ d, a, b, x, s, t);
+ },
+
+ ii = function (a, b, c, d, x, s, t) {
+ return cmn(c ^ (b | (~d)), a, b, x, s, t);
+ },
+
+ md5cycle = function (x, k) {
+ var a = x[0],
+ b = x[1],
+ c = x[2],
+ d = x[3];
+
+ a = ff(a, b, c, d, k[0], 7, -680876936);
+ d = ff(d, a, b, c, k[1], 12, -389564586);
+ c = ff(c, d, a, b, k[2], 17, 606105819);
+ b = ff(b, c, d, a, k[3], 22, -1044525330);
+ a = ff(a, b, c, d, k[4], 7, -176418897);
+ d = ff(d, a, b, c, k[5], 12, 1200080426);
+ c = ff(c, d, a, b, k[6], 17, -1473231341);
+ b = ff(b, c, d, a, k[7], 22, -45705983);
+ a = ff(a, b, c, d, k[8], 7, 1770035416);
+ d = ff(d, a, b, c, k[9], 12, -1958414417);
+ c = ff(c, d, a, b, k[10], 17, -42063);
+ b = ff(b, c, d, a, k[11], 22, -1990404162);
+ a = ff(a, b, c, d, k[12], 7, 1804603682);
+ d = ff(d, a, b, c, k[13], 12, -40341101);
+ c = ff(c, d, a, b, k[14], 17, -1502002290);
+ b = ff(b, c, d, a, k[15], 22, 1236535329);
+
+ a = gg(a, b, c, d, k[1], 5, -165796510);
+ d = gg(d, a, b, c, k[6], 9, -1069501632);
+ c = gg(c, d, a, b, k[11], 14, 643717713);
+ b = gg(b, c, d, a, k[0], 20, -373897302);
+ a = gg(a, b, c, d, k[5], 5, -701558691);
+ d = gg(d, a, b, c, k[10], 9, 38016083);
+ c = gg(c, d, a, b, k[15], 14, -660478335);
+ b = gg(b, c, d, a, k[4], 20, -405537848);
+ a = gg(a, b, c, d, k[9], 5, 568446438);
+ d = gg(d, a, b, c, k[14], 9, -1019803690);
+ c = gg(c, d, a, b, k[3], 14, -187363961);
+ b = gg(b, c, d, a, k[8], 20, 1163531501);
+ a = gg(a, b, c, d, k[13], 5, -1444681467);
+ d = gg(d, a, b, c, k[2], 9, -51403784);
+ c = gg(c, d, a, b, k[7], 14, 1735328473);
+ b = gg(b, c, d, a, k[12], 20, -1926607734);
+
+ a = hh(a, b, c, d, k[5], 4, -378558);
+ d = hh(d, a, b, c, k[8], 11, -2022574463);
+ c = hh(c, d, a, b, k[11], 16, 1839030562);
+ b = hh(b, c, d, a, k[14], 23, -35309556);
+ a = hh(a, b, c, d, k[1], 4, -1530992060);
+ d = hh(d, a, b, c, k[4], 11, 1272893353);
+ c = hh(c, d, a, b, k[7], 16, -155497632);
+ b = hh(b, c, d, a, k[10], 23, -1094730640);
+ a = hh(a, b, c, d, k[13], 4, 681279174);
+ d = hh(d, a, b, c, k[0], 11, -358537222);
+ c = hh(c, d, a, b, k[3], 16, -722521979);
+ b = hh(b, c, d, a, k[6], 23, 76029189);
+ a = hh(a, b, c, d, k[9], 4, -640364487);
+ d = hh(d, a, b, c, k[12], 11, -421815835);
+ c = hh(c, d, a, b, k[15], 16, 530742520);
+ b = hh(b, c, d, a, k[2], 23, -995338651);
+
+ a = ii(a, b, c, d, k[0], 6, -198630844);
+ d = ii(d, a, b, c, k[7], 10, 1126891415);
+ c = ii(c, d, a, b, k[14], 15, -1416354905);
+ b = ii(b, c, d, a, k[5], 21, -57434055);
+ a = ii(a, b, c, d, k[12], 6, 1700485571);
+ d = ii(d, a, b, c, k[3], 10, -1894986606);
+ c = ii(c, d, a, b, k[10], 15, -1051523);
+ b = ii(b, c, d, a, k[1], 21, -2054922799);
+ a = ii(a, b, c, d, k[8], 6, 1873313359);
+ d = ii(d, a, b, c, k[15], 10, -30611744);
+ c = ii(c, d, a, b, k[6], 15, -1560198380);
+ b = ii(b, c, d, a, k[13], 21, 1309151649);
+ a = ii(a, b, c, d, k[4], 6, -145523070);
+ d = ii(d, a, b, c, k[11], 10, -1120210379);
+ c = ii(c, d, a, b, k[2], 15, 718787259);
+ b = ii(b, c, d, a, k[9], 21, -343485551);
+
+ x[0] = add32(a, x[0]);
+ x[1] = add32(b, x[1]);
+ x[2] = add32(c, x[2]);
+ x[3] = add32(d, x[3]);
+ },
+
+ /* there needs to be support for Unicode here,
+ * unless we pretend that we can redefine the MD-5
+ * algorithm for multi-byte characters (perhaps
+ * by adding every four 16-bit characters and
+ * shortening the sum to 32 bits). Otherwise
+ * I suggest performing MD-5 as if every character
+ * was two bytes--e.g., 0040 0025 = @%--but then
+ * how will an ordinary MD-5 sum be matched?
+ * There is no way to standardize text to something
+ * like UTF-8 before transformation; speed cost is
+ * utterly prohibitive. The JavaScript standard
+ * itself needs to look at this: it should start
+ * providing access to strings as preformed UTF-8
+ * 8-bit unsigned value arrays.
+ */
+ md5blk = function (s) {
+ var md5blks = [],
+ i; /* Andy King said do it this way. */
+
+ for (i = 0; i < 64; i += 4) {
+ md5blks[i >> 2] = s.charCodeAt(i) + (s.charCodeAt(i + 1) << 8) + (s.charCodeAt(i + 2) << 16) + (s.charCodeAt(i + 3) << 24);
+ }
+ return md5blks;
+ },
+
+ md5blk_array = function (a) {
+ var md5blks = [],
+ i; /* Andy King said do it this way. */
+
+ for (i = 0; i < 64; i += 4) {
+ md5blks[i >> 2] = a[i] + (a[i + 1] << 8) + (a[i + 2] << 16) + (a[i + 3] << 24);
+ }
+ return md5blks;
+ },
+
+ md51 = function (s) {
+ var n = s.length,
+ state = [1732584193, -271733879, -1732584194, 271733878],
+ i,
+ length,
+ tail,
+ tmp,
+ lo,
+ hi;
+
+ for (i = 64; i <= n; i += 64) {
+ md5cycle(state, md5blk(s.substring(i - 64, i)));
+ }
+ s = s.substring(i - 64);
+ length = s.length;
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= s.charCodeAt(i) << ((i % 4) << 3);
+ }
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Beware that the final length might not fit in 32 bits so we take care of that
+ tmp = n * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+
+ md5cycle(state, tail);
+ return state;
+ },
+
+ md51_array = function (a) {
+ var n = a.length,
+ state = [1732584193, -271733879, -1732584194, 271733878],
+ i,
+ length,
+ tail,
+ tmp,
+ lo,
+ hi;
+
+ for (i = 64; i <= n; i += 64) {
+ md5cycle(state, md5blk_array(a.subarray(i - 64, i)));
+ }
+
+ // Not sure if it is a bug, however IE10 will always produce a sub array of length 1
+ // containing the last element of the parent array if the sub array specified starts
+ // beyond the length of the parent array - weird.
+ // https://connect.microsoft.com/IE/feedback/details/771452/typed-array-subarray-issue
+ a = (i - 64) < n ? a.subarray(i - 64) : new Uint8Array(0);
+
+ length = a.length;
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= a[i] << ((i % 4) << 3);
+ }
+
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Beware that the final length might not fit in 32 bits so we take care of that
+ tmp = n * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+
+ md5cycle(state, tail);
+
+ return state;
+ },
+
+ hex_chr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'],
+
+ rhex = function (n) {
+ var s = '',
+ j;
+ for (j = 0; j < 4; j += 1) {
+ s += hex_chr[(n >> (j * 8 + 4)) & 0x0F] + hex_chr[(n >> (j * 8)) & 0x0F];
+ }
+ return s;
+ },
+
+ hex = function (x) {
+ var i;
+ for (i = 0; i < x.length; i += 1) {
+ x[i] = rhex(x[i]);
+ }
+ return x.join('');
+ },
+
+ md5 = function (s) {
+ return hex(md51(s));
+ },
+
+
+
+ ////////////////////////////////////////////////////////////////////////////
+
+ /**
+ * SparkMD5 OOP implementation.
+ *
+ * Use this class to perform an incremental md5, otherwise use the
+ * static methods instead.
+ */
+ SparkMD5 = function () {
+ // call reset to init the instance
+ this.reset();
+ };
+
+
+ // In some cases the fast add32 function cannot be used..
+ if (md5('hello') !== '5d41402abc4b2a76b9719d911017c592') {
+ add32 = function (x, y) {
+ var lsw = (x & 0xFFFF) + (y & 0xFFFF),
+ msw = (x >> 16) + (y >> 16) + (lsw >> 16);
+ return (msw << 16) | (lsw & 0xFFFF);
+ };
+ }
+
+
+ /**
+ * Appends a string.
+ * A conversion will be applied if an utf8 string is detected.
+ *
+ * @param {String} str The string to be appended
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.append = function (str) {
+ // converts the string to utf8 bytes if necessary
+ if (/[\u0080-\uFFFF]/.test(str)) {
+ str = unescape(encodeURIComponent(str));
+ }
+
+ // then append as binary
+ this.appendBinary(str);
+
+ return this;
+ };
+
+ /**
+ * Appends a binary string.
+ *
+ * @param {String} contents The binary string to be appended
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.appendBinary = function (contents) {
+ this._buff += contents;
+ this._length += contents.length;
+
+ var length = this._buff.length,
+ i;
+
+ for (i = 64; i <= length; i += 64) {
+ md5cycle(this._state, md5blk(this._buff.substring(i - 64, i)));
+ }
+
+ this._buff = this._buff.substr(i - 64);
+
+ return this;
+ };
+
+ /**
+ * Finishes the incremental computation, reseting the internal state and
+ * returning the result.
+ * Use the raw parameter to obtain the raw result instead of the hex one.
+ *
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.prototype.end = function (raw) {
+ var buff = this._buff,
+ length = buff.length,
+ i,
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
+ ret;
+
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= buff.charCodeAt(i) << ((i % 4) << 3);
+ }
+
+ this._finish(tail, length);
+ ret = !!raw ? this._state : hex(this._state);
+
+ this.reset();
+
+ return ret;
+ };
+
+ /**
+ * Finish the final calculation based on the tail.
+ *
+ * @param {Array} tail The tail (will be modified)
+ * @param {Number} length The length of the remaining buffer
+ */
+ SparkMD5.prototype._finish = function (tail, length) {
+ var i = length,
+ tmp,
+ lo,
+ hi;
+
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(this._state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Do the final computation based on the tail and length
+ // Beware that the final length may not fit in 32 bits so we take care of that
+ tmp = this._length * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+ md5cycle(this._state, tail);
+ };
+
+ /**
+ * Resets the internal state of the computation.
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.reset = function () {
+ this._buff = "";
+ this._length = 0;
+ this._state = [1732584193, -271733879, -1732584194, 271733878];
+
+ return this;
+ };
+
+ /**
+ * Releases memory used by the incremental buffer and other aditional
+ * resources. If you plan to use the instance again, use reset instead.
+ */
+ SparkMD5.prototype.destroy = function () {
+ delete this._state;
+ delete this._buff;
+ delete this._length;
+ };
+
+
+ /**
+ * Performs the md5 hash on a string.
+ * A conversion will be applied if utf8 string is detected.
+ *
+ * @param {String} str The string
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.hash = function (str, raw) {
+ // converts the string to utf8 bytes if necessary
+ if (/[\u0080-\uFFFF]/.test(str)) {
+ str = unescape(encodeURIComponent(str));
+ }
+
+ var hash = md51(str);
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ /**
+ * Performs the md5 hash on a binary string.
+ *
+ * @param {String} content The binary string
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.hashBinary = function (content, raw) {
+ var hash = md51(content);
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ /**
+ * SparkMD5 OOP implementation for array buffers.
+ *
+ * Use this class to perform an incremental md5 ONLY for array buffers.
+ */
+ SparkMD5.ArrayBuffer = function () {
+ // call reset to init the instance
+ this.reset();
+ };
+
+ ////////////////////////////////////////////////////////////////////////////
+
+ /**
+ * Appends an array buffer.
+ *
+ * @param {ArrayBuffer} arr The array to be appended
+ *
+ * @return {SparkMD5.ArrayBuffer} The instance itself
+ */
+ SparkMD5.ArrayBuffer.prototype.append = function (arr) {
+ // TODO: we could avoid the concatenation here but the algorithm would be more complex
+ // if you find yourself needing extra performance, please make a PR.
+ var buff = this._concatArrayBuffer(this._buff, arr),
+ length = buff.length,
+ i;
+
+ this._length += arr.byteLength;
+
+ for (i = 64; i <= length; i += 64) {
+ md5cycle(this._state, md5blk_array(buff.subarray(i - 64, i)));
+ }
+
+ // Avoids IE10 weirdness (documented above)
+ this._buff = (i - 64) < length ? buff.subarray(i - 64) : new Uint8Array(0);
+
+ return this;
+ };
+
+ /**
+ * Finishes the incremental computation, reseting the internal state and
+ * returning the result.
+ * Use the raw parameter to obtain the raw result instead of the hex one.
+ *
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.ArrayBuffer.prototype.end = function (raw) {
+ var buff = this._buff,
+ length = buff.length,
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
+ i,
+ ret;
+
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= buff[i] << ((i % 4) << 3);
+ }
+
+ this._finish(tail, length);
+ ret = !!raw ? this._state : hex(this._state);
+
+ this.reset();
+
+ return ret;
+ };
+
+ SparkMD5.ArrayBuffer.prototype._finish = SparkMD5.prototype._finish;
+
+ /**
+ * Resets the internal state of the computation.
+ *
+ * @return {SparkMD5.ArrayBuffer} The instance itself
+ */
+ SparkMD5.ArrayBuffer.prototype.reset = function () {
+ this._buff = new Uint8Array(0);
+ this._length = 0;
+ this._state = [1732584193, -271733879, -1732584194, 271733878];
+
+ return this;
+ };
+
+ /**
+ * Releases memory used by the incremental buffer and other aditional
+ * resources. If you plan to use the instance again, use reset instead.
+ */
+ SparkMD5.ArrayBuffer.prototype.destroy = SparkMD5.prototype.destroy;
+
+ /**
+ * Concats two array buffers, returning a new one.
+ *
+ * @param {ArrayBuffer} first The first array buffer
+ * @param {ArrayBuffer} second The second array buffer
+ *
+ * @return {ArrayBuffer} The new array buffer
+ */
+ SparkMD5.ArrayBuffer.prototype._concatArrayBuffer = function (first, second) {
+ var firstLength = first.length,
+ result = new Uint8Array(firstLength + second.byteLength);
+
+ result.set(first);
+ result.set(new Uint8Array(second), firstLength);
+
+ return result;
+ };
+
+ /**
+ * Performs the md5 hash on an array buffer.
+ *
+ * @param {ArrayBuffer} arr The array buffer
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.ArrayBuffer.hash = function (arr, raw) {
+ var hash = md51_array(new Uint8Array(arr));
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ return FlashRuntime.register( 'Md5', {
+ init: function() {
+ // do nothing.
+ },
+
+ loadFromBlob: function( file ) {
+ var blob = file.getSource(),
+ chunkSize = 2 * 1024 * 1024,
+ chunks = Math.ceil( blob.size / chunkSize ),
+ chunk = 0,
+ owner = this.owner,
+ spark = new SparkMD5.ArrayBuffer(),
+ me = this,
+ blobSlice = blob.mozSlice || blob.webkitSlice || blob.slice,
+ loadNext, fr;
+
+ fr = new FileReader();
+
+ loadNext = function() {
+ var start, end;
+
+ start = chunk * chunkSize;
+ end = Math.min( start + chunkSize, blob.size );
+
+ fr.onload = function( e ) {
+ spark.append( e.target.result );
+ owner.trigger( 'progress', {
+ total: file.size,
+ loaded: end
+ });
+ };
+
+ fr.onloadend = function() {
+ fr.onloadend = fr.onload = null;
+
+ if ( ++chunk < chunks ) {
+ setTimeout( loadNext, 1 );
+ } else {
+ setTimeout(function(){
+ owner.trigger('load');
+ me.result = spark.end();
+ loadNext = file = blob = spark = null;
+ owner.trigger('complete');
+ }, 50 );
+ }
+ };
+
+ fr.readAsArrayBuffer( blobSlice.call( blob, start, end ) );
+ };
+
+ loadNext();
+ },
+
+ getResult: function() {
+ return this.result;
+ }
+ });
});
- /**
- * @fileOverview 图片压缩
- */
- define('runtime/flash/image',[
- 'runtime/flash/runtime'
- ], function( FlashRuntime ) {
-
- return FlashRuntime.register( 'Image', {
- // init: function( options ) {
- // var owner = this.owner;
-
- // this.flashExec( 'Image', 'init', options );
- // owner.on( 'load', function() {
- // debugger;
- // });
- // },
-
- loadFromBlob: function( blob ) {
- var owner = this.owner;
-
- owner.info() && this.flashExec( 'Image', 'info', owner.info() );
- owner.meta() && this.flashExec( 'Image', 'meta', owner.meta() );
-
- this.flashExec( 'Image', 'loadFromBlob', blob.uid );
- }
- });
+ /**
+ * @fileOverview FlashRuntime
+ */
+ define('runtime/flash/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var $ = Base.$,
+ type = 'flash',
+ components = {};
+
+
+ function getFlashVersion() {
+ var version;
+
+ try {
+ version = navigator.plugins[ 'Shockwave Flash' ];
+ version = version.description;
+ } catch ( ex ) {
+ try {
+ version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash')
+ .GetVariable('$version');
+ } catch ( ex2 ) {
+ version = '0.0';
+ }
+ }
+ version = version.match( /\d+/g );
+ return parseFloat( version[ 0 ] + '.' + version[ 1 ], 10 );
+ }
+
+ function FlashRuntime() {
+ var pool = {},
+ clients = {},
+ destroy = this.destroy,
+ me = this,
+ jsreciver = Base.guid('webuploader_');
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/ ) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ clients[ uid ] = client;
+
+ if ( components[ comp ] ) {
+ if ( !pool[ uid ] ) {
+ pool[ uid ] = new components[ comp ]( client, me );
+ }
+
+ instance = pool[ uid ];
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+
+ return me.flashExec.apply( client, arguments );
+ };
+
+ function handler( evt, obj ) {
+ var type = evt.type || evt,
+ parts, uid;
+
+ parts = type.split('::');
+ uid = parts[ 0 ];
+ type = parts[ 1 ];
+
+ // console.log.apply( console, arguments );
+
+ if ( type === 'Ready' && uid === me.uid ) {
+ me.trigger('ready');
+ } else if ( clients[ uid ] ) {
+ clients[ uid ].trigger( type.toLowerCase(), evt, obj );
+ }
+
+ // Base.log( evt, obj );
+ }
+
+ // flash的接受器。
+ window[ jsreciver ] = function() {
+ var args = arguments;
+
+ // 为了能捕获得到。
+ setTimeout(function() {
+ handler.apply( null, args );
+ }, 1 );
+ };
+
+ this.jsreciver = jsreciver;
+
+ this.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+
+ this.flashExec = function( comp, fn ) {
+ var flash = me.getFlash(),
+ args = Base.slice( arguments, 2 );
+
+ return flash.exec( this.uid, comp, fn, args );
+ };
+
+ // @todo
+ }
+
+ Base.inherits( Runtime, {
+ constructor: FlashRuntime,
+
+ init: function() {
+ var container = this.getContainer(),
+ opts = this.options,
+ html;
+
+ // if not the minimal height, shims are not initialized
+ // in older browsers (e.g FF3.6, IE6,7,8, Safari 4.0,5.0, etc)
+ container.css({
+ position: 'absolute',
+ top: '-8px',
+ left: '-8px',
+ width: '9px',
+ height: '9px',
+ overflow: 'hidden'
+ });
+
+ // insert flash object
+ html = '';
+
+ container.html( html );
+ },
+
+ getFlash: function() {
+ if ( this._flash ) {
+ return this._flash;
+ }
+
+ this._flash = $( '#' + this.uid ).get( 0 );
+ return this._flash;
+ }
+
+ });
+
+ FlashRuntime.register = function( name, component ) {
+ component = components[ name ] = Base.inherits( CompBase, $.extend({
+
+ // @todo fix this later
+ flashExec: function() {
+ var owner = this.owner,
+ runtime = this.getRuntime();
+
+ return runtime.flashExec.apply( owner, arguments );
+ }
+ }, component ) );
+
+ return component;
+ };
+
+ if ( getFlashVersion() >= 11.4 ) {
+ Runtime.addRuntime( type, FlashRuntime );
+ }
+
+ return FlashRuntime;
});
- /**
- * @fileOverview Transport flash实现
- */
- define('runtime/flash/transport',[
- 'base',
- 'runtime/flash/runtime',
- 'runtime/client'
- ], function( Base, FlashRuntime, RuntimeClient ) {
- var $ = Base.$;
-
- return FlashRuntime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- this._responseJson = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- binary;
-
- xhr.connectRuntime( blob.ruid );
-
- if ( opts.sendAsBinary ) {
- server += (/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData );
-
- binary = blob.uid;
- } else {
- $.each( owner._formData, function( k, v ) {
- xhr.exec( 'append', k, v );
- });
-
- xhr.exec( 'appendBlob', opts.fileVal, blob.uid,
- opts.filename || owner._formData.name || '' );
- }
-
- this._setRequestHeader( xhr, opts.headers );
- xhr.exec( 'send', {
- method: opts.method,
- url: server,
- forceURLStream: opts.forceURLStream,
- mimeType: 'application/octet-stream'
- }, binary );
- },
-
- getStatus: function() {
- return this._status;
- },
-
- getResponse: function() {
- return this._response || '';
- },
-
- getResponseAsJson: function() {
- return this._responseJson;
- },
-
- getResponseHeaders: function() {
- // flash 暂不支持
- return {};
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.exec('abort');
- xhr.destroy();
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new RuntimeClient('XMLHttpRequest');
-
- xhr.on( 'uploadprogress progress', function( e ) {
- var percent = e.loaded / e.total;
- percent = Math.min( 1, Math.max( 0, percent ) );
- return me.trigger( 'progress', percent );
- });
-
- xhr.on( 'load', function() {
- var status = xhr.exec('getStatus'),
- readBody = false,
- err = '',
- p;
-
- xhr.off();
- me._xhr = null;
-
- if ( status >= 200 && status < 300 ) {
- readBody = true;
- } else if ( status >= 500 && status < 600 ) {
- readBody = true;
- err = 'server-'+status;
- } else {
- err = 'http-'+status;
- }
-
- if ( readBody ) {
- me._response = xhr.exec('getResponse');
- me._response = decodeURIComponent( me._response );
-
- // flash 处理可能存在 bug, 没辙只能靠 js 了
- // try {
- // me._responseJson = xhr.exec('getResponseAsJson');
- // } catch ( error ) {
-
- p = function( s ) {
- try {
- if (window.JSON && window.JSON.parse) {
- return JSON.parse(s);
- }
-
- return new Function('return ' + s).call();
- } catch ( err ) {
- return {};
- }
- };
- me._responseJson = me._response ? p(me._response) : {};
-
- // }
- }
-
- xhr.destroy();
- xhr = null;
-
- return err ? me.trigger( 'error', err ) : me.trigger('load');
- });
-
- xhr.on( 'error', function() {
- var status = xhr.exec('getStatus'),err = status?'http-'+status:'http';
- xhr.off();
- me._xhr = null;
- me.trigger( 'error', err );
- });
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.exec( 'setRequestHeader', key, val );
- });
- }
- });
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/flash/filepicker',[
+ 'base',
+ 'runtime/flash/runtime'
+ ], function( Base, FlashRuntime ) {
+ var $ = Base.$;
+
+ return FlashRuntime.register( 'FilePicker', {
+ init: function( opts ) {
+ var copy = $.extend({}, opts ),
+ len, i;
+
+ // 修复Flash再没有设置title的情况下无法弹出flash文件选择框的bug.
+ len = copy.accept && copy.accept.length;
+ for ( i = 0; i < len; i++ ) {
+ if ( !copy.accept[ i ].title ) {
+ copy.accept[ i ].title = 'Files';
+ }
+ }
+
+ delete copy.button;
+ delete copy.id;
+ delete copy.container;
+
+ this.flashExec( 'FilePicker', 'init', copy );
+ },
+
+ destroy: function() {
+ this.flashExec( 'FilePicker', 'destroy' );
+ }
+ });
});
-
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/flash/blob',[
- 'runtime/flash/runtime',
- 'lib/blob'
- ], function( FlashRuntime, Blob ) {
-
- return FlashRuntime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.flashExec( 'Blob', 'slice', start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
+ /**
+ * @fileOverview 图片压缩
+ */
+ define('runtime/flash/image',[
+ 'runtime/flash/runtime'
+ ], function( FlashRuntime ) {
+
+ return FlashRuntime.register( 'Image', {
+ // init: function( options ) {
+ // var owner = this.owner;
+
+ // this.flashExec( 'Image', 'init', options );
+ // owner.on( 'load', function() {
+ // debugger;
+ // });
+ // },
+
+ loadFromBlob: function( blob ) {
+ var owner = this.owner;
+
+ owner.info() && this.flashExec( 'Image', 'info', owner.info() );
+ owner.meta() && this.flashExec( 'Image', 'meta', owner.meta() );
+
+ this.flashExec( 'Image', 'loadFromBlob', blob.uid );
+ }
+ });
});
- /**
- * @fileOverview Md5 flash实现
- */
- define('runtime/flash/md5',[
- 'runtime/flash/runtime'
- ], function( FlashRuntime ) {
-
- return FlashRuntime.register( 'Md5', {
- init: function() {
- // do nothing.
- },
+ /**
+ * @fileOverview Transport flash实现
+ */
+ define('runtime/flash/transport',[
+ 'base',
+ 'runtime/flash/runtime',
+ 'runtime/client'
+ ], function( Base, FlashRuntime, RuntimeClient ) {
+ var $ = Base.$;
+
+ return FlashRuntime.register( 'Transport', {
+ init: function() {
+ this._status = 0;
+ this._response = null;
+ this._responseJson = null;
+ },
+
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ binary;
+
+ xhr.connectRuntime( blob.ruid );
+
+ if ( opts.sendAsBinary ) {
+ server += (/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData );
+
+ binary = blob.uid;
+ } else {
+ $.each( owner._formData, function( k, v ) {
+ xhr.exec( 'append', k, v );
+ });
+
+ xhr.exec( 'appendBlob', opts.fileVal, blob.uid,
+ opts.filename || owner._formData.name || '' );
+ }
+
+ this._setRequestHeader( xhr, opts.headers );
+ xhr.exec( 'send', {
+ method: opts.method,
+ url: server,
+ forceURLStream: opts.forceURLStream,
+ mimeType: 'application/octet-stream'
+ }, binary );
+ },
+
+ getStatus: function() {
+ return this._status;
+ },
+
+ getResponse: function() {
+ return this._response || '';
+ },
+
+ getResponseAsJson: function() {
+ return this._responseJson;
+ },
+
+ getResponseHeaders: function() {
+ // flash 暂不支持
+ return {};
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.exec('abort');
+ xhr.destroy();
+ this._xhr = xhr = null;
+ }
+ },
+
+ destroy: function() {
+ this.abort();
+ },
+
+ _initAjax: function() {
+ var me = this,
+ xhr = new RuntimeClient('XMLHttpRequest');
+
+ xhr.on( 'uploadprogress progress', function( e ) {
+ var percent = e.loaded / e.total;
+ percent = Math.min( 1, Math.max( 0, percent ) );
+ return me.trigger( 'progress', percent );
+ });
+
+ xhr.on( 'load', function() {
+ var status = xhr.exec('getStatus'),
+ readBody = false,
+ err = '',
+ p;
+
+ xhr.off();
+ me._xhr = null;
+
+ if ( status >= 200 && status < 300 ) {
+ readBody = true;
+ } else if ( status >= 500 && status < 600 ) {
+ readBody = true;
+ err = 'server-'+status;
+ } else {
+ err = 'http-'+status;
+ }
+
+ if ( readBody ) {
+ me._response = xhr.exec('getResponse');
+ me._response = decodeURIComponent( me._response );
+
+ // flash 处理可能存在 bug, 没辙只能靠 js 了
+ // try {
+ // me._responseJson = xhr.exec('getResponseAsJson');
+ // } catch ( error ) {
+
+ p = function( s ) {
+ try {
+ if (window.JSON && window.JSON.parse) {
+ return JSON.parse(s);
+ }
+
+ return new Function('return ' + s).call();
+ } catch ( err ) {
+ return {};
+ }
+ };
+ me._responseJson = me._response ? p(me._response) : {};
+
+ // }
+ }
+
+ xhr.destroy();
+ xhr = null;
+
+ return err ? me.trigger( 'error', err ) : me.trigger('load');
+ });
+
+ xhr.on( 'error', function() {
+ var status = xhr.exec('getStatus'),err = status?'http-'+status:'http';
+ xhr.off();
+ me._xhr = null;
+ me.trigger( 'error', err );
+ });
+
+ me._xhr = xhr;
+ return xhr;
+ },
+
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.exec( 'setRequestHeader', key, val );
+ });
+ }
+ });
+ });
- loadFromBlob: function( blob ) {
- return this.flashExec( 'Md5', 'loadFromBlob', blob.uid );
- }
- });
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/flash/blob',[
+ 'runtime/flash/runtime',
+ 'lib/blob'
+ ], function( FlashRuntime, Blob ) {
+
+ return FlashRuntime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.flashExec( 'Blob', 'slice', start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
});
- /**
- * @fileOverview 完全版本。
- */
- define('preset/all',[
- 'base',
-
- // widgets
- 'widgets/filednd',
- 'widgets/filepaste',
- 'widgets/filepicker',
- 'widgets/image',
- 'widgets/queue',
- 'widgets/runtime',
- 'widgets/upload',
- 'widgets/validator',
- 'widgets/md5',
-
- // runtimes
- // html5
- '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',
-
- // flash
- 'runtime/flash/filepicker',
- 'runtime/flash/image',
- 'runtime/flash/transport',
- 'runtime/flash/blob',
- 'runtime/flash/md5'
- ], function( Base ) {
- return Base;
+ /**
+ * @fileOverview Md5 flash实现
+ */
+ define('runtime/flash/md5',[
+ 'runtime/flash/runtime'
+ ], function( FlashRuntime ) {
+
+ return FlashRuntime.register( 'Md5', {
+ init: function() {
+ // do nothing.
+ },
+
+ loadFromBlob: function( blob ) {
+ return this.flashExec( 'Md5', 'loadFromBlob', blob.uid );
+ }
+ });
});
- /**
- * @fileOverview 日志组件,主要用来收集错误信息,可以帮助 webuploader 更好的定位问题和发展。
- *
- * 如果您不想要启用此功能,请在打包的时候去掉 log 模块。
- *
- * 或者可以在初始化的时候通过 options.disableWidgets 属性禁用。
- *
- * 如:
- * WebUploader.create({
- * ...
- *
- * disableWidgets: 'log',
- *
- * ...
- * })
- */
- define('widgets/log',[
- 'base',
- 'uploader',
- 'widgets/widget'
- ], function( Base, Uploader ) {
- var $ = Base.$,
- logUrl = ' http://static.tieba.baidu.com/tb/pms/img/st.gif??',
- product = (location.hostname || location.host || 'protected').toLowerCase(),
-
- // 只针对 baidu 内部产品用户做统计功能。
- enable = product && /baidu/i.exec(product),
- base;
-
- if (!enable) {
- return;
- }
-
- base = {
- dv: 3,
- master: 'webuploader',
- online: /test/.exec(product) ? 0 : 1,
- module: '',
- product: product,
- type: 0
- };
-
- function send(data) {
- var obj = $.extend({}, base, data),
- url = logUrl.replace(/^(.*)\?/, '$1' + $.param( obj )),
- image = new Image();
-
- image.src = url;
- }
-
- return Uploader.register({
- name: 'log',
-
- init: function() {
- var owner = this.owner,
- count = 0,
- size = 0;
-
- owner
- .on('error', function(code) {
- send({
- type: 2,
- c_error_code: code
- });
- })
- .on('uploadError', function(file, reason) {
- send({
- type: 2,
- c_error_code: 'UPLOAD_ERROR',
- c_reason: '' + reason
- });
- })
- .on('uploadComplete', function(file) {
- count++;
- size += file.size;
- }).
- on('uploadFinished', function() {
- send({
- c_count: count,
- c_size: size
- });
- count = size = 0;
- });
-
- send({
- c_usage: 1
- });
- }
- });
+ /**
+ * @fileOverview 完全版本。
+ */
+ define('preset/all',[
+ 'base',
+
+ // widgets
+ 'widgets/filednd',
+ 'widgets/filepaste',
+ 'widgets/filepicker',
+ 'widgets/image',
+ 'widgets/queue',
+ 'widgets/runtime',
+ 'widgets/upload',
+ 'widgets/validator',
+ 'widgets/md5',
+
+ // runtimes
+ // html5
+ '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',
+
+ // flash
+ 'runtime/flash/filepicker',
+ 'runtime/flash/image',
+ 'runtime/flash/transport',
+ 'runtime/flash/blob',
+ 'runtime/flash/md5'
+ ], function( Base ) {
+ return Base;
});
- /**
- * @fileOverview Uploader上传类
- */
- define('webuploader',[
- 'preset/all',
- 'widgets/log'
- ], function( preset ) {
- return preset;
+ /**
+ * @fileOverview 日志组件,主要用来收集错误信息,可以帮助 webuploader 更好的定位问题和发展。
+ *
+ * 如果您不想要启用此功能,请在打包的时候去掉 log 模块。
+ *
+ * 或者可以在初始化的时候通过 options.disableWidgets 属性禁用。
+ *
+ * 如:
+ * WebUploader.create({
+ * ...
+ *
+ * disableWidgets: 'log',
+ *
+ * ...
+ * })
+ */
+ define('widgets/log',[
+ 'base',
+ 'uploader',
+ 'widgets/widget'
+ ], function( Base, Uploader ) {
+ var $ = Base.$,
+ logUrl = ' http://static.tieba.baidu.com/tb/pms/img/st.gif??',
+ product = (location.hostname || location.host || 'protected').toLowerCase(),
+
+ // 只针对 baidu 内部产品用户做统计功能。
+ enable = product && /baidu/i.exec(product),
+ base;
+
+ if (!enable) {
+ return;
+ }
+
+ base = {
+ dv: 3,
+ master: 'webuploader',
+ online: /test/.exec(product) ? 0 : 1,
+ module: '',
+ product: product,
+ type: 0
+ };
+
+ function send(data) {
+ var obj = $.extend({}, base, data),
+ url = logUrl.replace(/^(.*)\?/, '$1' + $.param( obj )),
+ image = new Image();
+
+ image.src = url;
+ }
+
+ return Uploader.register({
+ name: 'log',
+
+ init: function() {
+ var owner = this.owner,
+ count = 0,
+ size = 0;
+
+ owner
+ .on('error', function(code) {
+ send({
+ type: 2,
+ c_error_code: code
+ });
+ })
+ .on('uploadError', function(file, reason) {
+ send({
+ type: 2,
+ c_error_code: 'UPLOAD_ERROR',
+ c_reason: '' + reason
+ });
+ })
+ .on('uploadComplete', function(file) {
+ count++;
+ size += file.size;
+ }).
+ on('uploadFinished', function() {
+ send({
+ c_count: count,
+ c_size: size
+ });
+ count = size = 0;
+ });
+
+ send({
+ c_usage: 1
+ });
+ }
+ });
});
- return require('webuploader');
-});
+ /**
+ * @fileOverview Uploader上传类
+ */
+ define('webuploader',[
+ 'preset/all',
+ 'widgets/log'
+ ], function( preset ) {
+ return preset;
+ });
+ return require('webuploader');
+});
diff --git a/dist/webuploader.min.js b/dist/webuploader.min.js
index a3c5e827d..3fd3a2e82 100644
--- a/dist/webuploader.min.js
+++ b/dist/webuploader.min.js
@@ -1,3 +1,3 @@
/* WebUploader 0.1.8-alpha */!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.require,c=a.__dollar||a.jQuery||a.Zepto||b("jquery")||b("zepto");if(!c)throw new Error("jQuery or Zepto not found!");return c}),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.8-alpha",$: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;++e1?(d.isPlainObject(b)&&d.isPlainObject(c[a])?d.extend(c[a],b):c[a]=b,void 0):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?("name"===a&&(g.name=c.name),void 0):(g[a.replace(/[A-Z]/g,"-$&").toLowerCase()]=a,void 0)})):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||c.lastModified&&new Date(c.lastModified).toLocaleString()||(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",style:"webuploader-pick"},b.inherits(c,{constructor:e,init:function(){var c=this,e=c.options,g=e.button,h=e.style;h&&g.addClass("webuploader-pick"),c.on("all",function(a){var b;switch(a){case"mouseenter":h&&g.addClass("webuploader-pick-hover");break;case"mouseleave":h&&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[0]&&b[0].offsetWidth||b.outerWidth()||b.width(),d=b[0]&&b[0].offsetHeight||b.outerHeight()||b.height(),e=b.offset();c&&d&&a.css({bottom:"auto",right:"auto",width:c+"px",height:d+"px"}).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.on("dialogopen",function(){e.owner.trigger("dialogOpen",j.button)}),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()}),d(i,a.source.size,function(){a._info&&i.info(a._info),a._meta&&i.meta(a._meta),i.loadFromBlob(a.source)}),void 0):(b(!0),void 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=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.sizeb;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],this._delFile(a),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)}))},_delFile:function(a){for(var b=this._queue.length-1;b>=0;b--)if(this._queue[b]==a){this._queue.splice(b,1);break}},_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):(b.owner.trigger("error","Q_TYPE_DENIED",a),void 0):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)}),a.length&&(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),b||f.request("start-upload"),void 0;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()},getResponseHeaders:function(){return this.exec("getResponseHeaders")},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,chunkRetryDelay:1e3,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?(b=b.id?b:c.request("get-file",b),b.getStatus()===h.INTERRUPT?(b.setStatus(h.QUEUED),f.each(c.pool,function(a,c){c.file===b&&(c.transport&&c.transport.send(),b.setStatus(h.PROGRESS))})):b.getStatus()!==h.PROGRESS&&b.setStatus(h.QUEUED)):f.each(c.request("get-files",[h.INITED]),function(){this.setStatus(h.QUEUED)}),c.runing)return c.owner.trigger("startUpload",b),a.nextTick(c.__tick);c.runing=!0;var d=[];b||f.each(c.pool,function(a,b){var e=b.file;if(e.getStatus()===h.INTERRUPT){if(c._trigged=!1,d.push(e),b.waiting)return;b.transport?b.transport.send():c._doSend(b)}}),f.each(d,function(){this.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,e){e.file===b&&(e.transport&&e.transport.abort(),c&&(d._putback(e),d._popBlock(e)))}),d.owner.trigger("stopUpload",b),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):(d.pool.length1&&~"http,abort,server".indexOf(a.replace(/-.*/,""))&&b.retried1&&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))},destroy:function(){clearTimeout(this.retryTimer)}})}),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 this.trigger("beforeFileQueuedCheckfileNumLimit",a,c)?(c>=d&&e&&(e=!1,this.trigger("error","Q_EXCEED_NUM_LIMIT",d,a),setTimeout(function(){e=!0},1)),c>=d?!1:!0):!1}),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 g.dndOver=!1,g.elem.removeClass(e+"over"),b&&!f?(g._getTansferFiles(b,function(a){g.trigger("drop",d.map(a,function(a){return new c(h,a)}))}),!1):void 0},_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,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("capture","camera"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.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;ei&&(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;g6&&(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 a.log("Invalid Exif data: Invalid tag type."),void 0;if(i=o.size*g,j=i>4?d+b.getUint32(e+8,h):e+8,j+i>b.byteLength)return a.log("Invalid Exif data: Invalid data offset."),void 0;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;lb.byteLength)return a.log("Invalid Exif data: Invalid directory offset."),void 0;if(g=b.getUint16(d,e),h=d+2+12*g,h+4>b.byteLength)return a.log("Invalid Exif data: Invalid directory size."),void 0;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 a.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==b.getUint16(d+8))return a.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(b.getUint16(i)){case 18761:g=!0;break;case 19789:g=!1;break;default:return a.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==b.getUint16(i+2,g))return a.log("Invalid Exif data: Missing TIFF marker."),void 0;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/(8*z[P[i]]*h[j]*h[k]),C[i]=1/(8*A[P[i]]*h[j]*h[k]),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<J&&(255==I?(h(255),h(0)):h(I),J=7,I=0)}function h(a){H.push(N[a])}function i(a){h(255&a>>8),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?0|_+.5:0|_-.5;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=50>a?Math.floor(5e3/a):Math.floor(200-2*a),b(c),x=a}}function s(){a||(a=50),q(),d(),e(),f(),r(a)}Math.round;var t,u,v,w,x,y=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<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+=g.attachInfoToQuery!==!1?(/\?/.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)},getResponseHeaders:function(){return this._headers},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()},_parseHeader:function(a){var b={};return a&&a.replace(/^([^\:]+):(.*)$/gm,function(a,c,d){b[c.trim()]=d.trim()}),b},_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(){if(4===b.readyState){b.upload.onprogress=c,b.onreadystatechange=c,a._xhr=null,a._status=b.status;var d="|",e=d+b.status+d+b.statusText;return b.status>=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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 4294967295&a+b},c=function(a,c,d,e,f,g){return c=b(b(c,a),b(e,g)),b(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[15&a>>8*b+4]+m[15&a>>8*b];return c},o=function(a){var b;for(b=0;b>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'+''+''+''+"",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},getResponseHeaders:function(){return{}},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-"+e):g="http-"+e,f&&(b._response=c.exec("getResponse"),b._response=decodeURIComponent(b._response),d=function(b){try{return a.JSON&&a.JSON.parse?JSON.parse(b):new Function("return "+b).call()}catch(c){return{}}},b._responseJson=b._response?d(b._response):{}),c.destroy(),c=null,g?b.trigger("error",g):b.trigger("load")}),c.on("error",function(){var a=c.exec("getStatus"),d=a?"http-"+a:"http";c.off(),b._xhr=null,b.trigger("error",d)}),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(this.getRuid(),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")});
\ No newline at end of file
+},j.chunkRetryDelay||1e3)):(d||"server"!==a||(a=c(a)),k.setStatus(h.ERROR,a),i.trigger("uploadError",k,a,e,f),i.trigger("uploadComplete",k))}),l.on("load",function(){var a;return(a=c())?(l.trigger("error",a,!0),void 0):(1===k.remaning?g._finishFile(k,e):l.destroy(),void 0)}),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))},destroy:function(){clearTimeout(this.retryTimer)}})}),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 this.trigger("beforeFileQueuedCheckfileNumLimit",a,c)?(c>=d&&e&&(e=!1,this.trigger("error","Q_EXCEED_NUM_LIMIT",d,a),setTimeout(function(){e=!0},1)),c>=d?!1:!0):!1}),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 g.dndOver=!1,g.elem.removeClass(e+"over"),b&&!f?(g._getTansferFiles(b,function(a){g.trigger("drop",d.map(a,function(a){return new c(h,a)}))}),!1):void 0},_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,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.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;ei&&(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;g6&&(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 a.log("Invalid Exif data: Invalid tag type."),void 0;if(i=o.size*g,j=i>4?d+b.getUint32(e+8,h):e+8,j+i>b.byteLength)return a.log("Invalid Exif data: Invalid data offset."),void 0;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;lb.byteLength)return a.log("Invalid Exif data: Invalid directory offset."),void 0;if(g=b.getUint16(d,e),h=d+2+12*g,h+4>b.byteLength)return a.log("Invalid Exif data: Invalid directory size."),void 0;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 a.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==b.getUint16(d+8))return a.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(b.getUint16(i)){case 18761:g=!0;break;case 19789:g=!1;break;default:return a.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==b.getUint16(i+2,g))return a.log("Invalid Exif data: Missing TIFF marker."),void 0;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/(8*z[P[i]]*h[j]*h[k]),C[i]=1/(8*A[P[i]]*h[j]*h[k]),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<J&&(255==I?(h(255),h(0)):h(I),J=7,I=0)}function h(a){H.push(N[a])}function i(a){h(255&a>>8),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?0|_+.5:0|_-.5;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=50>a?Math.floor(5e3/a):Math.floor(200-2*a),b(c),x=a}}function s(){a||(a=50),q(),d(),e(),f(),r(a)}Math.round;var t,u,v,w,x,y=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<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+=g.attachInfoToQuery!==!1?(/\?/.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)},getResponseHeaders:function(){return this._headers},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()},_parseHeader:function(a){var b={};return a&&a.replace(/^([^\:]+):(.*)$/gm,function(a,c,d){b[c.trim()]=d.trim()}),b},_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(){if(4===b.readyState){b.upload.onprogress=c,b.onreadystatechange=c,a._xhr=null,a._status=b.status;var d="|",e=d+b.status+d+b.statusText;return b.status>=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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 4294967295&a+b},c=function(a,c,d,e,f,g){return c=b(b(c,a),b(e,g)),b(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[15&a>>8*b+4]+m[15&a>>8*b];return c},o=function(a){var b;for(b=0;b>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'+''+''+''+"",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},getResponseHeaders:function(){return{}},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-"+e):g="http-"+e,f&&(b._response=c.exec("getResponse"),b._response=decodeURIComponent(b._response),d=function(b){try{return a.JSON&&a.JSON.parse?JSON.parse(b):new Function("return "+b).call()}catch(c){return{}}},b._responseJson=b._response?d(b._response):{}),c.destroy(),c=null,g?b.trigger("error",g):b.trigger("load")}),c.on("error",function(){var a=c.exec("getStatus"),d=a?"http-"+a:"http";c.off(),b._xhr=null,b.trigger("error",d)}),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(this.getRuid(),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")});
\ No newline at end of file
diff --git a/dist/webuploader.noimage.js b/dist/webuploader.noimage.js
index b4a68d449..fe92cf43c 100644
--- a/dist/webuploader.noimage.js
+++ b/dist/webuploader.noimage.js
@@ -1,5160 +1,5160 @@
-/*! WebUploader 0.1.8-alpha */
+/*! WebUploader 0.1.8-alpha */
-/**
- * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
- *
- * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
- */
-(function( root, factory ) {
- var modules = {},
-
- // 内部require, 简单不完全实现。
- // https://github.com/amdjs/amdjs-api/wiki/require
- _require = function( deps, callback ) {
- var args, len, i;
-
- // 如果deps不是数组,则直接返回指定module
- if ( typeof deps === 'string' ) {
- return getModule( deps );
- } else {
- args = [];
- for( len = deps.length, i = 0; i < len; i++ ) {
- args.push( getModule( deps[ i ] ) );
- }
-
- return callback.apply( null, args );
- }
- },
-
- // 内部define,暂时不支持不指定id.
- _define = function( id, deps, factory ) {
- if ( arguments.length === 2 ) {
- factory = deps;
- deps = null;
- }
-
- _require( deps || [], function() {
- setModule( id, factory, arguments );
- });
- },
-
- // 设置module, 兼容CommonJs写法。
- setModule = function( id, factory, args ) {
- var module = {
- exports: factory
- },
- returned;
-
- if ( typeof factory === 'function' ) {
- args.length || (args = [ _require, module.exports, module ]);
- returned = factory.apply( null, args );
- returned !== undefined && (module.exports = returned);
- }
-
- modules[ id ] = module.exports;
- },
-
- // 根据id获取module
- getModule = function( id ) {
- var module = modules[ id ] || root[ id ];
-
- if ( !module ) {
- throw new Error( '`' + id + '` is undefined' );
- }
-
- return module;
- },
-
- // 将所有modules,将路径ids装换成对象。
- exportsTo = function( obj ) {
- var key, host, parts, part, last, ucFirst;
-
- // make the first character upper case.
- ucFirst = function( str ) {
- return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
- };
-
- for ( key in modules ) {
- host = obj;
-
- if ( !modules.hasOwnProperty( key ) ) {
- continue;
- }
-
- parts = key.split('/');
- last = ucFirst( parts.pop() );
-
- while( (part = ucFirst( parts.shift() )) ) {
- host[ part ] = host[ part ] || {};
- host = host[ part ];
- }
-
- host[ last ] = modules[ key ];
- }
-
- return obj;
- },
-
- makeExport = function( dollar ) {
- root.__dollar = dollar;
-
- // exports every module.
- return exportsTo( factory( root, _define, _require ) );
- },
-
- origin;
-
- if ( typeof module === 'object' && typeof module.exports === 'object' ) {
-
- // For CommonJS and CommonJS-like environments where a proper window is present,
- module.exports = makeExport();
- } else if ( typeof define === 'function' && define.amd ) {
-
- // Allow using this built library as an AMD module
- // in another project. That other project will only
- // see this AMD call, not the internal modules in
- // the closure below.
- define([ 'jquery' ], makeExport );
- } else {
-
- // Browser globals case. Just assign the
- // result to a property on the global.
- origin = root.WebUploader;
- root.WebUploader = makeExport();
- root.WebUploader.noConflict = function() {
- root.WebUploader = origin;
- };
- }
-})( window, function( window, define, require ) {
-
+/**
+ * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
+ *
+ * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
+ */
+(function( root, factory ) {
+ var modules = {},
+
+ // 内部require, 简单不完全实现。
+ // https://github.com/amdjs/amdjs-api/wiki/require
+ _require = function( deps, callback ) {
+ var args, len, i;
+
+ // 如果deps不是数组,则直接返回指定module
+ if ( typeof deps === 'string' ) {
+ return getModule( deps );
+ } else {
+ args = [];
+ for( len = deps.length, i = 0; i < len; i++ ) {
+ args.push( getModule( deps[ i ] ) );
+ }
+
+ return callback.apply( null, args );
+ }
+ },
+
+ // 内部define,暂时不支持不指定id.
+ _define = function( id, deps, factory ) {
+ if ( arguments.length === 2 ) {
+ factory = deps;
+ deps = null;
+ }
+
+ _require( deps || [], function() {
+ setModule( id, factory, arguments );
+ });
+ },
+
+ // 设置module, 兼容CommonJs写法。
+ setModule = function( id, factory, args ) {
+ var module = {
+ exports: factory
+ },
+ returned;
+
+ if ( typeof factory === 'function' ) {
+ args.length || (args = [ _require, module.exports, module ]);
+ returned = factory.apply( null, args );
+ returned !== undefined && (module.exports = returned);
+ }
+
+ modules[ id ] = module.exports;
+ },
+
+ // 根据id获取module
+ getModule = function( id ) {
+ var module = modules[ id ] || root[ id ];
+
+ if ( !module ) {
+ throw new Error( '`' + id + '` is undefined' );
+ }
+
+ return module;
+ },
+
+ // 将所有modules,将路径ids装换成对象。
+ exportsTo = function( obj ) {
+ var key, host, parts, part, last, ucFirst;
+
+ // make the first character upper case.
+ ucFirst = function( str ) {
+ return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
+ };
+
+ for ( key in modules ) {
+ host = obj;
+
+ if ( !modules.hasOwnProperty( key ) ) {
+ continue;
+ }
+
+ parts = key.split('/');
+ last = ucFirst( parts.pop() );
+
+ while( (part = ucFirst( parts.shift() )) ) {
+ host[ part ] = host[ part ] || {};
+ host = host[ part ];
+ }
+
+ host[ last ] = modules[ key ];
+ }
+
+ return obj;
+ },
+
+ makeExport = function( dollar ) {
+ root.__dollar = dollar;
+
+ // exports every module.
+ return exportsTo( factory( root, _define, _require ) );
+ },
+
+ origin;
+
+ if ( typeof module === 'object' && typeof module.exports === 'object' ) {
+
+ // For CommonJS and CommonJS-like environments where a proper window is present,
+ module.exports = makeExport();
+ } else if ( typeof define === 'function' && define.amd ) {
+
+ // Allow using this built library as an AMD module
+ // in another project. That other project will only
+ // see this AMD call, not the internal modules in
+ // the closure below.
+ define([ 'jquery' ], makeExport );
+ } else {
+
+ // Browser globals case. Just assign the
+ // result to a property on the global.
+ origin = root.WebUploader;
+ root.WebUploader = makeExport();
+ root.WebUploader.noConflict = function() {
+ root.WebUploader = origin;
+ };
+ }
+})( window, function( window, define, require ) {
+
- /**
- * @fileOverview jQuery or Zepto
- * @require "jquery"
- * @require "zepto"
- */
- define('dollar-third',[],function() {
- var req = window.require;
- var $ = window.__dollar ||
- window.jQuery ||
- window.Zepto ||
- req('jquery') ||
- req('zepto');
-
- if ( !$ ) {
- throw new Error('jQuery or Zepto not found!');
- }
+ /**
+ * @fileOverview jQuery or Zepto
+ * @require "jquery"
+ * @require "zepto"
+ */
+ define('dollar-third',[],function() {
+ var req = window.require;
+ var $ = window.__dollar ||
+ window.jQuery ||
+ window.Zepto ||
+ req('jquery') ||
+ req('zepto');
+
+ if ( !$ ) {
+ throw new Error('jQuery or Zepto not found!');
+ }
+
+ return $;
+ });
- return $;
+ /**
+ * @fileOverview Dom 操作相关
+ */
+ define('dollar',[
+ 'dollar-third'
+ ], function( _ ) {
+ return _;
});
-
- /**
- * @fileOverview Dom 操作相关
- */
- define('dollar',[
- 'dollar-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 使用jQuery的Promise
+ */
+ define('promise-third',[
+ 'dollar'
+ ], function( $ ) {
+ return {
+ Deferred: $.Deferred,
+ when: $.when,
+
+ isPromise: function( anything ) {
+ return anything && typeof anything.then === 'function';
+ }
+ };
});
- /**
- * @fileOverview 使用jQuery的Promise
- */
- define('promise-third',[
- 'dollar'
- ], function( $ ) {
- return {
- Deferred: $.Deferred,
- when: $.when,
-
- isPromise: function( anything ) {
- return anything && typeof anything.then === 'function';
- }
- };
+ /**
+ * @fileOverview Promise/A+
+ */
+ define('promise',[
+ 'promise-third'
+ ], function( _ ) {
+ return _;
});
- /**
- * @fileOverview Promise/A+
- */
- define('promise',[
- 'promise-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 基础类方法。
+ */
+
+ /**
+ * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
+ *
+ * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
+ * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
+ *
+ * * module `base`:WebUploader.Base
+ * * module `file`: WebUploader.File
+ * * module `lib/dnd`: WebUploader.Lib.Dnd
+ * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
+ *
+ *
+ * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
+ * @module WebUploader
+ * @title WebUploader API文档
+ */
+ define('base',[
+ 'dollar',
+ 'promise'
+ ], function( $, promise ) {
+
+ var noop = function() {},
+ call = Function.call;
+
+ // http://jsperf.com/uncurrythis
+ // 反科里化
+ function uncurryThis( fn ) {
+ return function() {
+ return call.apply( fn, arguments );
+ };
+ }
+
+ function bindFn( fn, context ) {
+ return function() {
+ return fn.apply( context, arguments );
+ };
+ }
+
+ function createObject( proto ) {
+ var f;
+
+ if ( Object.create ) {
+ return Object.create( proto );
+ } else {
+ f = function() {};
+ f.prototype = proto;
+ return new f();
+ }
+ }
+
+
+ /**
+ * 基础类,提供一些简单常用的方法。
+ * @class Base
+ */
+ return {
+
+ /**
+ * @property {String} version 当前版本号。
+ */
+ version: '0.1.8-alpha',
+
+ /**
+ * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
+ */
+ $: $,
+
+ Deferred: promise.Deferred,
+
+ isPromise: promise.isPromise,
+
+ when: promise.when,
+
+ /**
+ * @description 简单的浏览器检查结果。
+ *
+ * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
+ * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
+ * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
+ * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
+ * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
+ * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
+ *
+ * @property {Object} [browser]
+ */
+ browser: (function( ua ) {
+ var ret = {},
+ webkit = ua.match( /WebKit\/([\d.]+)/ ),
+ chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
+ ua.match( /CriOS\/([\d.]+)/ ),
+
+ ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
+ ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
+ firefox = ua.match( /Firefox\/([\d.]+)/ ),
+ safari = ua.match( /Safari\/([\d.]+)/ ),
+ opera = ua.match( /OPR\/([\d.]+)/ );
+
+ webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
+ chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
+ ie && (ret.ie = parseFloat( ie[ 1 ] ));
+ firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
+ safari && (ret.safari = parseFloat( safari[ 1 ] ));
+ opera && (ret.opera = parseFloat( opera[ 1 ] ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * @description 操作系统检查结果。
+ *
+ * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
+ * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
+ * @property {Object} [os]
+ */
+ os: (function( ua ) {
+ var ret = {},
+
+ // osx = !!ua.match( /\(Macintosh\; Intel / ),
+ android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
+ ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
+
+ // osx && (ret.osx = true);
+ android && (ret.android = parseFloat( android[ 1 ] ));
+ ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * 实现类与类之间的继承。
+ * @method inherits
+ * @grammar Base.inherits( super ) => child
+ * @grammar Base.inherits( super, protos ) => child
+ * @grammar Base.inherits( super, protos, statics ) => child
+ * @param {Class} super 父类
+ * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
+ * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
+ * @param {Object} [statics] 静态属性或方法。
+ * @return {Class} 返回子类。
+ * @example
+ * function Person() {
+ * console.log( 'Super' );
+ * }
+ * Person.prototype.hello = function() {
+ * console.log( 'hello' );
+ * };
+ *
+ * var Manager = Base.inherits( Person, {
+ * world: function() {
+ * console.log( 'World' );
+ * }
+ * });
+ *
+ * // 因为没有指定构造器,父类的构造器将会执行。
+ * var instance = new Manager(); // => Super
+ *
+ * // 继承子父类的方法
+ * instance.hello(); // => hello
+ * instance.world(); // => World
+ *
+ * // 子类的__super__属性指向父类
+ * console.log( Manager.__super__ === Person ); // => true
+ */
+ inherits: function( Super, protos, staticProtos ) {
+ var child;
+
+ if ( typeof protos === 'function' ) {
+ child = protos;
+ protos = null;
+ } else if ( protos && protos.hasOwnProperty('constructor') ) {
+ child = protos.constructor;
+ } else {
+ child = function() {
+ return Super.apply( this, arguments );
+ };
+ }
+
+ // 复制静态方法
+ $.extend( true, child, Super, staticProtos || {} );
+
+ /* jshint camelcase: false */
+
+ // 让子类的__super__属性指向父类。
+ child.__super__ = Super.prototype;
+
+ // 构建原型,添加原型方法或属性。
+ // 暂时用Object.create实现。
+ child.prototype = createObject( Super.prototype );
+ protos && $.extend( true, child.prototype, protos );
+
+ return child;
+ },
+
+ /**
+ * 一个不做任何事情的方法。可以用来赋值给默认的callback.
+ * @method noop
+ */
+ noop: noop,
+
+ /**
+ * 返回一个新的方法,此方法将已指定的`context`来执行。
+ * @grammar Base.bindFn( fn, context ) => Function
+ * @method bindFn
+ * @example
+ * var doSomething = function() {
+ * console.log( this.name );
+ * },
+ * obj = {
+ * name: 'Object Name'
+ * },
+ * aliasFn = Base.bind( doSomething, obj );
+ *
+ * aliasFn(); // => Object Name
+ *
+ */
+ bindFn: bindFn,
+
+ /**
+ * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
+ * @grammar Base.log( args... ) => undefined
+ * @method log
+ */
+ log: (function() {
+ if ( window.console ) {
+ return bindFn( console.log, console );
+ }
+ return noop;
+ })(),
+
+ nextTick: (function() {
+
+ return function( cb ) {
+ setTimeout( cb, 1 );
+ };
+
+ // @bug 当浏览器不在当前窗口时就停了。
+ // var next = window.requestAnimationFrame ||
+ // window.webkitRequestAnimationFrame ||
+ // window.mozRequestAnimationFrame ||
+ // function( cb ) {
+ // window.setTimeout( cb, 1000 / 60 );
+ // };
+
+ // // fix: Uncaught TypeError: Illegal invocation
+ // return bindFn( next, window );
+ })(),
+
+ /**
+ * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
+ * 将用来将非数组对象转化成数组对象。
+ * @grammar Base.slice( target, start[, end] ) => Array
+ * @method slice
+ * @example
+ * function doSomthing() {
+ * var args = Base.slice( arguments, 1 );
+ * console.log( args );
+ * }
+ *
+ * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
+ */
+ slice: uncurryThis( [].slice ),
+
+ /**
+ * 生成唯一的ID
+ * @method guid
+ * @grammar Base.guid() => String
+ * @grammar Base.guid( prefx ) => String
+ */
+ guid: (function() {
+ var counter = 0;
+
+ return function( prefix ) {
+ var guid = (+new Date()).toString( 32 ),
+ i = 0;
+
+ for ( ; i < 5; i++ ) {
+ guid += Math.floor( Math.random() * 65535 ).toString( 32 );
+ }
+
+ return (prefix || 'wu_') + guid + (counter++).toString( 32 );
+ };
+ })(),
+
+ /**
+ * 格式化文件大小, 输出成带单位的字符串
+ * @method formatSize
+ * @grammar Base.formatSize( size ) => String
+ * @grammar Base.formatSize( size, pointLength ) => String
+ * @grammar Base.formatSize( size, pointLength, units ) => String
+ * @param {Number} size 文件大小
+ * @param {Number} [pointLength=2] 精确到的小数点数。
+ * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
+ * @example
+ * console.log( Base.formatSize( 100 ) ); // => 100B
+ * console.log( Base.formatSize( 1024 ) ); // => 1.00K
+ * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
+ * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
+ * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
+ * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
+ */
+ formatSize: function( size, pointLength, units ) {
+ var unit;
+
+ units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
+
+ while ( (unit = units.shift()) && size > 1024 ) {
+ size = size / 1024;
+ }
+
+ return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
+ unit;
+ }
+ };
});
- /**
- * @fileOverview 基础类方法。
- */
-
- /**
- * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
- *
- * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
- * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
- *
- * * module `base`:WebUploader.Base
- * * module `file`: WebUploader.File
- * * module `lib/dnd`: WebUploader.Lib.Dnd
- * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
- *
- *
- * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
- * @module WebUploader
- * @title WebUploader API文档
- */
- define('base',[
- 'dollar',
- 'promise'
- ], function( $, promise ) {
-
- var noop = function() {},
- call = Function.call;
-
- // http://jsperf.com/uncurrythis
- // 反科里化
- function uncurryThis( fn ) {
- return function() {
- return call.apply( fn, arguments );
- };
- }
-
- function bindFn( fn, context ) {
- return function() {
- return fn.apply( context, arguments );
- };
- }
-
- function createObject( proto ) {
- var f;
-
- if ( Object.create ) {
- return Object.create( proto );
- } else {
- f = function() {};
- f.prototype = proto;
- return new f();
- }
- }
-
-
- /**
- * 基础类,提供一些简单常用的方法。
- * @class Base
- */
- return {
-
- /**
- * @property {String} version 当前版本号。
- */
- version: '0.1.8-alpha',
-
- /**
- * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
- */
- $: $,
-
- Deferred: promise.Deferred,
-
- isPromise: promise.isPromise,
-
- when: promise.when,
-
- /**
- * @description 简单的浏览器检查结果。
- *
- * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
- * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
- * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
- * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
- * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
- * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
- *
- * @property {Object} [browser]
- */
- browser: (function( ua ) {
- var ret = {},
- webkit = ua.match( /WebKit\/([\d.]+)/ ),
- chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
- ua.match( /CriOS\/([\d.]+)/ ),
-
- ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
- ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
- firefox = ua.match( /Firefox\/([\d.]+)/ ),
- safari = ua.match( /Safari\/([\d.]+)/ ),
- opera = ua.match( /OPR\/([\d.]+)/ );
-
- webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
- chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
- ie && (ret.ie = parseFloat( ie[ 1 ] ));
- firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
- safari && (ret.safari = parseFloat( safari[ 1 ] ));
- opera && (ret.opera = parseFloat( opera[ 1 ] ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * @description 操作系统检查结果。
- *
- * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
- * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
- * @property {Object} [os]
- */
- os: (function( ua ) {
- var ret = {},
-
- // osx = !!ua.match( /\(Macintosh\; Intel / ),
- android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
- ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
-
- // osx && (ret.osx = true);
- android && (ret.android = parseFloat( android[ 1 ] ));
- ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * 实现类与类之间的继承。
- * @method inherits
- * @grammar Base.inherits( super ) => child
- * @grammar Base.inherits( super, protos ) => child
- * @grammar Base.inherits( super, protos, statics ) => child
- * @param {Class} super 父类
- * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
- * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
- * @param {Object} [statics] 静态属性或方法。
- * @return {Class} 返回子类。
- * @example
- * function Person() {
- * console.log( 'Super' );
- * }
- * Person.prototype.hello = function() {
- * console.log( 'hello' );
- * };
- *
- * var Manager = Base.inherits( Person, {
- * world: function() {
- * console.log( 'World' );
- * }
- * });
- *
- * // 因为没有指定构造器,父类的构造器将会执行。
- * var instance = new Manager(); // => Super
- *
- * // 继承子父类的方法
- * instance.hello(); // => hello
- * instance.world(); // => World
- *
- * // 子类的__super__属性指向父类
- * console.log( Manager.__super__ === Person ); // => true
- */
- inherits: function( Super, protos, staticProtos ) {
- var child;
-
- if ( typeof protos === 'function' ) {
- child = protos;
- protos = null;
- } else if ( protos && protos.hasOwnProperty('constructor') ) {
- child = protos.constructor;
- } else {
- child = function() {
- return Super.apply( this, arguments );
- };
- }
-
- // 复制静态方法
- $.extend( true, child, Super, staticProtos || {} );
-
- /* jshint camelcase: false */
-
- // 让子类的__super__属性指向父类。
- child.__super__ = Super.prototype;
-
- // 构建原型,添加原型方法或属性。
- // 暂时用Object.create实现。
- child.prototype = createObject( Super.prototype );
- protos && $.extend( true, child.prototype, protos );
-
- return child;
- },
-
- /**
- * 一个不做任何事情的方法。可以用来赋值给默认的callback.
- * @method noop
- */
- noop: noop,
-
- /**
- * 返回一个新的方法,此方法将已指定的`context`来执行。
- * @grammar Base.bindFn( fn, context ) => Function
- * @method bindFn
- * @example
- * var doSomething = function() {
- * console.log( this.name );
- * },
- * obj = {
- * name: 'Object Name'
- * },
- * aliasFn = Base.bind( doSomething, obj );
- *
- * aliasFn(); // => Object Name
- *
- */
- bindFn: bindFn,
-
- /**
- * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
- * @grammar Base.log( args... ) => undefined
- * @method log
- */
- log: (function() {
- if ( window.console ) {
- return bindFn( console.log, console );
- }
- return noop;
- })(),
-
- nextTick: (function() {
-
- return function( cb ) {
- setTimeout( cb, 1 );
- };
-
- // @bug 当浏览器不在当前窗口时就停了。
- // var next = window.requestAnimationFrame ||
- // window.webkitRequestAnimationFrame ||
- // window.mozRequestAnimationFrame ||
- // function( cb ) {
- // window.setTimeout( cb, 1000 / 60 );
- // };
-
- // // fix: Uncaught TypeError: Illegal invocation
- // return bindFn( next, window );
- })(),
-
- /**
- * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
- * 将用来将非数组对象转化成数组对象。
- * @grammar Base.slice( target, start[, end] ) => Array
- * @method slice
- * @example
- * function doSomthing() {
- * var args = Base.slice( arguments, 1 );
- * console.log( args );
- * }
- *
- * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
- */
- slice: uncurryThis( [].slice ),
-
- /**
- * 生成唯一的ID
- * @method guid
- * @grammar Base.guid() => String
- * @grammar Base.guid( prefx ) => String
- */
- guid: (function() {
- var counter = 0;
-
- return function( prefix ) {
- var guid = (+new Date()).toString( 32 ),
- i = 0;
-
- for ( ; i < 5; i++ ) {
- guid += Math.floor( Math.random() * 65535 ).toString( 32 );
- }
-
- return (prefix || 'wu_') + guid + (counter++).toString( 32 );
- };
- })(),
-
- /**
- * 格式化文件大小, 输出成带单位的字符串
- * @method formatSize
- * @grammar Base.formatSize( size ) => String
- * @grammar Base.formatSize( size, pointLength ) => String
- * @grammar Base.formatSize( size, pointLength, units ) => String
- * @param {Number} size 文件大小
- * @param {Number} [pointLength=2] 精确到的小数点数。
- * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
- * @example
- * console.log( Base.formatSize( 100 ) ); // => 100B
- * console.log( Base.formatSize( 1024 ) ); // => 1.00K
- * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
- * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
- * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
- * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
- */
- formatSize: function( size, pointLength, units ) {
- var unit;
-
- units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
-
- while ( (unit = units.shift()) && size > 1024 ) {
- size = size / 1024;
- }
-
- return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
- unit;
- }
- };
+ /**
+ * 事件处理类,可以独立使用,也可以扩展给对象使用。
+ * @fileOverview Mediator
+ */
+ define('mediator',[
+ 'base'
+ ], function( Base ) {
+ var $ = Base.$,
+ slice = [].slice,
+ separator = /\s+/,
+ protos;
+
+ // 根据条件过滤出事件handlers.
+ function findHandlers( arr, name, callback, context ) {
+ return $.grep( arr, function( handler ) {
+ return handler &&
+ (!name || handler.e === name) &&
+ (!callback || handler.cb === callback ||
+ handler.cb._cb === callback) &&
+ (!context || handler.ctx === context);
+ });
+ }
+
+ function eachEvent( events, callback, iterator ) {
+ // 不支持对象,只支持多个event用空格隔开
+ $.each( (events || '').split( separator ), function( _, key ) {
+ iterator( key, callback );
+ });
+ }
+
+ function triggerHanders( events, args ) {
+ var stoped = false,
+ i = -1,
+ len = events.length,
+ handler;
+
+ while ( ++i < len ) {
+ handler = events[ i ];
+
+ if ( handler.cb.apply( handler.ctx2, args ) === false ) {
+ stoped = true;
+ break;
+ }
+ }
+
+ return !stoped;
+ }
+
+ protos = {
+
+ /**
+ * 绑定事件。
+ *
+ * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
+ * ```javascript
+ * var obj = {};
+ *
+ * // 使得obj有事件行为
+ * Mediator.installTo( obj );
+ *
+ * obj.on( 'testa', function( arg1, arg2 ) {
+ * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
+ * });
+ *
+ * obj.trigger( 'testa', 'arg1', 'arg2' );
+ * ```
+ *
+ * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
+ * 切会影响到`trigger`方法的返回值,为`false`。
+ *
+ * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
+ * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
+ * ```javascript
+ * obj.on( 'all', function( type, arg1, arg2 ) {
+ * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
+ * });
+ * ```
+ *
+ * @method on
+ * @grammar on( name, callback[, context] ) => self
+ * @param {String} name 事件名,支持多个事件用空格隔开
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ * @class Mediator
+ */
+ on: function( name, callback, context ) {
+ var me = this,
+ set;
+
+ if ( !callback ) {
+ return this;
+ }
+
+ set = this._events || (this._events = []);
+
+ eachEvent( name, callback, function( name, callback ) {
+ var handler = { e: name };
+
+ handler.cb = callback;
+ handler.ctx = context;
+ handler.ctx2 = context || me;
+ handler.id = set.length;
+
+ set.push( handler );
+ });
+
+ return this;
+ },
+
+ /**
+ * 绑定事件,且当handler执行完后,自动解除绑定。
+ * @method once
+ * @grammar once( name, callback[, context] ) => self
+ * @param {String} name 事件名
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ once: function( name, callback, context ) {
+ var me = this;
+
+ if ( !callback ) {
+ return me;
+ }
+
+ eachEvent( name, callback, function( name, callback ) {
+ var once = function() {
+ me.off( name, once );
+ return callback.apply( context || me, arguments );
+ };
+
+ once._cb = callback;
+ me.on( name, once, context );
+ });
+
+ return me;
+ },
+
+ /**
+ * 解除事件绑定
+ * @method off
+ * @grammar off( [name[, callback[, context] ] ] ) => self
+ * @param {String} [name] 事件名
+ * @param {Function} [callback] 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ off: function( name, cb, ctx ) {
+ var events = this._events;
+
+ if ( !events ) {
+ return this;
+ }
+
+ if ( !name && !cb && !ctx ) {
+ this._events = [];
+ return this;
+ }
+
+ eachEvent( name, cb, function( name, cb ) {
+ $.each( findHandlers( events, name, cb, ctx ), function() {
+ delete events[ this.id ];
+ });
+ });
+
+ return this;
+ },
+
+ /**
+ * 触发事件
+ * @method trigger
+ * @grammar trigger( name[, args...] ) => self
+ * @param {String} type 事件名
+ * @param {*} [...] 任意参数
+ * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
+ */
+ trigger: function( type ) {
+ var args, events, allEvents;
+
+ if ( !this._events || !type ) {
+ return this;
+ }
+
+ args = slice.call( arguments, 1 );
+ events = findHandlers( this._events, type );
+ allEvents = findHandlers( this._events, 'all' );
+
+ return triggerHanders( events, args ) &&
+ triggerHanders( allEvents, arguments );
+ }
+ };
+
+ /**
+ * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
+ * 主要目的是负责模块与模块之间的合作,降低耦合度。
+ *
+ * @class Mediator
+ */
+ return $.extend({
+
+ /**
+ * 可以通过这个接口,使任何对象具备事件功能。
+ * @method installTo
+ * @param {Object} obj 需要具备事件行为的对象。
+ * @return {Object} 返回obj.
+ */
+ installTo: function( obj ) {
+ return $.extend( obj, protos );
+ }
+
+ }, protos );
});
- /**
- * 事件处理类,可以独立使用,也可以扩展给对象使用。
- * @fileOverview Mediator
- */
- define('mediator',[
- 'base'
- ], function( Base ) {
- var $ = Base.$,
- slice = [].slice,
- separator = /\s+/,
- protos;
-
- // 根据条件过滤出事件handlers.
- function findHandlers( arr, name, callback, context ) {
- return $.grep( arr, function( handler ) {
- return handler &&
- (!name || handler.e === name) &&
- (!callback || handler.cb === callback ||
- handler.cb._cb === callback) &&
- (!context || handler.ctx === context);
- });
- }
-
- function eachEvent( events, callback, iterator ) {
- // 不支持对象,只支持多个event用空格隔开
- $.each( (events || '').split( separator ), function( _, key ) {
- iterator( key, callback );
- });
- }
-
- function triggerHanders( events, args ) {
- var stoped = false,
- i = -1,
- len = events.length,
- handler;
-
- while ( ++i < len ) {
- handler = events[ i ];
-
- if ( handler.cb.apply( handler.ctx2, args ) === false ) {
- stoped = true;
- break;
- }
- }
-
- return !stoped;
- }
-
- protos = {
-
- /**
- * 绑定事件。
- *
- * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
- * ```javascript
- * var obj = {};
- *
- * // 使得obj有事件行为
- * Mediator.installTo( obj );
- *
- * obj.on( 'testa', function( arg1, arg2 ) {
- * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
- * });
- *
- * obj.trigger( 'testa', 'arg1', 'arg2' );
- * ```
- *
- * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
- * 切会影响到`trigger`方法的返回值,为`false`。
- *
- * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
- * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
- * ```javascript
- * obj.on( 'all', function( type, arg1, arg2 ) {
- * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
- * });
- * ```
- *
- * @method on
- * @grammar on( name, callback[, context] ) => self
- * @param {String} name 事件名,支持多个事件用空格隔开
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- * @class Mediator
- */
- on: function( name, callback, context ) {
- var me = this,
- set;
+ /**
+ * @fileOverview Uploader上传类
+ */
+ define('uploader',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$;
+
+ /**
+ * 上传入口类。
+ * @class Uploader
+ * @constructor
+ * @grammar new Uploader( opts ) => Uploader
+ * @example
+ * var uploader = WebUploader.Uploader({
+ * swf: 'path_of_swf/Uploader.swf',
+ *
+ * // 开起分片上传。
+ * chunked: true
+ * });
+ */
+ function Uploader( opts ) {
+ this.options = $.extend( true, {}, Uploader.options, opts );
+ this._init( this.options );
+ }
+
+ // default Options
+ // widgets中有相应扩展
+ Uploader.options = {};
+ Mediator.installTo( Uploader.prototype );
+
+ // 批量添加纯命令式方法。
+ $.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( fn, command ) {
+ Uploader.prototype[ fn ] = function() {
+ return this.request( command, arguments );
+ };
+ });
+
+ $.extend( Uploader.prototype, {
+ state: 'pending',
+
+ _init: function( opts ) {
+ var me = this;
+
+ me.request( 'init', opts, function() {
+ me.state = 'ready';
+ me.trigger('ready');
+ });
+ },
+
+ /**
+ * 获取或者设置Uploader配置项。
+ * @method option
+ * @grammar option( key ) => *
+ * @grammar option( key, val ) => self
+ * @example
+ *
+ * // 初始状态图片上传前不会压缩
+ * var uploader = new WebUploader.Uploader({
+ * compress: null;
+ * });
+ *
+ * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
+ * uploader.option( 'compress', {
+ * width: 1600,
+ * height: 1600
+ * });
+ */
+ option: function( key, val ) {
+ var opts = this.options;
+
+ // setter
+ if ( arguments.length > 1 ) {
+
+ if ( $.isPlainObject( val ) &&
+ $.isPlainObject( opts[ key ] ) ) {
+ $.extend( opts[ key ], val );
+ } else {
+ opts[ key ] = val;
+ }
+
+ } else { // getter
+ return key ? opts[ key ] : opts;
+ }
+ },
+
+ /**
+ * 获取文件统计信息。返回一个包含一下信息的对象。
+ * * `successNum` 上传成功的文件数
+ * * `progressNum` 上传中的文件数
+ * * `cancelNum` 被删除的文件数
+ * * `invalidNum` 无效的文件数
+ * * `uploadFailNum` 上传失败的文件数
+ * * `queueNum` 还在队列中的文件数
+ * * `interruptNum` 被暂停的文件数
+ * @method getStats
+ * @grammar getStats() => Object
+ */
+ getStats: function() {
+ // return this._mgr.getStats.apply( this._mgr, arguments );
+ var stats = this.request('get-stats');
+
+ return stats ? {
+ successNum: stats.numOfSuccess,
+ progressNum: stats.numOfProgress,
+
+ // who care?
+ // queueFailNum: 0,
+ cancelNum: stats.numOfCancel,
+ invalidNum: stats.numOfInvalid,
+ uploadFailNum: stats.numOfUploadFailed,
+ queueNum: stats.numOfQueue,
+ interruptNum: stats.numOfInterrupt
+ } : {};
+ },
+
+ // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
+ trigger: function( type/*, args...*/ ) {
+ var args = [].slice.call( arguments, 1 ),
+ opts = this.options,
+ name = 'on' + type.substring( 0, 1 ).toUpperCase() +
+ type.substring( 1 );
+
+ if (
+ // 调用通过on方法注册的handler.
+ Mediator.trigger.apply( this, arguments ) === false ||
+
+ // 调用opts.onEvent
+ $.isFunction( opts[ name ] ) &&
+ opts[ name ].apply( this, args ) === false ||
+
+ // 调用this.onEvent
+ $.isFunction( this[ name ] ) &&
+ this[ name ].apply( this, args ) === false ||
+
+ // 广播所有uploader的事件。
+ Mediator.trigger.apply( Mediator,
+ [ this, type ].concat( args ) ) === false ) {
+
+ return false;
+ }
+
+ return true;
+ },
+
+ /**
+ * 销毁 webuploader 实例
+ * @method destroy
+ * @grammar destroy() => undefined
+ */
+ destroy: function() {
+ this.request( 'destroy', arguments );
+ this.off();
+ },
+
+ // widgets/widget.js将补充此方法的详细文档。
+ request: Base.noop
+ });
+
+ /**
+ * 创建Uploader实例,等同于new Uploader( opts );
+ * @method create
+ * @class Base
+ * @static
+ * @grammar Base.create( opts ) => Uploader
+ */
+ Base.create = Uploader.create = function( opts ) {
+ return new Uploader( opts );
+ };
+
+ // 暴露Uploader,可以通过它来扩展业务逻辑。
+ Base.Uploader = Uploader;
+
+ return Uploader;
+ });
- if ( !callback ) {
- return this;
- }
-
- set = this._events || (this._events = []);
-
- eachEvent( name, callback, function( name, callback ) {
- var handler = { e: name };
-
- handler.cb = callback;
- handler.ctx = context;
- handler.ctx2 = context || me;
- handler.id = set.length;
-
- set.push( handler );
- });
-
- return this;
- },
-
- /**
- * 绑定事件,且当handler执行完后,自动解除绑定。
- * @method once
- * @grammar once( name, callback[, context] ) => self
- * @param {String} name 事件名
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- once: function( name, callback, context ) {
- var me = this;
-
- if ( !callback ) {
- return me;
- }
-
- eachEvent( name, callback, function( name, callback ) {
- var once = function() {
- me.off( name, once );
- return callback.apply( context || me, arguments );
- };
-
- once._cb = callback;
- me.on( name, once, context );
- });
-
- return me;
- },
-
- /**
- * 解除事件绑定
- * @method off
- * @grammar off( [name[, callback[, context] ] ] ) => self
- * @param {String} [name] 事件名
- * @param {Function} [callback] 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- off: function( name, cb, ctx ) {
- var events = this._events;
-
- if ( !events ) {
- return this;
- }
-
- if ( !name && !cb && !ctx ) {
- this._events = [];
- return this;
- }
-
- eachEvent( name, cb, function( name, cb ) {
- $.each( findHandlers( events, name, cb, ctx ), function() {
- delete events[ this.id ];
- });
- });
-
- return this;
- },
-
- /**
- * 触发事件
- * @method trigger
- * @grammar trigger( name[, args...] ) => self
- * @param {String} type 事件名
- * @param {*} [...] 任意参数
- * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
- */
- trigger: function( type ) {
- var args, events, allEvents;
-
- if ( !this._events || !type ) {
- return this;
- }
-
- args = slice.call( arguments, 1 );
- events = findHandlers( this._events, type );
- allEvents = findHandlers( this._events, 'all' );
-
- return triggerHanders( events, args ) &&
- triggerHanders( allEvents, arguments );
- }
- };
-
- /**
- * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
- * 主要目的是负责模块与模块之间的合作,降低耦合度。
- *
- * @class Mediator
- */
- return $.extend({
-
- /**
- * 可以通过这个接口,使任何对象具备事件功能。
- * @method installTo
- * @param {Object} obj 需要具备事件行为的对象。
- * @return {Object} 返回obj.
- */
- installTo: function( obj ) {
- return $.extend( obj, protos );
- }
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/runtime',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ factories = {},
+
+ // 获取对象的第一个key
+ getFirstKey = function( obj ) {
+ for ( var key in obj ) {
+ if ( obj.hasOwnProperty( key ) ) {
+ return key;
+ }
+ }
+ return null;
+ };
+
+ // 接口类。
+ function Runtime( options ) {
+ this.options = $.extend({
+ container: document.body
+ }, options );
+ this.uid = Base.guid('rt_');
+ }
+
+ $.extend( Runtime.prototype, {
+
+ getContainer: function() {
+ var opts = this.options,
+ parent, container;
+
+ if ( this._container ) {
+ return this._container;
+ }
+
+ parent = $( opts.container || document.body );
+ container = $( document.createElement('div') );
+
+ container.attr( 'id', 'rt_' + this.uid );
+ container.css({
+ position: 'absolute',
+ top: '0px',
+ left: '0px',
+ width: '1px',
+ height: '1px',
+ overflow: 'hidden'
+ });
+
+ parent.append( container );
+ parent.addClass('webuploader-container');
+ this._container = container;
+ this._parent = parent;
+ return container;
+ },
+
+ init: Base.noop,
+ exec: Base.noop,
+
+ destroy: function() {
+ this._container && this._container.remove();
+ this._parent && this._parent.removeClass('webuploader-container');
+ this.off();
+ }
+ });
+
+ Runtime.orders = 'html5,flash';
+
+
+ /**
+ * 添加Runtime实现。
+ * @param {String} type 类型
+ * @param {Runtime} factory 具体Runtime实现。
+ */
+ Runtime.addRuntime = function( type, factory ) {
+ factories[ type ] = factory;
+ };
+
+ Runtime.hasRuntime = function( type ) {
+ return !!(type ? factories[ type ] : getFirstKey( factories ));
+ };
+
+ Runtime.create = function( opts, orders ) {
+ var type, runtime;
+
+ orders = orders || Runtime.orders;
+ $.each( orders.split( /\s*,\s*/g ), function() {
+ if ( factories[ this ] ) {
+ type = this;
+ return false;
+ }
+ });
+
+ type = type || getFirstKey( factories );
+
+ if ( !type ) {
+ throw new Error('Runtime Error');
+ }
+
+ runtime = new factories[ type ]( opts );
+ return runtime;
+ };
+
+ Mediator.installTo( Runtime.prototype );
+ return Runtime;
+ });
- }, protos );
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/client',[
+ 'base',
+ 'mediator',
+ 'runtime/runtime'
+ ], function( Base, Mediator, Runtime ) {
+
+ var cache;
+
+ cache = (function() {
+ var obj = {};
+
+ return {
+ add: function( runtime ) {
+ obj[ runtime.uid ] = runtime;
+ },
+
+ get: function( ruid, standalone ) {
+ var i;
+
+ if ( ruid ) {
+ return obj[ ruid ];
+ }
+
+ for ( i in obj ) {
+ // 有些类型不能重用,比如filepicker.
+ if ( standalone && obj[ i ].__standalone ) {
+ continue;
+ }
+
+ return obj[ i ];
+ }
+
+ return null;
+ },
+
+ remove: function( runtime ) {
+ delete obj[ runtime.uid ];
+ }
+ };
+ })();
+
+ function RuntimeClient( component, standalone ) {
+ var deferred = Base.Deferred(),
+ runtime;
+
+ this.uid = Base.guid('client_');
+
+ // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
+ this.runtimeReady = function( cb ) {
+ return deferred.done( cb );
+ };
+
+ this.connectRuntime = function( opts, cb ) {
+
+ // already connected.
+ if ( runtime ) {
+ throw new Error('already connected!');
+ }
+
+ deferred.done( cb );
+
+ if ( typeof opts === 'string' && cache.get( opts ) ) {
+ runtime = cache.get( opts );
+ }
+
+ // 像filePicker只能独立存在,不能公用。
+ runtime = runtime || cache.get( null, standalone );
+
+ // 需要创建
+ if ( !runtime ) {
+ runtime = Runtime.create( opts, opts.runtimeOrder );
+ runtime.__promise = deferred.promise();
+ runtime.once( 'ready', deferred.resolve );
+ runtime.init();
+ cache.add( runtime );
+ runtime.__client = 1;
+ } else {
+ // 来自cache
+ Base.$.extend( runtime.options, opts );
+ runtime.__promise.then( deferred.resolve );
+ runtime.__client++;
+ }
+
+ standalone && (runtime.__standalone = standalone);
+ return runtime;
+ };
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.disconnectRuntime = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ runtime.__client--;
+
+ if ( runtime.__client <= 0 ) {
+ cache.remove( runtime );
+ delete runtime.__promise;
+ runtime.destroy();
+ }
+
+ runtime = null;
+ };
+
+ this.exec = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ var args = Base.slice( arguments );
+ component && args.unshift( component );
+
+ return runtime.exec.apply( this, args );
+ };
+
+ this.getRuid = function() {
+ return runtime && runtime.uid;
+ };
+
+ this.destroy = (function( destroy ) {
+ return function() {
+ destroy && destroy.apply( this, arguments );
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ };
+ })( this.destroy );
+ }
+
+ Mediator.installTo( RuntimeClient.prototype );
+ return RuntimeClient;
});
- /**
- * @fileOverview Uploader上传类
- */
- define('uploader',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$;
-
- /**
- * 上传入口类。
- * @class Uploader
- * @constructor
- * @grammar new Uploader( opts ) => Uploader
- * @example
- * var uploader = WebUploader.Uploader({
- * swf: 'path_of_swf/Uploader.swf',
- *
- * // 开起分片上传。
- * chunked: true
- * });
- */
- function Uploader( opts ) {
- this.options = $.extend( true, {}, Uploader.options, opts );
- this._init( this.options );
- }
-
- // default Options
- // widgets中有相应扩展
- Uploader.options = {};
- Mediator.installTo( Uploader.prototype );
-
- // 批量添加纯命令式方法。
- $.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( fn, command ) {
- Uploader.prototype[ fn ] = function() {
- return this.request( command, arguments );
- };
- });
-
- $.extend( Uploader.prototype, {
- state: 'pending',
-
- _init: function( opts ) {
- var me = this;
-
- me.request( 'init', opts, function() {
- me.state = 'ready';
- me.trigger('ready');
- });
- },
-
- /**
- * 获取或者设置Uploader配置项。
- * @method option
- * @grammar option( key ) => *
- * @grammar option( key, val ) => self
- * @example
- *
- * // 初始状态图片上传前不会压缩
- * var uploader = new WebUploader.Uploader({
- * compress: null;
- * });
- *
- * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
- * uploader.option( 'compress', {
- * width: 1600,
- * height: 1600
- * });
- */
- option: function( key, val ) {
- var opts = this.options;
-
- // setter
- if ( arguments.length > 1 ) {
-
- if ( $.isPlainObject( val ) &&
- $.isPlainObject( opts[ key ] ) ) {
- $.extend( opts[ key ], val );
- } else {
- opts[ key ] = val;
- }
-
- } else { // getter
- return key ? opts[ key ] : opts;
- }
- },
-
- /**
- * 获取文件统计信息。返回一个包含一下信息的对象。
- * * `successNum` 上传成功的文件数
- * * `progressNum` 上传中的文件数
- * * `cancelNum` 被删除的文件数
- * * `invalidNum` 无效的文件数
- * * `uploadFailNum` 上传失败的文件数
- * * `queueNum` 还在队列中的文件数
- * * `interruptNum` 被暂停的文件数
- * @method getStats
- * @grammar getStats() => Object
- */
- getStats: function() {
- // return this._mgr.getStats.apply( this._mgr, arguments );
- var stats = this.request('get-stats');
-
- return stats ? {
- successNum: stats.numOfSuccess,
- progressNum: stats.numOfProgress,
-
- // who care?
- // queueFailNum: 0,
- cancelNum: stats.numOfCancel,
- invalidNum: stats.numOfInvalid,
- uploadFailNum: stats.numOfUploadFailed,
- queueNum: stats.numOfQueue,
- interruptNum: stats.numOfInterrupt
- } : {};
- },
-
- // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
- trigger: function( type/*, args...*/ ) {
- var args = [].slice.call( arguments, 1 ),
- opts = this.options,
- name = 'on' + type.substring( 0, 1 ).toUpperCase() +
- type.substring( 1 );
-
- if (
- // 调用通过on方法注册的handler.
- Mediator.trigger.apply( this, arguments ) === false ||
-
- // 调用opts.onEvent
- $.isFunction( opts[ name ] ) &&
- opts[ name ].apply( this, args ) === false ||
-
- // 调用this.onEvent
- $.isFunction( this[ name ] ) &&
- this[ name ].apply( this, args ) === false ||
-
- // 广播所有uploader的事件。
- Mediator.trigger.apply( Mediator,
- [ this, type ].concat( args ) ) === false ) {
-
- return false;
- }
-
- return true;
- },
-
- /**
- * 销毁 webuploader 实例
- * @method destroy
- * @grammar destroy() => undefined
- */
- destroy: function() {
- this.request( 'destroy', arguments );
- this.off();
- },
-
- // widgets/widget.js将补充此方法的详细文档。
- request: Base.noop
- });
-
- /**
- * 创建Uploader实例,等同于new Uploader( opts );
- * @method create
- * @class Base
- * @static
- * @grammar Base.create( opts ) => Uploader
- */
- Base.create = Uploader.create = function( opts ) {
- return new Uploader( opts );
- };
-
- // 暴露Uploader,可以通过它来扩展业务逻辑。
- Base.Uploader = Uploader;
-
- return Uploader;
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/dnd',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function DragAndDrop( opts ) {
+ opts = this.options = $.extend({}, DragAndDrop.options, opts );
+
+ opts.container = $( opts.container );
+
+ if ( !opts.container.length ) {
+ return;
+ }
+
+ RuntimeClent.call( this, 'DragAndDrop' );
+ }
+
+ DragAndDrop.options = {
+ accept: null,
+ disableGlobalDnd: false
+ };
+
+ Base.inherits( RuntimeClent, {
+ constructor: DragAndDrop,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( DragAndDrop.prototype );
+
+ return DragAndDrop;
});
-
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/runtime',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- factories = {},
-
- // 获取对象的第一个key
- getFirstKey = function( obj ) {
- for ( var key in obj ) {
- if ( obj.hasOwnProperty( key ) ) {
- return key;
- }
- }
- return null;
- };
-
- // 接口类。
- function Runtime( options ) {
- this.options = $.extend({
- container: document.body
- }, options );
- this.uid = Base.guid('rt_');
- }
-
- $.extend( Runtime.prototype, {
-
- getContainer: function() {
- var opts = this.options,
- parent, container;
-
- if ( this._container ) {
- return this._container;
- }
-
- parent = $( opts.container || document.body );
- container = $( document.createElement('div') );
-
- container.attr( 'id', 'rt_' + this.uid );
- container.css({
- position: 'absolute',
- top: '0px',
- left: '0px',
- width: '1px',
- height: '1px',
- overflow: 'hidden'
- });
-
- parent.append( container );
- parent.addClass('webuploader-container');
- this._container = container;
- this._parent = parent;
- return container;
- },
-
- init: Base.noop,
- exec: Base.noop,
-
- destroy: function() {
- this._container && this._container.remove();
- this._parent && this._parent.removeClass('webuploader-container');
- this.off();
- }
- });
-
- Runtime.orders = 'html5,flash';
-
-
- /**
- * 添加Runtime实现。
- * @param {String} type 类型
- * @param {Runtime} factory 具体Runtime实现。
- */
- Runtime.addRuntime = function( type, factory ) {
- factories[ type ] = factory;
- };
-
- Runtime.hasRuntime = function( type ) {
- return !!(type ? factories[ type ] : getFirstKey( factories ));
- };
-
- Runtime.create = function( opts, orders ) {
- var type, runtime;
-
- orders = orders || Runtime.orders;
- $.each( orders.split( /\s*,\s*/g ), function() {
- if ( factories[ this ] ) {
- type = this;
- return false;
- }
- });
-
- type = type || getFirstKey( factories );
-
- if ( !type ) {
- throw new Error('Runtime Error');
- }
-
- runtime = new factories[ type ]( opts );
- return runtime;
- };
-
- Mediator.installTo( Runtime.prototype );
- return Runtime;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/widget',[
+ 'base',
+ 'uploader'
+ ], function( Base, Uploader ) {
+
+ var $ = Base.$,
+ _init = Uploader.prototype._init,
+ _destroy = Uploader.prototype.destroy,
+ IGNORE = {},
+ widgetClass = [];
+
+ function isArrayLike( obj ) {
+ if ( !obj ) {
+ return false;
+ }
+
+ var length = obj.length,
+ type = $.type( obj );
+
+ if ( obj.nodeType === 1 && length ) {
+ return true;
+ }
+
+ return type === 'array' || type !== 'function' && type !== 'string' &&
+ (length === 0 || typeof length === 'number' && length > 0 &&
+ (length - 1) in obj);
+ }
+
+ function Widget( uploader ) {
+ this.owner = uploader;
+ this.options = uploader.options;
+ }
+
+ $.extend( Widget.prototype, {
+
+ init: Base.noop,
+
+ // 类Backbone的事件监听声明,监听uploader实例上的事件
+ // widget直接无法监听事件,事件只能通过uploader来传递
+ invoke: function( apiName, args ) {
+
+ /*
+ {
+ 'make-thumb': 'makeThumb'
+ }
+ */
+ var map = this.responseMap;
+
+ // 如果无API响应声明则忽略
+ if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
+ !$.isFunction( this[ map[ apiName ] ] ) ) {
+
+ return IGNORE;
+ }
+
+ return this[ map[ apiName ] ].apply( this, args );
+
+ },
+
+ /**
+ * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
+ * @method request
+ * @grammar request( command, args ) => * | Promise
+ * @grammar request( command, args, callback ) => Promise
+ * @for Uploader
+ */
+ request: function() {
+ return this.owner.request.apply( this.owner, arguments );
+ }
+ });
+
+ // 扩展Uploader.
+ $.extend( Uploader.prototype, {
+
+ /**
+ * @property {String | Array} [disableWidgets=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
+ */
+
+ // 覆写_init用来初始化widgets
+ _init: function() {
+ var me = this,
+ widgets = me._widgets = [],
+ deactives = me.options.disableWidgets || '';
+
+ $.each( widgetClass, function( _, klass ) {
+ (!deactives || !~deactives.indexOf( klass._name )) &&
+ widgets.push( new klass( me ) );
+ });
+
+ return _init.apply( me, arguments );
+ },
+
+ request: function( apiName, args, callback ) {
+ var i = 0,
+ widgets = this._widgets,
+ len = widgets && widgets.length,
+ rlts = [],
+ dfds = [],
+ widget, rlt, promise, key;
+
+ args = isArrayLike( args ) ? args : [ args ];
+
+ for ( ; i < len; i++ ) {
+ widget = widgets[ i ];
+ rlt = widget.invoke( apiName, args );
+
+ if ( rlt !== IGNORE ) {
+
+ // Deferred对象
+ if ( Base.isPromise( rlt ) ) {
+ dfds.push( rlt );
+ } else {
+ rlts.push( rlt );
+ }
+ }
+ }
+
+ // 如果有callback,则用异步方式。
+ if ( callback || dfds.length ) {
+ promise = Base.when.apply( Base, dfds );
+ key = promise.pipe ? 'pipe' : 'then';
+
+ // 很重要不能删除。删除了会死循环。
+ // 保证执行顺序。让callback总是在下一个 tick 中执行。
+ return promise[ key ](function() {
+ var deferred = Base.Deferred(),
+ args = arguments;
+
+ if ( args.length === 1 ) {
+ args = args[ 0 ];
+ }
+
+ setTimeout(function() {
+ deferred.resolve( args );
+ }, 1 );
+
+ return deferred.promise();
+ })[ callback ? key : 'done' ]( callback || Base.noop );
+ } else {
+ return rlts[ 0 ];
+ }
+ },
+
+ destroy: function() {
+ _destroy.apply( this, arguments );
+ this._widgets = null;
+ }
+ });
+
+ /**
+ * 添加组件
+ * @grammar Uploader.register(proto);
+ * @grammar Uploader.register(map, proto);
+ * @param {object} responseMap API 名称与函数实现的映射
+ * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
+ * @method Uploader.register
+ * @for Uploader
+ * @example
+ * Uploader.register({
+ * 'make-thumb': 'makeThumb'
+ * }, {
+ * init: function( options ) {},
+ * makeThumb: function() {}
+ * });
+ *
+ * Uploader.register({
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ */
+ Uploader.register = Widget.register = function( responseMap, widgetProto ) {
+ var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
+ klass;
+
+ if ( arguments.length === 1 ) {
+ widgetProto = responseMap;
+
+ // 自动生成 map 表。
+ $.each(widgetProto, function(key) {
+ if ( key[0] === '_' || key === 'name' ) {
+ key === 'name' && (map.name = widgetProto.name);
+ return;
+ }
+
+ map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
+ });
+
+ } else {
+ map = $.extend( map, responseMap );
+ }
+
+ widgetProto.responseMap = map;
+ klass = Base.inherits( Widget, widgetProto );
+ klass._name = map.name;
+ widgetClass.push( klass );
+
+ return klass;
+ };
+
+ /**
+ * 删除插件,只有在注册时指定了名字的才能被删除。
+ * @grammar Uploader.unRegister(name);
+ * @param {string} name 组件名字
+ * @method Uploader.unRegister
+ * @for Uploader
+ * @example
+ *
+ * Uploader.register({
+ * name: 'custom',
+ *
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ *
+ * Uploader.unRegister('custom');
+ */
+ Uploader.unRegister = Widget.unRegister = function( name ) {
+ if ( !name || name === 'anonymous' ) {
+ return;
+ }
+
+ // 删除指定的插件。
+ for ( var i = widgetClass.length; i--; ) {
+ if ( widgetClass[i]._name === name ) {
+ widgetClass.splice(i, 1)
+ }
+ }
+ };
+
+ return Widget;
});
+ /**
+ * @fileOverview DragAndDrop Widget。
+ */
+ define('widgets/filednd',[
+ 'base',
+ 'uploader',
+ 'lib/dnd',
+ 'widgets/widget'
+ ], function( Base, Uploader, Dnd ) {
+ var $ = Base.$;
+
+ Uploader.options.dnd = '';
+
+ /**
+ * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @event dndAccept
+ * @param {DataTransferItemList} items DataTransferItem
+ * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'dnd',
+
+ init: function( opts ) {
+
+ if ( !opts.dnd ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ disableGlobalDnd: opts.disableGlobalDnd,
+ container: opts.dnd,
+ accept: opts.accept
+ }),
+ dnd;
+
+ this.dnd = dnd = new Dnd( options );
+
+ dnd.once( 'ready', deferred.resolve );
+ dnd.on( 'drop', function( files ) {
+ me.request( 'add-file', [ files ]);
+ });
+
+ // 检测文件是否全部允许添加。
+ dnd.on( 'accept', function( items ) {
+ return me.owner.trigger( 'dndAccept', items );
+ });
+
+ dnd.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.dnd && this.dnd.destroy();
+ }
+ });
+ });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/client',[
- 'base',
- 'mediator',
- 'runtime/runtime'
- ], function( Base, Mediator, Runtime ) {
-
- var cache;
-
- cache = (function() {
- var obj = {};
-
- return {
- add: function( runtime ) {
- obj[ runtime.uid ] = runtime;
- },
-
- get: function( ruid, standalone ) {
- var i;
-
- if ( ruid ) {
- return obj[ ruid ];
- }
-
- for ( i in obj ) {
- // 有些类型不能重用,比如filepicker.
- if ( standalone && obj[ i ].__standalone ) {
- continue;
- }
-
- return obj[ i ];
- }
-
- return null;
- },
-
- remove: function( runtime ) {
- delete obj[ runtime.uid ];
- }
- };
- })();
-
- function RuntimeClient( component, standalone ) {
- var deferred = Base.Deferred(),
- runtime;
-
- this.uid = Base.guid('client_');
-
- // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
- this.runtimeReady = function( cb ) {
- return deferred.done( cb );
- };
-
- this.connectRuntime = function( opts, cb ) {
-
- // already connected.
- if ( runtime ) {
- throw new Error('already connected!');
- }
-
- deferred.done( cb );
-
- if ( typeof opts === 'string' && cache.get( opts ) ) {
- runtime = cache.get( opts );
- }
-
- // 像filePicker只能独立存在,不能公用。
- runtime = runtime || cache.get( null, standalone );
-
- // 需要创建
- if ( !runtime ) {
- runtime = Runtime.create( opts, opts.runtimeOrder );
- runtime.__promise = deferred.promise();
- runtime.once( 'ready', deferred.resolve );
- runtime.init();
- cache.add( runtime );
- runtime.__client = 1;
- } else {
- // 来自cache
- Base.$.extend( runtime.options, opts );
- runtime.__promise.then( deferred.resolve );
- runtime.__client++;
- }
-
- standalone && (runtime.__standalone = standalone);
- return runtime;
- };
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.disconnectRuntime = function() {
- if ( !runtime ) {
- return;
- }
-
- runtime.__client--;
-
- if ( runtime.__client <= 0 ) {
- cache.remove( runtime );
- delete runtime.__promise;
- runtime.destroy();
- }
-
- runtime = null;
- };
-
- this.exec = function() {
- if ( !runtime ) {
- return;
- }
-
- var args = Base.slice( arguments );
- component && args.unshift( component );
-
- return runtime.exec.apply( this, args );
- };
-
- this.getRuid = function() {
- return runtime && runtime.uid;
- };
-
- this.destroy = (function( destroy ) {
- return function() {
- destroy && destroy.apply( this, arguments );
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- };
- })( this.destroy );
- }
-
- Mediator.installTo( RuntimeClient.prototype );
- return RuntimeClient;
- });
- /**
- * @fileOverview 错误信息
- */
- define('lib/dnd',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function DragAndDrop( opts ) {
- opts = this.options = $.extend({}, DragAndDrop.options, opts );
-
- opts.container = $( opts.container );
-
- if ( !opts.container.length ) {
- return;
- }
-
- RuntimeClent.call( this, 'DragAndDrop' );
- }
-
- DragAndDrop.options = {
- accept: null,
- disableGlobalDnd: false
- };
-
- Base.inherits( RuntimeClent, {
- constructor: DragAndDrop,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( DragAndDrop.prototype );
-
- return DragAndDrop;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/widget',[
- 'base',
- 'uploader'
- ], function( Base, Uploader ) {
-
- var $ = Base.$,
- _init = Uploader.prototype._init,
- _destroy = Uploader.prototype.destroy,
- IGNORE = {},
- widgetClass = [];
-
- function isArrayLike( obj ) {
- if ( !obj ) {
- return false;
- }
-
- var length = obj.length,
- type = $.type( obj );
-
- if ( obj.nodeType === 1 && length ) {
- return true;
- }
-
- return type === 'array' || type !== 'function' && type !== 'string' &&
- (length === 0 || typeof length === 'number' && length > 0 &&
- (length - 1) in obj);
- }
-
- function Widget( uploader ) {
- this.owner = uploader;
- this.options = uploader.options;
- }
-
- $.extend( Widget.prototype, {
-
- init: Base.noop,
-
- // 类Backbone的事件监听声明,监听uploader实例上的事件
- // widget直接无法监听事件,事件只能通过uploader来传递
- invoke: function( apiName, args ) {
-
- /*
- {
- 'make-thumb': 'makeThumb'
- }
- */
- var map = this.responseMap;
-
- // 如果无API响应声明则忽略
- if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
- !$.isFunction( this[ map[ apiName ] ] ) ) {
-
- return IGNORE;
- }
-
- return this[ map[ apiName ] ].apply( this, args );
-
- },
-
- /**
- * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
- * @method request
- * @grammar request( command, args ) => * | Promise
- * @grammar request( command, args, callback ) => Promise
- * @for Uploader
- */
- request: function() {
- return this.owner.request.apply( this.owner, arguments );
- }
- });
-
- // 扩展Uploader.
- $.extend( Uploader.prototype, {
-
- /**
- * @property {String | Array} [disableWidgets=undefined]
- * @namespace options
- * @for Uploader
- * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
- */
-
- // 覆写_init用来初始化widgets
- _init: function() {
- var me = this,
- widgets = me._widgets = [],
- deactives = me.options.disableWidgets || '';
-
- $.each( widgetClass, function( _, klass ) {
- (!deactives || !~deactives.indexOf( klass._name )) &&
- widgets.push( new klass( me ) );
- });
-
- return _init.apply( me, arguments );
- },
-
- request: function( apiName, args, callback ) {
- var i = 0,
- widgets = this._widgets,
- len = widgets && widgets.length,
- rlts = [],
- dfds = [],
- widget, rlt, promise, key;
-
- args = isArrayLike( args ) ? args : [ args ];
-
- for ( ; i < len; i++ ) {
- widget = widgets[ i ];
- rlt = widget.invoke( apiName, args );
-
- if ( rlt !== IGNORE ) {
-
- // Deferred对象
- if ( Base.isPromise( rlt ) ) {
- dfds.push( rlt );
- } else {
- rlts.push( rlt );
- }
- }
- }
-
- // 如果有callback,则用异步方式。
- if ( callback || dfds.length ) {
- promise = Base.when.apply( Base, dfds );
- key = promise.pipe ? 'pipe' : 'then';
-
- // 很重要不能删除。删除了会死循环。
- // 保证执行顺序。让callback总是在下一个 tick 中执行。
- return promise[ key ](function() {
- var deferred = Base.Deferred(),
- args = arguments;
-
- if ( args.length === 1 ) {
- args = args[ 0 ];
- }
-
- setTimeout(function() {
- deferred.resolve( args );
- }, 1 );
-
- return deferred.promise();
- })[ callback ? key : 'done' ]( callback || Base.noop );
- } else {
- return rlts[ 0 ];
- }
- },
-
- destroy: function() {
- _destroy.apply( this, arguments );
- this._widgets = null;
- }
- });
-
- /**
- * 添加组件
- * @grammar Uploader.register(proto);
- * @grammar Uploader.register(map, proto);
- * @param {object} responseMap API 名称与函数实现的映射
- * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
- * @method Uploader.register
- * @for Uploader
- * @example
- * Uploader.register({
- * 'make-thumb': 'makeThumb'
- * }, {
- * init: function( options ) {},
- * makeThumb: function() {}
- * });
- *
- * Uploader.register({
- * 'make-thumb': function() {
- *
- * }
- * });
- */
- Uploader.register = Widget.register = function( responseMap, widgetProto ) {
- var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
- klass;
-
- if ( arguments.length === 1 ) {
- widgetProto = responseMap;
-
- // 自动生成 map 表。
- $.each(widgetProto, function(key) {
- if ( key[0] === '_' || key === 'name' ) {
- key === 'name' && (map.name = widgetProto.name);
- return;
- }
-
- map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
- });
-
- } else {
- map = $.extend( map, responseMap );
- }
-
- widgetProto.responseMap = map;
- klass = Base.inherits( Widget, widgetProto );
- klass._name = map.name;
- widgetClass.push( klass );
-
- return klass;
- };
-
- /**
- * 删除插件,只有在注册时指定了名字的才能被删除。
- * @grammar Uploader.unRegister(name);
- * @param {string} name 组件名字
- * @method Uploader.unRegister
- * @for Uploader
- * @example
- *
- * Uploader.register({
- * name: 'custom',
- *
- * 'make-thumb': function() {
- *
- * }
- * });
- *
- * Uploader.unRegister('custom');
- */
- Uploader.unRegister = Widget.unRegister = function( name ) {
- if ( !name || name === 'anonymous' ) {
- return;
- }
-
- // 删除指定的插件。
- for ( var i = widgetClass.length; i--; ) {
- if ( widgetClass[i]._name === name ) {
- widgetClass.splice(i, 1)
- }
- }
- };
-
- return Widget;
- });
- /**
- * @fileOverview DragAndDrop Widget。
- */
- define('widgets/filednd',[
- 'base',
- 'uploader',
- 'lib/dnd',
- 'widgets/widget'
- ], function( Base, Uploader, Dnd ) {
- var $ = Base.$;
-
- Uploader.options.dnd = '';
-
- /**
- * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @event dndAccept
- * @param {DataTransferItemList} items DataTransferItem
- * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
- * @for Uploader
- */
- return Uploader.register({
- name: 'dnd',
-
- init: function( opts ) {
-
- if ( !opts.dnd ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- disableGlobalDnd: opts.disableGlobalDnd,
- container: opts.dnd,
- accept: opts.accept
- }),
- dnd;
-
- this.dnd = dnd = new Dnd( options );
-
- dnd.once( 'ready', deferred.resolve );
- dnd.on( 'drop', function( files ) {
- me.request( 'add-file', [ files ]);
- });
-
- // 检测文件是否全部允许添加。
- dnd.on( 'accept', function( items ) {
- return me.owner.trigger( 'dndAccept', items );
- });
-
- dnd.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.dnd && this.dnd.destroy();
- }
- });
- });
-
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepaste',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function FilePaste( opts ) {
- opts = this.options = $.extend({}, opts );
- opts.container = $( opts.container || document.body );
- RuntimeClent.call( this, 'FilePaste' );
- }
-
- Base.inherits( RuntimeClent, {
- constructor: FilePaste,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( FilePaste.prototype );
-
- return FilePaste;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/filepaste',[
- 'base',
- 'uploader',
- 'lib/filepaste',
- 'widgets/widget'
- ], function( Base, Uploader, FilePaste ) {
- var $ = Base.$;
-
- /**
- * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
- * @namespace options
- * @for Uploader
- */
- return Uploader.register({
- name: 'paste',
-
- init: function( opts ) {
-
- if ( !opts.paste ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- container: opts.paste,
- accept: opts.accept
- }),
- paste;
-
- this.paste = paste = new FilePaste( options );
-
- paste.once( 'ready', deferred.resolve );
- paste.on( 'paste', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- paste.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.paste && this.paste.destroy();
- }
- });
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepaste',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function FilePaste( opts ) {
+ opts = this.options = $.extend({}, opts );
+ opts.container = $( opts.container || document.body );
+ RuntimeClent.call( this, 'FilePaste' );
+ }
+
+ Base.inherits( RuntimeClent, {
+ constructor: FilePaste,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( FilePaste.prototype );
+
+ return FilePaste;
});
- /**
- * @fileOverview Blob
- */
- define('lib/blob',[
- 'base',
- 'runtime/client'
- ], function( Base, RuntimeClient ) {
-
- function Blob( ruid, source ) {
- var me = this;
-
- me.source = source;
- me.ruid = ruid;
- this.size = source.size || 0;
-
- // 如果没有指定 mimetype, 但是知道文件后缀。
- if ( !source.type && this.ext &&
- ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
- this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
- } else {
- this.type = source.type || 'application/octet-stream';
- }
-
- RuntimeClient.call( me, 'Blob' );
- this.uid = source.uid || this.uid;
-
- if ( ruid ) {
- me.connectRuntime( ruid );
- }
- }
-
- Base.inherits( RuntimeClient, {
- constructor: Blob,
-
- slice: function( start, end ) {
- return this.exec( 'slice', start, end );
- },
-
- getSource: function() {
- return this.source;
- }
- });
-
- return Blob;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/filepaste',[
+ 'base',
+ 'uploader',
+ 'lib/filepaste',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePaste ) {
+ var $ = Base.$;
+
+ /**
+ * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
+ * @namespace options
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'paste',
+
+ init: function( opts ) {
+
+ if ( !opts.paste ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ container: opts.paste,
+ accept: opts.accept
+ }),
+ paste;
+
+ this.paste = paste = new FilePaste( options );
+
+ paste.once( 'ready', deferred.resolve );
+ paste.on( 'paste', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ paste.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.paste && this.paste.destroy();
+ }
+ });
});
- /**
- * 为了统一化Flash的File和HTML5的File而存在。
- * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
- * @fileOverview File
- */
- define('lib/file',[
- 'base',
- 'lib/blob'
- ], function( Base, Blob ) {
-
- var uid = 1,
- rExt = /\.([^.]+)$/;
-
- function File( ruid, file ) {
- var ext;
-
- this.name = file.name || ('untitled' + uid++);
- ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
-
- // todo 支持其他类型文件的转换。
- // 如果有 mimetype, 但是文件名里面没有找出后缀规律
- if ( !ext && file.type ) {
- ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
- RegExp.$1.toLowerCase() : '';
- this.name += '.' + ext;
- }
-
- this.ext = ext;
- this.lastModifiedDate = file.lastModifiedDate ||
- file.lastModified && new Date(file.lastModified).toLocaleString() ||
- (new Date()).toLocaleString();
-
- Blob.apply( this, arguments );
- }
-
- return Base.inherits( Blob, File );
+ /**
+ * @fileOverview Blob
+ */
+ define('lib/blob',[
+ 'base',
+ 'runtime/client'
+ ], function( Base, RuntimeClient ) {
+
+ function Blob( ruid, source ) {
+ var me = this;
+
+ me.source = source;
+ me.ruid = ruid;
+ this.size = source.size || 0;
+
+ // 如果没有指定 mimetype, 但是知道文件后缀。
+ if ( !source.type && this.ext &&
+ ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
+ this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
+ } else {
+ this.type = source.type || 'application/octet-stream';
+ }
+
+ RuntimeClient.call( me, 'Blob' );
+ this.uid = source.uid || this.uid;
+
+ if ( ruid ) {
+ me.connectRuntime( ruid );
+ }
+ }
+
+ Base.inherits( RuntimeClient, {
+ constructor: Blob,
+
+ slice: function( start, end ) {
+ return this.exec( 'slice', start, end );
+ },
+
+ getSource: function() {
+ return this.source;
+ }
+ });
+
+ return Blob;
});
+ /**
+ * 为了统一化Flash的File和HTML5的File而存在。
+ * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
+ * @fileOverview File
+ */
+ define('lib/file',[
+ 'base',
+ 'lib/blob'
+ ], function( Base, Blob ) {
+
+ var uid = 1,
+ rExt = /\.([^.]+)$/;
+
+ function File( ruid, file ) {
+ var ext;
+
+ this.name = file.name || ('untitled' + uid++);
+ ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
+
+ // todo 支持其他类型文件的转换。
+ // 如果有 mimetype, 但是文件名里面没有找出后缀规律
+ if ( !ext && file.type ) {
+ ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
+ RegExp.$1.toLowerCase() : '';
+ this.name += '.' + ext;
+ }
+
+ this.ext = ext;
+ this.lastModifiedDate = file.lastModifiedDate ||
+ file.lastModified && new Date(file.lastModified).toLocaleString() ||
+ (new Date()).toLocaleString();
+
+ Blob.apply( this, arguments );
+ }
+
+ return Base.inherits( Blob, File );
+ });
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepicker',[
- 'base',
- 'runtime/client',
- 'lib/file'
- ], function( Base, RuntimeClient, File ) {
-
- var $ = Base.$;
-
- function FilePicker( opts ) {
- opts = this.options = $.extend({}, FilePicker.options, opts );
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepicker',[
+ 'base',
+ 'runtime/client',
+ 'lib/file'
+ ], function( Base, RuntimeClient, File ) {
+
+ var $ = Base.$;
+
+ function FilePicker( opts ) {
+ opts = this.options = $.extend({}, FilePicker.options, opts );
+
+ opts.container = $( opts.id );
+
+ if ( !opts.container.length ) {
+ throw new Error('按钮指定错误');
+ }
+
+ opts.innerHTML = opts.innerHTML || opts.label ||
+ opts.container.html() || '';
+
+ opts.button = $( opts.button || document.createElement('div') );
+ opts.button.html( opts.innerHTML );
+ opts.container.html( opts.button );
+
+ RuntimeClient.call( this, 'FilePicker', true );
+ }
+
+ FilePicker.options = {
+ button: null,
+ container: null,
+ label: null,
+ innerHTML: null,
+ multiple: true,
+ accept: null,
+ name: 'file',
+ style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
+ };
+
+ Base.inherits( RuntimeClient, {
+ constructor: FilePicker,
+
+ init: function() {
+ var me = this,
+ opts = me.options,
+ button = opts.button,
+ style = opts.style;
+
+ if (style)
+ button.addClass('webuploader-pick');
+
+ me.on( 'all', function( type ) {
+ var files;
+
+ switch ( type ) {
+ case 'mouseenter':
+ if (style)
+ button.addClass('webuploader-pick-hover');
+ break;
+
+ case 'mouseleave':
+ if (style)
+ button.removeClass('webuploader-pick-hover');
+ break;
+
+ case 'change':
+ files = me.exec('getFiles');
+ me.trigger( 'select', $.map( files, function( file ) {
+ file = new File( me.getRuid(), file );
+
+ // 记录来源。
+ file._refer = opts.container;
+ return file;
+ }), opts.container );
+ break;
+ }
+ });
+
+ me.connectRuntime( opts, function() {
+ me.refresh();
+ me.exec( 'init', opts );
+ me.trigger('ready');
+ });
+
+ this._resizeHandler = Base.bindFn( this.refresh, this );
+ $( window ).on( 'resize', this._resizeHandler );
+ },
+
+ refresh: function() {
+ var shimContainer = this.getRuntime().getContainer(),
+ button = this.options.button,
+ /*
+ width = button.outerWidth ?
+ button.outerWidth() : button.width(),
+
+ height = button.outerHeight ?
+ button.outerHeight() : button.height(),
+ */
+ width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
+ height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
+ pos = button.offset();
+
+ width && height && shimContainer.css({
+ bottom: 'auto',
+ right: 'auto',
+ width: width + 'px',
+ height: height + 'px'
+ }).offset( pos );
+ },
+
+ enable: function() {
+ var btn = this.options.button;
+
+ btn.removeClass('webuploader-pick-disable');
+ this.refresh();
+ },
+
+ disable: function() {
+ var btn = this.options.button;
+
+ this.getRuntime().getContainer().css({
+ top: '-99999px'
+ });
+
+ btn.addClass('webuploader-pick-disable');
+ },
+
+ destroy: function() {
+ var btn = this.options.button;
+ $( window ).off( 'resize', this._resizeHandler );
+ btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
+ 'webuploader-pick');
+ }
+ });
+
+ return FilePicker;
+ });
- opts.container = $( opts.id );
-
- if ( !opts.container.length ) {
- throw new Error('按钮指定错误');
- }
-
- opts.innerHTML = opts.innerHTML || opts.label ||
- opts.container.html() || '';
-
- opts.button = $( opts.button || document.createElement('div') );
- opts.button.html( opts.innerHTML );
- opts.container.html( opts.button );
-
- RuntimeClient.call( this, 'FilePicker', true );
- }
-
- FilePicker.options = {
- button: null,
- container: null,
- label: null,
- innerHTML: null,
- multiple: true,
- accept: null,
- name: 'file',
- style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
- };
-
- Base.inherits( RuntimeClient, {
- constructor: FilePicker,
-
- init: function() {
- var me = this,
- opts = me.options,
- button = opts.button,
- style = opts.style;
-
- if (style)
- button.addClass('webuploader-pick');
-
- me.on( 'all', function( type ) {
- var files;
-
- switch ( type ) {
- case 'mouseenter':
- if (style)
- button.addClass('webuploader-pick-hover');
- break;
-
- case 'mouseleave':
- if (style)
- button.removeClass('webuploader-pick-hover');
- break;
-
- case 'change':
- files = me.exec('getFiles');
- me.trigger( 'select', $.map( files, function( file ) {
- file = new File( me.getRuid(), file );
-
- // 记录来源。
- file._refer = opts.container;
- return file;
- }), opts.container );
- break;
- }
- });
-
- me.connectRuntime( opts, function() {
- me.refresh();
- me.exec( 'init', opts );
- me.trigger('ready');
- });
-
- this._resizeHandler = Base.bindFn( this.refresh, this );
- $( window ).on( 'resize', this._resizeHandler );
- },
-
- refresh: function() {
- var shimContainer = this.getRuntime().getContainer(),
- button = this.options.button,
- /*
- width = button.outerWidth ?
- button.outerWidth() : button.width(),
-
- height = button.outerHeight ?
- button.outerHeight() : button.height(),
- */
- width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
- height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
- pos = button.offset();
-
- width && height && shimContainer.css({
- bottom: 'auto',
- right: 'auto',
- width: width + 'px',
- height: height + 'px'
- }).offset( pos );
- },
-
- enable: function() {
- var btn = this.options.button;
-
- btn.removeClass('webuploader-pick-disable');
- this.refresh();
- },
-
- disable: function() {
- var btn = this.options.button;
-
- this.getRuntime().getContainer().css({
- top: '-99999px'
- });
-
- btn.addClass('webuploader-pick-disable');
- },
-
- destroy: function() {
- var btn = this.options.button;
- $( window ).off( 'resize', this._resizeHandler );
- btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
- 'webuploader-pick');
- }
- });
-
- return FilePicker;
- });
-
- /**
- * @fileOverview 文件选择相关
- */
- define('widgets/filepicker',[
- 'base',
- 'uploader',
- 'lib/filepicker',
- 'widgets/widget'
- ], function( Base, Uploader, FilePicker ) {
- var $ = Base.$;
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Selector | Object} [pick=undefined]
- * @namespace options
- * @for Uploader
- * @description 指定选择文件的按钮容器,不指定则不创建按钮。
- *
- * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
- * * `label` {String} 请采用 `innerHTML` 代替
- * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
- * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
- */
- pick: null,
-
- /**
- * @property {Array} [accept=null]
- * @namespace options
- * @for Uploader
- * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
- *
- * * `title` {String} 文字描述
- * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
- * * `mimeTypes` {String} 多个用逗号分割。
- *
- * 如:
- *
- * ```
- * {
- * title: 'Images',
- * extensions: 'gif,jpg,jpeg,bmp,png',
- * mimeTypes: 'image/*'
- * }
- * ```
- */
- accept: null/*{
- title: 'Images',
- extensions: 'gif,jpg,jpeg,bmp,png',
- mimeTypes: 'image/*'
- }*/
- });
-
- return Uploader.register({
- name: 'picker',
-
- init: function( opts ) {
- this.pickers = [];
- return opts.pick && this.addBtn( opts.pick );
- },
-
- refresh: function() {
- $.each( this.pickers, function() {
- this.refresh();
- });
- },
-
- /**
- * @method addButton
- * @for Uploader
- * @grammar addButton( pick ) => Promise
- * @description
- * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
- * @example
- * uploader.addButton({
- * id: '#btnContainer',
- * innerHTML: '选择文件'
- * });
- */
- addBtn: function( pick ) {
- var me = this,
- opts = me.options,
- accept = opts.accept,
- promises = [];
-
- if ( !pick ) {
- return;
- }
-
- $.isPlainObject( pick ) || (pick = {
- id: pick
- });
-
- $( pick.id ).each(function() {
- var options, picker, deferred;
-
- deferred = Base.Deferred();
-
- options = $.extend({}, pick, {
- accept: $.isPlainObject( accept ) ? [ accept ] : accept,
- swf: opts.swf,
- runtimeOrder: opts.runtimeOrder,
- id: this
- });
-
- picker = new FilePicker( options );
-
- picker.once( 'ready', deferred.resolve );
- picker.on( 'select', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- picker.on('dialogopen', function() {
- me.owner.trigger('dialogOpen', picker.button);
- });
- picker.init();
-
- me.pickers.push( picker );
-
- promises.push( deferred.promise() );
- });
-
- return Base.when.apply( Base, promises );
- },
-
- disable: function() {
- $.each( this.pickers, function() {
- this.disable();
- });
- },
-
- enable: function() {
- $.each( this.pickers, function() {
- this.enable();
- });
- },
-
- destroy: function() {
- $.each( this.pickers, function() {
- this.destroy();
- });
- this.pickers = null;
- }
- });
- });
- /**
- * @fileOverview 文件属性封装
- */
- define('file',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- idPrefix = 'WU_FILE_',
- idSuffix = 0,
- rExt = /\.([^.]+)$/,
- statusMap = {};
-
- function gid() {
- return idPrefix + idSuffix++;
- }
-
- /**
- * 文件类
- * @class File
- * @constructor 构造函数
- * @grammar new File( source ) => File
- * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
- */
- function WUFile( source ) {
-
- /**
- * 文件名,包括扩展名(后缀)
- * @property name
- * @type {string}
- */
- this.name = source.name || 'Untitled';
-
- /**
- * 文件体积(字节)
- * @property size
- * @type {uint}
- * @default 0
- */
- this.size = source.size || 0;
-
- /**
- * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
- * @property type
- * @type {string}
- * @default 'application/octet-stream'
- */
- this.type = source.type || 'application/octet-stream';
-
- /**
- * 文件最后修改日期
- * @property lastModifiedDate
- * @type {int}
- * @default 当前时间戳
- */
- this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
-
- /**
- * 文件ID,每个对象具有唯一ID,与文件名无关
- * @property id
- * @type {string}
- */
- this.id = gid();
-
- /**
- * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
- * @property ext
- * @type {string}
- */
- this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
-
-
- /**
- * 状态文字说明。在不同的status语境下有不同的用途。
- * @property statusText
- * @type {string}
- */
- this.statusText = '';
-
- // 存储文件状态,防止通过属性直接修改
- statusMap[ this.id ] = WUFile.Status.INITED;
-
- this.source = source;
- this.loaded = 0;
-
- this.on( 'error', function( msg ) {
- this.setStatus( WUFile.Status.ERROR, msg );
- });
- }
-
- $.extend( WUFile.prototype, {
-
- /**
- * 设置状态,状态变化时会触发`change`事件。
- * @method setStatus
- * @grammar setStatus( status[, statusText] );
- * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
- * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
- */
- setStatus: function( status, text ) {
-
- var prevStatus = statusMap[ this.id ];
-
- typeof text !== 'undefined' && (this.statusText = text);
-
- if ( status !== prevStatus ) {
- statusMap[ this.id ] = status;
- /**
- * 文件状态变化
- * @event statuschange
- */
- this.trigger( 'statuschange', status, prevStatus );
- }
-
- },
-
- /**
- * 获取文件状态
- * @return {File.Status}
- * @example
- 文件状态具体包括以下几种类型:
- {
- // 初始化
- INITED: 0,
- // 已入队列
- QUEUED: 1,
- // 正在上传
- PROGRESS: 2,
- // 上传出错
- ERROR: 3,
- // 上传成功
- COMPLETE: 4,
- // 上传取消
- CANCELLED: 5
- }
- */
- getStatus: function() {
- return statusMap[ this.id ];
- },
-
- /**
- * 获取文件原始信息。
- * @return {*}
- */
- getSource: function() {
- return this.source;
- },
-
- destroy: function() {
- this.off();
- delete statusMap[ this.id ];
- }
- });
-
- Mediator.installTo( WUFile.prototype );
-
- /**
- * 文件状态值,具体包括以下几种类型:
- * * `inited` 初始状态
- * * `queued` 已经进入队列, 等待上传
- * * `progress` 上传中
- * * `complete` 上传完成。
- * * `error` 上传出错,可重试
- * * `interrupt` 上传中断,可续传。
- * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
- * * `cancelled` 文件被移除。
- * @property {Object} Status
- * @namespace File
- * @class File
- * @static
- */
- WUFile.Status = {
- INITED: 'inited', // 初始状态
- QUEUED: 'queued', // 已经进入队列, 等待上传
- PROGRESS: 'progress', // 上传中
- ERROR: 'error', // 上传出错,可重试
- COMPLETE: 'complete', // 上传完成。
- CANCELLED: 'cancelled', // 上传取消。
- INTERRUPT: 'interrupt', // 上传中断,可续传。
- INVALID: 'invalid' // 文件不合格,不能重试上传。
- };
-
- return WUFile;
+ /**
+ * @fileOverview 文件选择相关
+ */
+ define('widgets/filepicker',[
+ 'base',
+ 'uploader',
+ 'lib/filepicker',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePicker ) {
+ var $ = Base.$;
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Selector | Object} [pick=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 指定选择文件的按钮容器,不指定则不创建按钮。
+ *
+ * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
+ * * `label` {String} 请采用 `innerHTML` 代替
+ * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
+ * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
+ */
+ pick: null,
+
+ /**
+ * @property {Array} [accept=null]
+ * @namespace options
+ * @for Uploader
+ * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
+ *
+ * * `title` {String} 文字描述
+ * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
+ * * `mimeTypes` {String} 多个用逗号分割。
+ *
+ * 如:
+ *
+ * ```
+ * {
+ * title: 'Images',
+ * extensions: 'gif,jpg,jpeg,bmp,png',
+ * mimeTypes: 'image/*'
+ * }
+ * ```
+ */
+ accept: null/*{
+ title: 'Images',
+ extensions: 'gif,jpg,jpeg,bmp,png',
+ mimeTypes: 'image/*'
+ }*/
+ });
+
+ return Uploader.register({
+ name: 'picker',
+
+ init: function( opts ) {
+ this.pickers = [];
+ return opts.pick && this.addBtn( opts.pick );
+ },
+
+ refresh: function() {
+ $.each( this.pickers, function() {
+ this.refresh();
+ });
+ },
+
+ /**
+ * @method addButton
+ * @for Uploader
+ * @grammar addButton( pick ) => Promise
+ * @description
+ * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
+ * @example
+ * uploader.addButton({
+ * id: '#btnContainer',
+ * innerHTML: '选择文件'
+ * });
+ */
+ addBtn: function( pick ) {
+ var me = this,
+ opts = me.options,
+ accept = opts.accept,
+ promises = [];
+
+ if ( !pick ) {
+ return;
+ }
+
+ $.isPlainObject( pick ) || (pick = {
+ id: pick
+ });
+
+ $( pick.id ).each(function() {
+ var options, picker, deferred;
+
+ deferred = Base.Deferred();
+
+ options = $.extend({}, pick, {
+ accept: $.isPlainObject( accept ) ? [ accept ] : accept,
+ swf: opts.swf,
+ runtimeOrder: opts.runtimeOrder,
+ id: this
+ });
+
+ picker = new FilePicker( options );
+
+ picker.once( 'ready', deferred.resolve );
+ picker.on( 'select', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ picker.on('dialogopen', function() {
+ me.owner.trigger('dialogOpen', picker.button);
+ });
+ picker.init();
+
+ me.pickers.push( picker );
+
+ promises.push( deferred.promise() );
+ });
+
+ return Base.when.apply( Base, promises );
+ },
+
+ disable: function() {
+ $.each( this.pickers, function() {
+ this.disable();
+ });
+ },
+
+ enable: function() {
+ $.each( this.pickers, function() {
+ this.enable();
+ });
+ },
+
+ destroy: function() {
+ $.each( this.pickers, function() {
+ this.destroy();
+ });
+ this.pickers = null;
+ }
+ });
});
+ /**
+ * @fileOverview 文件属性封装
+ */
+ define('file',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ idPrefix = 'WU_FILE_',
+ idSuffix = 0,
+ rExt = /\.([^.]+)$/,
+ statusMap = {};
+
+ function gid() {
+ return idPrefix + idSuffix++;
+ }
+
+ /**
+ * 文件类
+ * @class File
+ * @constructor 构造函数
+ * @grammar new File( source ) => File
+ * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
+ */
+ function WUFile( source ) {
+
+ /**
+ * 文件名,包括扩展名(后缀)
+ * @property name
+ * @type {string}
+ */
+ this.name = source.name || 'Untitled';
+
+ /**
+ * 文件体积(字节)
+ * @property size
+ * @type {uint}
+ * @default 0
+ */
+ this.size = source.size || 0;
+
+ /**
+ * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
+ * @property type
+ * @type {string}
+ * @default 'application/octet-stream'
+ */
+ this.type = source.type || 'application/octet-stream';
+
+ /**
+ * 文件最后修改日期
+ * @property lastModifiedDate
+ * @type {int}
+ * @default 当前时间戳
+ */
+ this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
+
+ /**
+ * 文件ID,每个对象具有唯一ID,与文件名无关
+ * @property id
+ * @type {string}
+ */
+ this.id = gid();
+
+ /**
+ * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
+ * @property ext
+ * @type {string}
+ */
+ this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
+
+
+ /**
+ * 状态文字说明。在不同的status语境下有不同的用途。
+ * @property statusText
+ * @type {string}
+ */
+ this.statusText = '';
+
+ // 存储文件状态,防止通过属性直接修改
+ statusMap[ this.id ] = WUFile.Status.INITED;
+
+ this.source = source;
+ this.loaded = 0;
+
+ this.on( 'error', function( msg ) {
+ this.setStatus( WUFile.Status.ERROR, msg );
+ });
+ }
+
+ $.extend( WUFile.prototype, {
+
+ /**
+ * 设置状态,状态变化时会触发`change`事件。
+ * @method setStatus
+ * @grammar setStatus( status[, statusText] );
+ * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
+ * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
+ */
+ setStatus: function( status, text ) {
+
+ var prevStatus = statusMap[ this.id ];
+
+ typeof text !== 'undefined' && (this.statusText = text);
+
+ if ( status !== prevStatus ) {
+ statusMap[ this.id ] = status;
+ /**
+ * 文件状态变化
+ * @event statuschange
+ */
+ this.trigger( 'statuschange', status, prevStatus );
+ }
+
+ },
+
+ /**
+ * 获取文件状态
+ * @return {File.Status}
+ * @example
+ 文件状态具体包括以下几种类型:
+ {
+ // 初始化
+ INITED: 0,
+ // 已入队列
+ QUEUED: 1,
+ // 正在上传
+ PROGRESS: 2,
+ // 上传出错
+ ERROR: 3,
+ // 上传成功
+ COMPLETE: 4,
+ // 上传取消
+ CANCELLED: 5
+ }
+ */
+ getStatus: function() {
+ return statusMap[ this.id ];
+ },
+
+ /**
+ * 获取文件原始信息。
+ * @return {*}
+ */
+ getSource: function() {
+ return this.source;
+ },
+
+ destroy: function() {
+ this.off();
+ delete statusMap[ this.id ];
+ }
+ });
+
+ Mediator.installTo( WUFile.prototype );
+
+ /**
+ * 文件状态值,具体包括以下几种类型:
+ * * `inited` 初始状态
+ * * `queued` 已经进入队列, 等待上传
+ * * `progress` 上传中
+ * * `complete` 上传完成。
+ * * `error` 上传出错,可重试
+ * * `interrupt` 上传中断,可续传。
+ * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
+ * * `cancelled` 文件被移除。
+ * @property {Object} Status
+ * @namespace File
+ * @class File
+ * @static
+ */
+ WUFile.Status = {
+ INITED: 'inited', // 初始状态
+ QUEUED: 'queued', // 已经进入队列, 等待上传
+ PROGRESS: 'progress', // 上传中
+ ERROR: 'error', // 上传出错,可重试
+ COMPLETE: 'complete', // 上传完成。
+ CANCELLED: 'cancelled', // 上传取消。
+ INTERRUPT: 'interrupt', // 上传中断,可续传。
+ INVALID: 'invalid' // 文件不合格,不能重试上传。
+ };
+
+ return WUFile;
+ });
- /**
- * @fileOverview 文件队列
- */
- define('queue',[
- 'base',
- 'mediator',
- 'file'
- ], function( Base, Mediator, WUFile ) {
-
- var $ = Base.$,
- STATUS = WUFile.Status;
-
- /**
- * 文件队列, 用来存储各个状态中的文件。
- * @class Queue
- * @extends Mediator
- */
- function Queue() {
-
- /**
- * 统计文件数。
- * * `numOfQueue` 队列中的文件数。
- * * `numOfSuccess` 上传成功的文件数
- * * `numOfCancel` 被取消的文件数
- * * `numOfProgress` 正在上传中的文件数
- * * `numOfUploadFailed` 上传错误的文件数。
- * * `numOfInvalid` 无效的文件数。
- * * `numOfDeleted` 被移除的文件数。
- * * `numOfInterrupt` 被中断的文件数。
- * @property {Object} stats
- */
- this.stats = {
- numOfQueue: 0,
- numOfSuccess: 0,
- numOfCancel: 0,
- numOfProgress: 0,
- numOfUploadFailed: 0,
- numOfInvalid: 0,
- numOfDeleted: 0,
- numOfInterrupt: 0
- };
-
- // 上传队列,仅包括等待上传的文件
- this._queue = [];
-
- // 存储所有文件
- this._map = {};
- }
-
- $.extend( Queue.prototype, {
-
- /**
- * 将新文件加入对队列尾部
- *
- * @method append
- * @param {File} file 文件对象
- */
- append: function( file ) {
- this._queue.push( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 将新文件加入对队列头部
- *
- * @method prepend
- * @param {File} file 文件对象
- */
- prepend: function( file ) {
- this._queue.unshift( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 获取文件对象
- *
- * @method getFile
- * @param {String} fileId 文件ID
- * @return {File}
- */
- getFile: function( fileId ) {
- if ( typeof fileId !== 'string' ) {
- return fileId;
- }
- return this._map[ fileId ];
- },
-
- /**
- * 从队列中取出一个指定状态的文件。
- * @grammar fetch( status ) => File
- * @method fetch
- * @param {String} status [文件状态值](#WebUploader:File:File.Status)
- * @return {File} [File](#WebUploader:File)
- */
- fetch: function( status ) {
- var len = this._queue.length,
- i, file;
-
- status = status || STATUS.QUEUED;
-
- for ( i = 0; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( status === file.getStatus() ) {
- return file;
- }
- }
-
- return null;
- },
-
- /**
- * 对队列进行排序,能够控制文件上传顺序。
- * @grammar sort( fn ) => undefined
- * @method sort
- * @param {Function} fn 排序方法
- */
- sort: function( fn ) {
- if ( typeof fn === 'function' ) {
- this._queue.sort( fn );
- }
- },
-
- /**
- * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
- * @grammar getFiles( [status1[, status2 ...]] ) => Array
- * @method getFiles
- * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
- */
- getFiles: function() {
- var sts = [].slice.call( arguments, 0 ),
- ret = [],
- i = 0,
- len = this._queue.length,
- file;
-
- for ( ; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
- continue;
- }
-
- ret.push( file );
- }
-
- return ret;
- },
-
- /**
- * 在队列中删除文件。
- * @grammar removeFile( file ) => Array
- * @method removeFile
- * @param {File} 文件对象。
- */
- removeFile: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( existing ) {
- delete this._map[ file.id ];
- this._delFile(file);
- file.destroy();
- this.stats.numOfDeleted++;
-
- }
- },
-
- _fileAdded: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( !existing ) {
- this._map[ file.id ] = file;
-
- file.on( 'statuschange', function( cur, pre ) {
- me._onFileStatusChange( cur, pre );
- });
- }
- },
-
- _delFile : function(file){
- for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
- if(this._queue[i] == file){
- this._queue.splice(i,1);
- break;
- }
- }
- },
-
- _onFileStatusChange: function( curStatus, preStatus ) {
- var stats = this.stats;
-
- switch ( preStatus ) {
- case STATUS.PROGRESS:
- stats.numOfProgress--;
- break;
-
- case STATUS.QUEUED:
- stats.numOfQueue --;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed--;
- break;
-
- case STATUS.INVALID:
- stats.numOfInvalid--;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt--;
- break;
- }
-
- switch ( curStatus ) {
- case STATUS.QUEUED:
- stats.numOfQueue++;
- break;
-
- case STATUS.PROGRESS:
- stats.numOfProgress++;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed++;
- break;
-
- case STATUS.COMPLETE:
- stats.numOfSuccess++;
- break;
-
- case STATUS.CANCELLED:
- stats.numOfCancel++;
- break;
-
-
- case STATUS.INVALID:
- stats.numOfInvalid++;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt++;
- break;
- }
- }
-
- });
-
- Mediator.installTo( Queue.prototype );
-
- return Queue;
- });
-
- /**
- * @fileOverview 队列
- */
- define('widgets/queue',[
- 'base',
- 'uploader',
- 'queue',
- 'file',
- 'lib/file',
- 'runtime/client',
- 'widgets/widget'
- ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
-
- var $ = Base.$,
- rExt = /\.\w+$/,
- Status = WUFile.Status;
-
- return Uploader.register({
- name: 'queue',
-
- init: function( opts ) {
- var me = this,
- deferred, len, i, item, arr, accept, runtime;
-
- if ( $.isPlainObject( opts.accept ) ) {
- opts.accept = [ opts.accept ];
- }
-
- // accept中的中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
-
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].extensions;
- item && arr.push( item );
- }
-
- if ( arr.length ) {
- accept = '\\.' + arr.join(',')
- .replace( /,/g, '$|\\.' )
- .replace( /\*/g, '.*' ) + '$';
- }
-
- me.accept = new RegExp( accept, 'i' );
- }
-
- me.queue = new Queue();
- me.stats = me.queue.stats;
-
- // 如果当前不是html5运行时,那就算了。
- // 不执行后续操作
- if ( this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- // 创建一个 html5 运行时的 placeholder
- // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
- deferred = Base.Deferred();
- this.placeholder = runtime = new RuntimeClient('Placeholder');
- runtime.connectRuntime({
- runtimeOrder: 'html5'
- }, function() {
- me._ruid = runtime.getRuid();
- deferred.resolve();
- });
- return deferred.promise();
- },
-
-
- // 为了支持外部直接添加一个原生File对象。
- _wrapFile: function( file ) {
- if ( !(file instanceof WUFile) ) {
-
- if ( !(file instanceof File) ) {
- if ( !this._ruid ) {
- throw new Error('Can\'t add external files.');
- }
- file = new File( this._ruid, file );
- }
-
- file = new WUFile( file );
- }
-
- return file;
- },
-
- // 判断文件是否可以被加入队列
- acceptFile: function( file ) {
- var invalid = !file || !file.size || this.accept &&
-
- // 如果名字中有后缀,才做后缀白名单处理。
- rExt.exec( file.name ) && !this.accept.test( file.name );
-
- return !invalid;
- },
-
-
- /**
- * @event beforeFileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
- * @for Uploader
- */
-
- /**
- * @event fileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列以后触发。
- * @for Uploader
- */
-
- _addFile: function( file ) {
- var me = this;
-
- file = me._wrapFile( file );
-
- // 不过类型判断允许不允许,先派送 `beforeFileQueued`
- if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
- return;
- }
-
- // 类型不匹配,则派送错误事件,并返回。
- if ( !me.acceptFile( file ) ) {
- me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
- return;
- }
-
- me.queue.append( file );
- me.owner.trigger( 'fileQueued', file );
- return file;
- },
-
- getFile: function( fileId ) {
- return this.queue.getFile( fileId );
- },
-
- /**
- * @event filesQueued
- * @param {File} files 数组,内容为原始File(lib/File)对象。
- * @description 当一批文件添加进队列以后触发。
- * @for Uploader
- */
-
- /**
- * @property {Boolean} [auto=false]
- * @namespace options
- * @for Uploader
- * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
- *
- */
-
- /**
- * @method addFiles
- * @grammar addFiles( file ) => undefined
- * @grammar addFiles( [file1, file2 ...] ) => undefined
- * @param {Array of File or File} [files] Files 对象 数组
- * @description 添加文件到队列
- * @for Uploader
- */
- addFile: function( files ) {
- var me = this;
-
- if ( !files.length ) {
- files = [ files ];
- }
-
- files = $.map( files, function( file ) {
- return me._addFile( file );
- });
-
- if ( files.length ) {
-
- me.owner.trigger( 'filesQueued', files );
-
- if ( me.options.auto ) {
- setTimeout(function() {
- me.request('start-upload');
- }, 20 );
- }
- }
- },
-
- getStats: function() {
- return this.stats;
- },
-
- /**
- * @event fileDequeued
- * @param {File} file File对象
- * @description 当文件被移除队列后触发。
- * @for Uploader
- */
-
- /**
- * @method removeFile
- * @grammar removeFile( file ) => undefined
- * @grammar removeFile( id ) => undefined
- * @grammar removeFile( file, true ) => undefined
- * @grammar removeFile( id, true ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.removeFile( file );
- * })
- */
- removeFile: function( file, remove ) {
- var me = this;
-
- file = file.id ? file : me.queue.getFile( file );
-
- this.request( 'cancel-file', file );
-
- if ( remove ) {
- this.queue.removeFile( file );
- }
- },
-
- /**
- * @method getFiles
- * @grammar getFiles() => Array
- * @grammar getFiles( status1, status2, status... ) => Array
- * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
- * @for Uploader
- * @example
- * console.log( uploader.getFiles() ); // => all files
- * console.log( uploader.getFiles('error') ) // => all error files.
- */
- getFiles: function() {
- return this.queue.getFiles.apply( this.queue, arguments );
- },
-
- fetchFile: function() {
- return this.queue.fetch.apply( this.queue, arguments );
- },
-
- /**
- * @method retry
- * @grammar retry() => undefined
- * @grammar retry( file ) => undefined
- * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
- * @for Uploader
- * @example
- * function retry() {
- * uploader.retry();
- * }
- */
- retry: function( file, noForceStart ) {
- var me = this,
- files, i, len;
-
- if ( file ) {
- file = file.id ? file : me.queue.getFile( file );
- file.setStatus( Status.QUEUED );
- noForceStart || me.request('start-upload');
- return;
- }
-
- files = me.queue.getFiles( Status.ERROR );
- i = 0;
- len = files.length;
-
- for ( ; i < len; i++ ) {
- file = files[ i ];
- file.setStatus( Status.QUEUED );
- }
-
- me.request('start-upload');
- },
-
- /**
- * @method sort
- * @grammar sort( fn ) => undefined
- * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
- * @for Uploader
- */
- sortFiles: function() {
- return this.queue.sort.apply( this.queue, arguments );
- },
-
- /**
- * @event reset
- * @description 当 uploader 被重置的时候触发。
- * @for Uploader
- */
-
- /**
- * @method reset
- * @grammar reset() => undefined
- * @description 重置uploader。目前只重置了队列。
- * @for Uploader
- * @example
- * uploader.reset();
- */
- reset: function() {
- this.owner.trigger('reset');
- this.queue = new Queue();
- this.stats = this.queue.stats;
- },
-
- destroy: function() {
- this.reset();
- this.placeholder && this.placeholder.destroy();
- }
- });
+ /**
+ * @fileOverview 文件队列
+ */
+ define('queue',[
+ 'base',
+ 'mediator',
+ 'file'
+ ], function( Base, Mediator, WUFile ) {
+
+ var $ = Base.$,
+ STATUS = WUFile.Status;
+
+ /**
+ * 文件队列, 用来存储各个状态中的文件。
+ * @class Queue
+ * @extends Mediator
+ */
+ function Queue() {
+
+ /**
+ * 统计文件数。
+ * * `numOfQueue` 队列中的文件数。
+ * * `numOfSuccess` 上传成功的文件数
+ * * `numOfCancel` 被取消的文件数
+ * * `numOfProgress` 正在上传中的文件数
+ * * `numOfUploadFailed` 上传错误的文件数。
+ * * `numOfInvalid` 无效的文件数。
+ * * `numOfDeleted` 被移除的文件数。
+ * * `numOfInterrupt` 被中断的文件数。
+ * @property {Object} stats
+ */
+ this.stats = {
+ numOfQueue: 0,
+ numOfSuccess: 0,
+ numOfCancel: 0,
+ numOfProgress: 0,
+ numOfUploadFailed: 0,
+ numOfInvalid: 0,
+ numOfDeleted: 0,
+ numOfInterrupt: 0
+ };
+
+ // 上传队列,仅包括等待上传的文件
+ this._queue = [];
+
+ // 存储所有文件
+ this._map = {};
+ }
+
+ $.extend( Queue.prototype, {
+
+ /**
+ * 将新文件加入对队列尾部
+ *
+ * @method append
+ * @param {File} file 文件对象
+ */
+ append: function( file ) {
+ this._queue.push( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 将新文件加入对队列头部
+ *
+ * @method prepend
+ * @param {File} file 文件对象
+ */
+ prepend: function( file ) {
+ this._queue.unshift( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 获取文件对象
+ *
+ * @method getFile
+ * @param {String} fileId 文件ID
+ * @return {File}
+ */
+ getFile: function( fileId ) {
+ if ( typeof fileId !== 'string' ) {
+ return fileId;
+ }
+ return this._map[ fileId ];
+ },
+
+ /**
+ * 从队列中取出一个指定状态的文件。
+ * @grammar fetch( status ) => File
+ * @method fetch
+ * @param {String} status [文件状态值](#WebUploader:File:File.Status)
+ * @return {File} [File](#WebUploader:File)
+ */
+ fetch: function( status ) {
+ var len = this._queue.length,
+ i, file;
+
+ status = status || STATUS.QUEUED;
+
+ for ( i = 0; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( status === file.getStatus() ) {
+ return file;
+ }
+ }
+
+ return null;
+ },
+
+ /**
+ * 对队列进行排序,能够控制文件上传顺序。
+ * @grammar sort( fn ) => undefined
+ * @method sort
+ * @param {Function} fn 排序方法
+ */
+ sort: function( fn ) {
+ if ( typeof fn === 'function' ) {
+ this._queue.sort( fn );
+ }
+ },
+
+ /**
+ * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
+ * @grammar getFiles( [status1[, status2 ...]] ) => Array
+ * @method getFiles
+ * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
+ */
+ getFiles: function() {
+ var sts = [].slice.call( arguments, 0 ),
+ ret = [],
+ i = 0,
+ len = this._queue.length,
+ file;
+
+ for ( ; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
+ continue;
+ }
+
+ ret.push( file );
+ }
+
+ return ret;
+ },
+
+ /**
+ * 在队列中删除文件。
+ * @grammar removeFile( file ) => Array
+ * @method removeFile
+ * @param {File} 文件对象。
+ */
+ removeFile: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( existing ) {
+ delete this._map[ file.id ];
+ this._delFile(file);
+ file.destroy();
+ this.stats.numOfDeleted++;
+
+ }
+ },
+
+ _fileAdded: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( !existing ) {
+ this._map[ file.id ] = file;
+
+ file.on( 'statuschange', function( cur, pre ) {
+ me._onFileStatusChange( cur, pre );
+ });
+ }
+ },
+
+ _delFile : function(file){
+ for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
+ if(this._queue[i] == file){
+ this._queue.splice(i,1);
+ break;
+ }
+ }
+ },
+
+ _onFileStatusChange: function( curStatus, preStatus ) {
+ var stats = this.stats;
+
+ switch ( preStatus ) {
+ case STATUS.PROGRESS:
+ stats.numOfProgress--;
+ break;
+
+ case STATUS.QUEUED:
+ stats.numOfQueue --;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed--;
+ break;
+
+ case STATUS.INVALID:
+ stats.numOfInvalid--;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt--;
+ break;
+ }
+
+ switch ( curStatus ) {
+ case STATUS.QUEUED:
+ stats.numOfQueue++;
+ break;
+
+ case STATUS.PROGRESS:
+ stats.numOfProgress++;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed++;
+ break;
+
+ case STATUS.COMPLETE:
+ stats.numOfSuccess++;
+ break;
+
+ case STATUS.CANCELLED:
+ stats.numOfCancel++;
+ break;
+
+
+ case STATUS.INVALID:
+ stats.numOfInvalid++;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt++;
+ break;
+ }
+ }
+
+ });
+
+ Mediator.installTo( Queue.prototype );
+
+ return Queue;
+ });
+ /**
+ * @fileOverview 队列
+ */
+ define('widgets/queue',[
+ 'base',
+ 'uploader',
+ 'queue',
+ 'file',
+ 'lib/file',
+ 'runtime/client',
+ 'widgets/widget'
+ ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
+
+ var $ = Base.$,
+ rExt = /\.\w+$/,
+ Status = WUFile.Status;
+
+ return Uploader.register({
+ name: 'queue',
+
+ init: function( opts ) {
+ var me = this,
+ deferred, len, i, item, arr, accept, runtime;
+
+ if ( $.isPlainObject( opts.accept ) ) {
+ opts.accept = [ opts.accept ];
+ }
+
+ // accept中的中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].extensions;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = '\\.' + arr.join(',')
+ .replace( /,/g, '$|\\.' )
+ .replace( /\*/g, '.*' ) + '$';
+ }
+
+ me.accept = new RegExp( accept, 'i' );
+ }
+
+ me.queue = new Queue();
+ me.stats = me.queue.stats;
+
+ // 如果当前不是html5运行时,那就算了。
+ // 不执行后续操作
+ if ( this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ // 创建一个 html5 运行时的 placeholder
+ // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
+ deferred = Base.Deferred();
+ this.placeholder = runtime = new RuntimeClient('Placeholder');
+ runtime.connectRuntime({
+ runtimeOrder: 'html5'
+ }, function() {
+ me._ruid = runtime.getRuid();
+ deferred.resolve();
+ });
+ return deferred.promise();
+ },
+
+
+ // 为了支持外部直接添加一个原生File对象。
+ _wrapFile: function( file ) {
+ if ( !(file instanceof WUFile) ) {
+
+ if ( !(file instanceof File) ) {
+ if ( !this._ruid ) {
+ throw new Error('Can\'t add external files.');
+ }
+ file = new File( this._ruid, file );
+ }
+
+ file = new WUFile( file );
+ }
+
+ return file;
+ },
+
+ // 判断文件是否可以被加入队列
+ acceptFile: function( file ) {
+ var invalid = !file || !file.size || this.accept &&
+
+ // 如果名字中有后缀,才做后缀白名单处理。
+ rExt.exec( file.name ) && !this.accept.test( file.name );
+
+ return !invalid;
+ },
+
+
+ /**
+ * @event beforeFileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
+ * @for Uploader
+ */
+
+ /**
+ * @event fileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列以后触发。
+ * @for Uploader
+ */
+
+ _addFile: function( file ) {
+ var me = this;
+
+ file = me._wrapFile( file );
+
+ // 不过类型判断允许不允许,先派送 `beforeFileQueued`
+ if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
+ return;
+ }
+
+ // 类型不匹配,则派送错误事件,并返回。
+ if ( !me.acceptFile( file ) ) {
+ me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
+ return;
+ }
+
+ me.queue.append( file );
+ me.owner.trigger( 'fileQueued', file );
+ return file;
+ },
+
+ getFile: function( fileId ) {
+ return this.queue.getFile( fileId );
+ },
+
+ /**
+ * @event filesQueued
+ * @param {File} files 数组,内容为原始File(lib/File)对象。
+ * @description 当一批文件添加进队列以后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @property {Boolean} [auto=false]
+ * @namespace options
+ * @for Uploader
+ * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
+ *
+ */
+
+ /**
+ * @method addFiles
+ * @grammar addFiles( file ) => undefined
+ * @grammar addFiles( [file1, file2 ...] ) => undefined
+ * @param {Array of File or File} [files] Files 对象 数组
+ * @description 添加文件到队列
+ * @for Uploader
+ */
+ addFile: function( files ) {
+ var me = this;
+
+ if ( !files.length ) {
+ files = [ files ];
+ }
+
+ files = $.map( files, function( file ) {
+ return me._addFile( file );
+ });
+
+ if ( files.length ) {
+
+ me.owner.trigger( 'filesQueued', files );
+
+ if ( me.options.auto ) {
+ setTimeout(function() {
+ me.request('start-upload');
+ }, 20 );
+ }
+ }
+ },
+
+ getStats: function() {
+ return this.stats;
+ },
+
+ /**
+ * @event fileDequeued
+ * @param {File} file File对象
+ * @description 当文件被移除队列后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method removeFile
+ * @grammar removeFile( file ) => undefined
+ * @grammar removeFile( id ) => undefined
+ * @grammar removeFile( file, true ) => undefined
+ * @grammar removeFile( id, true ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.removeFile( file );
+ * })
+ */
+ removeFile: function( file, remove ) {
+ var me = this;
+
+ file = file.id ? file : me.queue.getFile( file );
+
+ this.request( 'cancel-file', file );
+
+ if ( remove ) {
+ this.queue.removeFile( file );
+ }
+ },
+
+ /**
+ * @method getFiles
+ * @grammar getFiles() => Array
+ * @grammar getFiles( status1, status2, status... ) => Array
+ * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
+ * @for Uploader
+ * @example
+ * console.log( uploader.getFiles() ); // => all files
+ * console.log( uploader.getFiles('error') ) // => all error files.
+ */
+ getFiles: function() {
+ return this.queue.getFiles.apply( this.queue, arguments );
+ },
+
+ fetchFile: function() {
+ return this.queue.fetch.apply( this.queue, arguments );
+ },
+
+ /**
+ * @method retry
+ * @grammar retry() => undefined
+ * @grammar retry( file ) => undefined
+ * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
+ * @for Uploader
+ * @example
+ * function retry() {
+ * uploader.retry();
+ * }
+ */
+ retry: function( file, noForceStart ) {
+ var me = this,
+ files, i, len;
+
+ if ( file ) {
+ file = file.id ? file : me.queue.getFile( file );
+ file.setStatus( Status.QUEUED );
+ noForceStart || me.request('start-upload');
+ return;
+ }
+
+ files = me.queue.getFiles( Status.ERROR );
+ i = 0;
+ len = files.length;
+
+ for ( ; i < len; i++ ) {
+ file = files[ i ];
+ file.setStatus( Status.QUEUED );
+ }
+
+ me.request('start-upload');
+ },
+
+ /**
+ * @method sort
+ * @grammar sort( fn ) => undefined
+ * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
+ * @for Uploader
+ */
+ sortFiles: function() {
+ return this.queue.sort.apply( this.queue, arguments );
+ },
+
+ /**
+ * @event reset
+ * @description 当 uploader 被重置的时候触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method reset
+ * @grammar reset() => undefined
+ * @description 重置uploader。目前只重置了队列。
+ * @for Uploader
+ * @example
+ * uploader.reset();
+ */
+ reset: function() {
+ this.owner.trigger('reset');
+ this.queue = new Queue();
+ this.stats = this.queue.stats;
+ },
+
+ destroy: function() {
+ this.reset();
+ this.placeholder && this.placeholder.destroy();
+ }
+ });
+
});
- /**
- * @fileOverview 添加获取Runtime相关信息的方法。
- */
- define('widgets/runtime',[
- 'uploader',
- 'runtime/runtime',
- 'widgets/widget'
- ], function( Uploader, Runtime ) {
-
- Uploader.support = function() {
- return Runtime.hasRuntime.apply( Runtime, arguments );
- };
-
- /**
- * @property {Object} [runtimeOrder=html5,flash]
- * @namespace options
- * @for Uploader
- * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
- *
- * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
- */
-
- return Uploader.register({
- name: 'runtime',
-
- init: function() {
- if ( !this.predictRuntimeType() ) {
- throw Error('Runtime Error');
- }
- },
-
- /**
- * 预测Uploader将采用哪个`Runtime`
- * @grammar predictRuntimeType() => String
- * @method predictRuntimeType
- * @for Uploader
- */
- predictRuntimeType: function() {
- var orders = this.options.runtimeOrder || Runtime.orders,
- type = this.type,
- i, len;
-
- if ( !type ) {
- orders = orders.split( /\s*,\s*/g );
-
- for ( i = 0, len = orders.length; i < len; i++ ) {
- if ( Runtime.hasRuntime( orders[ i ] ) ) {
- this.type = type = orders[ i ];
- break;
- }
- }
- }
-
- return type;
- }
- });
+ /**
+ * @fileOverview 添加获取Runtime相关信息的方法。
+ */
+ define('widgets/runtime',[
+ 'uploader',
+ 'runtime/runtime',
+ 'widgets/widget'
+ ], function( Uploader, Runtime ) {
+
+ Uploader.support = function() {
+ return Runtime.hasRuntime.apply( Runtime, arguments );
+ };
+
+ /**
+ * @property {Object} [runtimeOrder=html5,flash]
+ * @namespace options
+ * @for Uploader
+ * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
+ *
+ * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
+ */
+
+ return Uploader.register({
+ name: 'runtime',
+
+ init: function() {
+ if ( !this.predictRuntimeType() ) {
+ throw Error('Runtime Error');
+ }
+ },
+
+ /**
+ * 预测Uploader将采用哪个`Runtime`
+ * @grammar predictRuntimeType() => String
+ * @method predictRuntimeType
+ * @for Uploader
+ */
+ predictRuntimeType: function() {
+ var orders = this.options.runtimeOrder || Runtime.orders,
+ type = this.type,
+ i, len;
+
+ if ( !type ) {
+ orders = orders.split( /\s*,\s*/g );
+
+ for ( i = 0, len = orders.length; i < len; i++ ) {
+ if ( Runtime.hasRuntime( orders[ i ] ) ) {
+ this.type = type = orders[ i ];
+ break;
+ }
+ }
+ }
+
+ return type;
+ }
+ });
});
- /**
- * @fileOverview Transport
- */
- define('lib/transport',[
- 'base',
- 'runtime/client',
- 'mediator'
- ], function( Base, RuntimeClient, Mediator ) {
-
- var $ = Base.$;
+ /**
+ * @fileOverview Transport
+ */
+ define('lib/transport',[
+ 'base',
+ 'runtime/client',
+ 'mediator'
+ ], function( Base, RuntimeClient, Mediator ) {
+
+ var $ = Base.$;
+
+ function Transport( opts ) {
+ var me = this;
+
+ opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
+ RuntimeClient.call( this, 'Transport' );
+
+ this._blob = null;
+ this._formData = opts.formData || {};
+ this._headers = opts.headers || {};
+
+ this.on( 'progress', this._timeout );
+ this.on( 'load error', function() {
+ me.trigger( 'progress', 1 );
+ clearTimeout( me._timer );
+ });
+ }
+
+ Transport.options = {
+ server: '',
+ method: 'POST',
+
+ // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
+ withCredentials: false,
+ fileVal: 'file',
+ timeout: 2 * 60 * 1000, // 2分钟
+ formData: {},
+ headers: {},
+ sendAsBinary: false
+ };
+
+ $.extend( Transport.prototype, {
+
+ // 添加Blob, 只能添加一次,最后一次有效。
+ appendBlob: function( key, blob, filename ) {
+ var me = this,
+ opts = me.options;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ });
+
+ me._blob = blob;
+ opts.fileVal = key || opts.fileVal;
+ opts.filename = filename || opts.filename;
+ },
+
+ // 添加其他字段
+ append: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._formData, key );
+ } else {
+ this._formData[ key ] = value;
+ }
+ },
+
+ setRequestHeader: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._headers, key );
+ } else {
+ this._headers[ key ] = value;
+ }
+ },
+
+ send: function( method ) {
+ this.exec( 'send', method );
+ this._timeout();
+ },
+
+ abort: function() {
+ clearTimeout( this._timer );
+ return this.exec('abort');
+ },
+
+ destroy: function() {
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ },
+
+ getResponseHeaders: function() {
+ return this.exec('getResponseHeaders');
+ },
+
+ getResponse: function() {
+ return this.exec('getResponse');
+ },
+
+ getResponseAsJson: function() {
+ return this.exec('getResponseAsJson');
+ },
+
+ getStatus: function() {
+ return this.exec('getStatus');
+ },
+
+ _timeout: function() {
+ var me = this,
+ duration = me.options.timeout;
+
+ if ( !duration ) {
+ return;
+ }
+
+ clearTimeout( me._timer );
+ me._timer = setTimeout(function() {
+ me.abort();
+ me.trigger( 'error', 'timeout' );
+ }, duration );
+ }
+
+ });
+
+ // 让Transport具备事件功能。
+ Mediator.installTo( Transport.prototype );
+
+ return Transport;
+ });
- function Transport( opts ) {
- var me = this;
-
- opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
- RuntimeClient.call( this, 'Transport' );
-
- this._blob = null;
- this._formData = opts.formData || {};
- this._headers = opts.headers || {};
-
- this.on( 'progress', this._timeout );
- this.on( 'load error', function() {
- me.trigger( 'progress', 1 );
- clearTimeout( me._timer );
- });
- }
-
- Transport.options = {
- server: '',
- method: 'POST',
-
- // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
- withCredentials: false,
- fileVal: 'file',
- timeout: 2 * 60 * 1000, // 2分钟
- formData: {},
- headers: {},
- sendAsBinary: false
- };
-
- $.extend( Transport.prototype, {
-
- // 添加Blob, 只能添加一次,最后一次有效。
- appendBlob: function( key, blob, filename ) {
- var me = this,
- opts = me.options;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- });
-
- me._blob = blob;
- opts.fileVal = key || opts.fileVal;
- opts.filename = filename || opts.filename;
- },
-
- // 添加其他字段
- append: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._formData, key );
- } else {
- this._formData[ key ] = value;
- }
- },
-
- setRequestHeader: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._headers, key );
- } else {
- this._headers[ key ] = value;
- }
- },
-
- send: function( method ) {
- this.exec( 'send', method );
- this._timeout();
- },
-
- abort: function() {
- clearTimeout( this._timer );
- return this.exec('abort');
- },
-
- destroy: function() {
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- },
-
- getResponseHeaders: function() {
- return this.exec('getResponseHeaders');
- },
-
- getResponse: function() {
- return this.exec('getResponse');
- },
-
- getResponseAsJson: function() {
- return this.exec('getResponseAsJson');
- },
-
- getStatus: function() {
- return this.exec('getStatus');
- },
-
- _timeout: function() {
- var me = this,
- duration = me.options.timeout;
-
- if ( !duration ) {
- return;
- }
-
- clearTimeout( me._timer );
- me._timer = setTimeout(function() {
- me.abort();
- me.trigger( 'error', 'timeout' );
- }, duration );
- }
-
- });
-
- // 让Transport具备事件功能。
- Mediator.installTo( Transport.prototype );
-
- return Transport;
- });
-
- /**
- * @fileOverview 负责文件上传相关。
- */
- define('widgets/upload',[
- 'base',
- 'uploader',
- 'file',
- 'lib/transport',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile, Transport ) {
-
- var $ = Base.$,
- isPromise = Base.isPromise,
- Status = WUFile.Status;
-
- // 添加默认配置项
- $.extend( Uploader.options, {
-
-
- /**
- * @property {Boolean} [prepareNextFile=false]
- * @namespace options
- * @for Uploader
- * @description 是否允许在文件传输时提前把下一个文件准备好。
- * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
- * 如果能提前在当前文件传输期处理,可以节省总体耗时。
- */
- prepareNextFile: false,
-
- /**
- * @property {Boolean} [chunked=false]
- * @namespace options
- * @for Uploader
- * @description 是否要分片处理大文件上传。
- */
- chunked: false,
-
- /**
- * @property {Boolean} [chunkSize=5242880]
- * @namespace options
- * @for Uploader
- * @description 如果要分片,分多大一片? 默认大小为5M.
- */
- chunkSize: 5 * 1024 * 1024,
-
- /**
- * @property {Boolean} [chunkRetry=2]
- * @namespace options
- * @for Uploader
- * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
- */
- chunkRetry: 2,
-
- /**
- * @property {Number} [chunkRetryDelay=1000]
- * @namespace options
- * @for Uploader
- * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
- */
- chunkRetryDelay: 1000,
-
- /**
- * @property {Boolean} [threads=3]
- * @namespace options
- * @for Uploader
- * @description 上传并发数。允许同时最大上传进程数。
- */
- threads: 3,
-
-
- /**
- * @property {Object} [formData={}]
- * @namespace options
- * @for Uploader
- * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
- */
- formData: {}
-
- /**
- * @property {Object} [fileVal='file']
- * @namespace options
- * @for Uploader
- * @description 设置文件上传域的name。
- */
-
- /**
- * @property {Object} [method=POST]
- * @namespace options
- * @for Uploader
- * @description 文件上传方式,`POST` 或者 `GET`。
- */
-
- /**
- * @property {Object} [sendAsBinary=false]
- * @namespace options
- * @for Uploader
- * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
- * 其他参数在$_GET数组中。
- */
- });
-
- // 负责将文件切片。
- function CuteFile( file, chunkSize ) {
- var pending = [],
- blob = file.source,
- total = blob.size,
- chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
- start = 0,
- index = 0,
- len, api;
-
- api = {
- file: file,
-
- has: function() {
- return !!pending.length;
- },
-
- shift: function() {
- return pending.shift();
- },
-
- unshift: function( block ) {
- pending.unshift( block );
- }
- };
-
- while ( index < chunks ) {
- len = Math.min( chunkSize, total - start );
-
- pending.push({
- file: file,
- start: start,
- end: chunkSize ? (start + len) : total,
- total: total,
- chunks: chunks,
- chunk: index++,
- cuted: api
- });
- start += len;
- }
-
- file.blocks = pending.concat();
- file.remaning = pending.length;
-
- return api;
- }
-
- Uploader.register({
- name: 'upload',
-
- init: function() {
- var owner = this.owner,
- me = this;
-
- this.runing = false;
- this.progress = false;
-
- owner
- .on( 'startUpload', function() {
- me.progress = true;
- })
- .on( 'uploadFinished', function() {
- me.progress = false;
- });
-
- // 记录当前正在传的数据,跟threads相关
- this.pool = [];
-
- // 缓存分好片的文件。
- this.stack = [];
-
- // 缓存即将上传的文件。
- this.pending = [];
-
- // 跟踪还有多少分片在上传中但是没有完成上传。
- this.remaning = 0;
- this.__tick = Base.bindFn( this._tick, this );
-
- // 销毁上传相关的属性。
- owner.on( 'uploadComplete', function( file ) {
-
- // 把其他块取消了。
- file.blocks && $.each( file.blocks, function( _, v ) {
- v.transport && (v.transport.abort(), v.transport.destroy());
- delete v.transport;
- });
-
- delete file.blocks;
- delete file.remaning;
- });
- },
-
- reset: function() {
- this.request( 'stop-upload', true );
- this.runing = false;
- this.pool = [];
- this.stack = [];
- this.pending = [];
- this.remaning = 0;
- this._trigged = false;
- this._promise = null;
- },
-
- /**
- * @event startUpload
- * @description 当开始上传流程时触发。
- * @for Uploader
- */
-
- /**
- * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
- *
- * 可以指定开始某一个文件。
- * @grammar upload() => undefined
- * @grammar upload( file | fileId) => undefined
- * @method upload
- * @for Uploader
- */
- startUpload: function(file) {
- var me = this;
-
- // 移出invalid的文件
- $.each( me.request( 'get-files', Status.INVALID ), function() {
- me.request( 'remove-file', this );
- });
-
- // 如果指定了开始某个文件,则只开始指定的文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if (file.getStatus() === Status.INTERRUPT) {
- file.setStatus( Status.QUEUED );
-
- $.each( me.pool, function( _, v ) {
-
- // 之前暂停过。
- if (v.file !== file) {
- return;
- }
-
- v.transport && v.transport.send();
- file.setStatus( Status.PROGRESS );
- });
-
-
- } else if (file.getStatus() !== Status.PROGRESS) {
- file.setStatus( Status.QUEUED );
- }
- } else {
- $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
- this.setStatus( Status.QUEUED );
- });
- }
-
- if ( me.runing ) {
- me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
- return Base.nextTick( me.__tick );
- }
-
- me.runing = true;
- var files = [];
-
- // 如果有暂停的,则续传
- file || $.each( me.pool, function( _, v ) {
- var file = v.file;
-
- if ( file.getStatus() === Status.INTERRUPT ) {
- me._trigged = false;
- files.push(file);
-
- if (v.waiting) {
- return;
- }
-
- // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
- v.transport ? v.transport.send() : me._doSend(v);
- }
- });
-
- $.each(files, function() {
- this.setStatus( Status.PROGRESS );
- });
-
- file || $.each( me.request( 'get-files',
- Status.INTERRUPT ), function() {
- this.setStatus( Status.PROGRESS );
- });
-
- me._trigged = false;
- Base.nextTick( me.__tick );
- me.owner.trigger('startUpload');
- },
-
- /**
- * @event stopUpload
- * @description 当开始上传流程暂停时触发。
- * @for Uploader
- */
-
- /**
- * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
- *
- * 如果第一个参数是文件,则只暂停指定文件。
- * @grammar stop() => undefined
- * @grammar stop( true ) => undefined
- * @grammar stop( file ) => undefined
- * @method stop
- * @for Uploader
- */
- stopUpload: function( file, interrupt ) {
- var me = this;
-
- if (file === true) {
- interrupt = file;
- file = null;
- }
-
- if ( me.runing === false ) {
- return;
- }
-
- // 如果只是暂停某个文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if ( file.getStatus() !== Status.PROGRESS &&
- file.getStatus() !== Status.QUEUED ) {
- return;
- }
-
- file.setStatus( Status.INTERRUPT );
-
-
- $.each( me.pool, function( _, v ) {
-
- // 只 abort 指定的文件,每一个分片。
- if (v.file === file) {
- v.transport && v.transport.abort();
-
- if (interrupt) {
- me._putback(v);
- me._popBlock(v);
- }
- }
- });
-
- me.owner.trigger('stopUpload', file);// 暂停,trigger event
-
- return Base.nextTick( me.__tick );
- }
-
- me.runing = false;
-
- // 正在准备中的文件。
- if (this._promise && this._promise.file) {
- this._promise.file.setStatus( Status.INTERRUPT );
- }
-
- interrupt && $.each( me.pool, function( _, v ) {
- v.transport && v.transport.abort();
- v.file.setStatus( Status.INTERRUPT );
- });
-
- me.owner.trigger('stopUpload');
- },
-
- /**
- * @method cancelFile
- * @grammar cancelFile( file ) => undefined
- * @grammar cancelFile( id ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 标记文件状态为已取消, 同时将中断文件传输。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.cancelFile( file );
- * })
- */
- cancelFile: function( file ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- file.setStatus( Status.CANCELLED );
- this.owner.trigger( 'fileDequeued', file );
- },
-
- /**
- * 判断`Uploader`是否正在上传中。
- * @grammar isInProgress() => Boolean
- * @method isInProgress
- * @for Uploader
- */
- isInProgress: function() {
- return !!this.progress;
- },
-
- _getStats: function() {
- return this.request('get-stats');
- },
-
- /**
- * 跳过一个文件上传,直接标记指定文件为已上传状态。
- * @grammar skipFile( file ) => undefined
- * @method skipFile
- * @for Uploader
- */
- skipFile: function( file, status ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- file.setStatus( status || Status.COMPLETE );
- file.skipped = true;
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- this.owner.trigger( 'uploadSkip', file );
- },
-
- /**
- * @event uploadFinished
- * @description 当所有文件上传结束时触发。
- * @for Uploader
- */
- _tick: function() {
- var me = this,
- opts = me.options,
- fn, val;
-
- // 上一个promise还没有结束,则等待完成后再执行。
- if ( me._promise ) {
- return me._promise.always( me.__tick );
- }
-
- // 还有位置,且还有文件要处理的话。
- if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
- me._trigged = false;
-
- fn = function( val ) {
- me._promise = null;
-
- // 有可能是reject过来的,所以要检测val的类型。
- val && val.file && me._startSend( val );
- Base.nextTick( me.__tick );
- };
-
- me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
-
- // 没有要上传的了,且没有正在传输的了。
- } else if ( !me.remaning && !me._getStats().numOfQueue &&
- !me._getStats().numOfInterrupt ) {
- me.runing = false;
-
- me._trigged || Base.nextTick(function() {
- me.owner.trigger('uploadFinished');
- });
- me._trigged = true;
- }
- },
-
- _putback: function(block) {
- var idx;
-
- block.cuted.unshift(block);
- idx = this.stack.indexOf(block.cuted);
-
- if (!~idx) {
- // 如果不在里面,说明移除过,需要把计数还原回去。
- this.remaning++;
- block.file.remaning++;
- this.stack.unshift(block.cuted);
- }
- },
-
- _getStack: function() {
- var i = 0,
- act;
-
- while ( (act = this.stack[ i++ ]) ) {
- if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
- return act;
- } else if (!act.has() ||
- act.file.getStatus() !== Status.PROGRESS &&
- act.file.getStatus() !== Status.INTERRUPT ) {
-
- // 把已经处理完了的,或者,状态为非 progress(上传中)、
- // interupt(暂停中) 的移除。
- this.stack.splice( --i, 1 );
- }
- }
-
- return null;
- },
-
- _nextBlock: function() {
- var me = this,
- opts = me.options,
- act, next, done, preparing;
-
- // 如果当前文件还有没有需要传输的,则直接返回剩下的。
- if ( (act = this._getStack()) ) {
-
- // 是否提前准备下一个文件
- if ( opts.prepareNextFile && !me.pending.length ) {
- me._prepareNextFile();
- }
-
- return act.shift();
-
- // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
- } else if ( me.runing ) {
-
- // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
- if ( !me.pending.length && me._getStats().numOfQueue ) {
- me._prepareNextFile();
- }
-
- next = me.pending.shift();
- done = function( file ) {
- if ( !file ) {
- return null;
- }
-
- act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
- me.stack.push(act);
- return act.shift();
- };
-
- // 文件可能还在prepare中,也有可能已经完全准备好了。
- if ( isPromise( next) ) {
- preparing = next.file;
- next = next[ next.pipe ? 'pipe' : 'then' ]( done );
- next.file = preparing;
- return next;
- }
-
- return done( next );
- }
- },
-
-
- /**
- * @event uploadStart
- * @param {File} file File对象
- * @description 某个文件开始上传前触发,一个文件只会触发一次。
- * @for Uploader
- */
- _prepareNextFile: function() {
- var me = this,
- file = me.request('fetch-file'),
- pending = me.pending,
- promise;
-
- if ( file ) {
- promise = me.request( 'before-send-file', file, function() {
-
- // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
- if ( file.getStatus() === Status.PROGRESS ||
- file.getStatus() === Status.INTERRUPT ) {
- return file;
- }
-
- return me._finishFile( file );
- });
-
- me.owner.trigger( 'uploadStart', file );
- file.setStatus( Status.PROGRESS );
-
- promise.file = file;
-
- // 如果还在pending中,则替换成文件本身。
- promise.done(function() {
- var idx = $.inArray( promise, pending );
-
- ~idx && pending.splice( idx, 1, file );
- });
-
- // befeore-send-file的钩子就有错误发生。
- promise.fail(function( reason ) {
- file.setStatus( Status.ERROR, reason );
- me.owner.trigger( 'uploadError', file, reason );
- me.owner.trigger( 'uploadComplete', file );
- });
-
- pending.push( promise );
- }
- },
-
- // 让出位置了,可以让其他分片开始上传
- _popBlock: function( block ) {
- var idx = $.inArray( block, this.pool );
-
- this.pool.splice( idx, 1 );
- block.file.remaning--;
- this.remaning--;
- },
-
- // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
- _startSend: function( block ) {
- var me = this,
- file = block.file,
- promise;
-
- // 有可能在 before-send-file 的 promise 期间改变了文件状态。
- // 如:暂停,取消
- // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
- if ( file.getStatus() !== Status.PROGRESS ) {
-
- // 如果是中断,则还需要放回去。
- if (file.getStatus() === Status.INTERRUPT) {
- me._putback(block);
- }
-
- return;
- }
-
- me.pool.push( block );
- me.remaning++;
-
- // 如果没有分片,则直接使用原始的。
- // 不会丢失content-type信息。
- block.blob = block.chunks === 1 ? file.source :
- file.source.slice( block.start, block.end );
-
- // hook, 每个分片发送之前可能要做些异步的事情。
- block.waiting = promise = me.request( 'before-send', block, function() {
- delete block.waiting;
-
- // 有可能文件已经上传出错了,所以不需要再传输了。
- if ( file.getStatus() === Status.PROGRESS ) {
- me._doSend( block );
- } else if (block.file.getStatus() !== Status.INTERRUPT) {
- me._popBlock(block);
- }
-
- Base.nextTick(me.__tick);
- });
-
- // 如果为fail了,则跳过此分片。
- promise.fail(function() {
- delete block.waiting;
-
- if ( file.remaning === 1 ) {
- me._finishFile( file ).always(function() {
- block.percentage = 1;
- me._popBlock( block );
- me.owner.trigger( 'uploadComplete', file );
- Base.nextTick( me.__tick );
- });
- } else {
- block.percentage = 1;
- me.updateFileProgress( file );
- me._popBlock( block );
- Base.nextTick( me.__tick );
- }
- });
- },
-
-
- /**
- * @event uploadBeforeSend
- * @param {Object} object
- * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
- * @param {Object} headers 可以扩展此对象来控制上传头部。
- * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
- * @for Uploader
- */
-
- /**
- * @event uploadAccept
- * @param {Object} object
- * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
- * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
- * @for Uploader
- */
-
- /**
- * @event uploadProgress
- * @param {File} file File对象
- * @param {Number} percentage 上传进度
- * @description 上传过程中触发,携带上传进度。
- * @for Uploader
- */
-
-
- /**
- * @event uploadError
- * @param {File} file File对象
- * @param {String} reason 出错的code
- * @description 当文件上传出错时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadSuccess
- * @param {File} file File对象
- * @param {Object} response 服务端返回的数据
- * @description 当文件上传成功时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadComplete
- * @param {File} [file] File对象
- * @description 不管成功或者失败,文件上传完成时触发。
- * @for Uploader
- */
-
- // 做上传操作。
- _doSend: function( block ) {
- var me = this,
- owner = me.owner,
- opts = $.extend({}, me.options, block.options),
- file = block.file,
- tr = new Transport( opts ),
- data = $.extend({}, opts.formData ),
- headers = $.extend({}, opts.headers ),
- requestAccept, ret;
-
- block.transport = tr;
-
- tr.on( 'destroy', function() {
- delete block.transport;
- me._popBlock( block );
- Base.nextTick( me.__tick );
- });
-
- // 广播上传进度。以文件为单位。
- tr.on( 'progress', function( percentage ) {
- block.percentage = percentage;
- me.updateFileProgress( file );
- });
-
- // 用来询问,是否返回的结果是有错误的。
- requestAccept = function( reject ) {
- var fn;
-
- ret = tr.getResponseAsJson() || {};
- ret._raw = tr.getResponse();
- ret._headers = tr.getResponseHeaders();
- block.response = ret;
- fn = function( value ) {
- reject = value;
- };
-
- // 服务端响应了,不代表成功了,询问是否响应正确。
- if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
- reject = reject || 'server';
- }
-
- return reject;
- };
-
- // 尝试重试,然后广播文件上传出错。
- tr.on( 'error', function( type, flag ) {
- // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
- // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
- var typeArr = type.split( '|' ), status, statusText;
- type = typeArr[0];
- status = parseFloat( typeArr[1] ),
- statusText = typeArr[2];
-
- block.retried = block.retried || 0;
-
- // 自动重试
- if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
- block.retried < opts.chunkRetry ) {
-
- block.retried++;
-
- me.retryTimer = setTimeout(function() {
- tr.send();
- }, opts.chunkRetryDelay || 1000);
-
- } else {
-
- // http status 500 ~ 600
- if ( !flag && type === 'server' ) {
- type = requestAccept( type );
- }
-
- file.setStatus( Status.ERROR, type );
- owner.trigger( 'uploadError', file, type, status, statusText );
- owner.trigger( 'uploadComplete', file );
- }
- });
-
- // 上传成功
- tr.on( 'load', function() {
- var reason;
-
- // 如果非预期,转向上传出错。
- if ( (reason = requestAccept()) ) {
- tr.trigger( 'error', reason, true );
- return;
- }
-
- // 全部上传完成。
- if ( file.remaning === 1 ) {
- me._finishFile( file, ret );
- } else {
- tr.destroy();
- }
- });
-
- // 配置默认的上传字段。
- data = $.extend( data, {
- id: file.id,
- name: file.name,
- type: file.type,
- lastModifiedDate: file.lastModifiedDate,
- size: file.size
- });
-
- block.chunks > 1 && $.extend( data, {
- chunks: block.chunks,
- chunk: block.chunk
- });
-
- // 在发送之间可以添加字段什么的。。。
- // 如果默认的字段不够使用,可以通过监听此事件来扩展
- owner.trigger( 'uploadBeforeSend', block, data, headers );
-
- // 开始发送。
- tr.appendBlob( opts.fileVal, block.blob, file.name );
- tr.append( data );
- tr.setRequestHeader( headers );
- tr.send();
- },
-
- // 完成上传。
- _finishFile: function( file, ret, hds ) {
- var owner = this.owner;
-
- return owner
- .request( 'after-send-file', arguments, function() {
- file.setStatus( Status.COMPLETE );
- owner.trigger( 'uploadSuccess', file, ret, hds );
- })
- .fail(function( reason ) {
-
- // 如果外部已经标记为invalid什么的,不再改状态。
- if ( file.getStatus() === Status.PROGRESS ) {
- file.setStatus( Status.ERROR, reason );
- }
-
- owner.trigger( 'uploadError', file, reason );
- })
- .always(function() {
- owner.trigger( 'uploadComplete', file );
- });
- },
-
- updateFileProgress: function(file) {
- var totalPercent = 0,
- uploaded = 0;
-
- if (!file.blocks) {
- return;
- }
-
- $.each( file.blocks, function( _, v ) {
- uploaded += (v.percentage || 0) * (v.end - v.start);
- });
-
- totalPercent = uploaded / file.size;
- this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
- },
-
- destroy: function() {
- clearTimeout(this.retryTimer);
- }
-
- });
- });
-
- /**
- * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
- */
-
- define('widgets/validator',[
- 'base',
- 'uploader',
- 'file',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile ) {
-
- var $ = Base.$,
- validators = {},
- api;
-
- /**
- * @event error
- * @param {String} type 错误类型。
- * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
- *
- * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
- * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
- * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
- * @for Uploader
- */
-
- // 暴露给外面的api
- api = {
-
- // 添加验证器
- addValidator: function( type, cb ) {
- validators[ type ] = cb;
- },
-
- // 移除验证器
- removeValidator: function( type ) {
- delete validators[ type ];
- }
- };
-
- // 在Uploader初始化的时候启动Validators的初始化
- Uploader.register({
- name: 'validator',
-
- init: function() {
- var me = this;
- Base.nextTick(function() {
- $.each( validators, function() {
- this.call( me.owner );
- });
- });
- }
- });
-
- /**
- * @property {int} [fileNumLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总数量, 超出则不允许加入队列。
- */
- api.addValidator( 'fileNumLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileNumLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
- if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
- return false;
- }
- if ( count >= max && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return count >= max ? false : true;
- });
-
- uploader.on( 'fileQueued', function() {
- count++;
- });
-
- uploader.on( 'fileDequeued', function() {
- count--;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
-
- /**
- * @property {int} [fileSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileSizeLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var invalid = count + file.size > max;
-
- if ( invalid && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return invalid ? false : true;
- });
-
- uploader.on( 'fileQueued', function( file ) {
- count += file.size;
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- count -= file.size;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
- /**
- * @property {int} [fileSingleSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSingleSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- max = opts.fileSingleSizeLimit;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
-
- if ( file.size > max ) {
- file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
- this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
- return false;
- }
-
- });
-
- });
-
- /**
- * @property {Boolean} [duplicate=undefined]
- * @namespace options
- * @for Uploader
- * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
- */
- api.addValidator( 'duplicate', function() {
- var uploader = this,
- opts = uploader.options,
- mapping = {};
-
- if ( opts.duplicate ) {
- return;
- }
-
- function hashString( str ) {
- var hash = 0,
- i = 0,
- len = str.length,
- _char;
-
- for ( ; i < len; i++ ) {
- _char = str.charCodeAt( i );
- hash = _char + (hash << 6) + (hash << 16) - hash;
- }
-
- return hash;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var hash = file.__hash || (file.__hash = hashString( file.name +
- file.size + file.lastModifiedDate ));
-
- // 已经重复了
- if ( mapping[ hash ] ) {
- this.trigger( 'error', 'F_DUPLICATE', file );
- return false;
- }
- });
-
- uploader.on( 'fileQueued', function( file ) {
- var hash = file.__hash;
-
- hash && (mapping[ hash ] = true);
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- var hash = file.__hash;
-
- hash && (delete mapping[ hash ]);
- });
+ /**
+ * @fileOverview 负责文件上传相关。
+ */
+ define('widgets/upload',[
+ 'base',
+ 'uploader',
+ 'file',
+ 'lib/transport',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile, Transport ) {
+
+ var $ = Base.$,
+ isPromise = Base.isPromise,
+ Status = WUFile.Status;
+
+ // 添加默认配置项
+ $.extend( Uploader.options, {
+
+
+ /**
+ * @property {Boolean} [prepareNextFile=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否允许在文件传输时提前把下一个文件准备好。
+ * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
+ * 如果能提前在当前文件传输期处理,可以节省总体耗时。
+ */
+ prepareNextFile: false,
+
+ /**
+ * @property {Boolean} [chunked=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否要分片处理大文件上传。
+ */
+ chunked: false,
+
+ /**
+ * @property {Boolean} [chunkSize=5242880]
+ * @namespace options
+ * @for Uploader
+ * @description 如果要分片,分多大一片? 默认大小为5M.
+ */
+ chunkSize: 5 * 1024 * 1024,
+
+ /**
+ * @property {Boolean} [chunkRetry=2]
+ * @namespace options
+ * @for Uploader
+ * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
+ */
+ chunkRetry: 2,
+
+ /**
+ * @property {Number} [chunkRetryDelay=1000]
+ * @namespace options
+ * @for Uploader
+ * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
+ */
+ chunkRetryDelay: 1000,
+
+ /**
+ * @property {Boolean} [threads=3]
+ * @namespace options
+ * @for Uploader
+ * @description 上传并发数。允许同时最大上传进程数。
+ */
+ threads: 3,
+
+
+ /**
+ * @property {Object} [formData={}]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
+ */
+ formData: {}
+
+ /**
+ * @property {Object} [fileVal='file']
+ * @namespace options
+ * @for Uploader
+ * @description 设置文件上传域的name。
+ */
+
+ /**
+ * @property {Object} [method=POST]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传方式,`POST` 或者 `GET`。
+ */
+
+ /**
+ * @property {Object} [sendAsBinary=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
+ * 其他参数在$_GET数组中。
+ */
+ });
+
+ // 负责将文件切片。
+ function CuteFile( file, chunkSize ) {
+ var pending = [],
+ blob = file.source,
+ total = blob.size,
+ chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
+ start = 0,
+ index = 0,
+ len, api;
+
+ api = {
+ file: file,
+
+ has: function() {
+ return !!pending.length;
+ },
+
+ shift: function() {
+ return pending.shift();
+ },
+
+ unshift: function( block ) {
+ pending.unshift( block );
+ }
+ };
+
+ while ( index < chunks ) {
+ len = Math.min( chunkSize, total - start );
+
+ pending.push({
+ file: file,
+ start: start,
+ end: chunkSize ? (start + len) : total,
+ total: total,
+ chunks: chunks,
+ chunk: index++,
+ cuted: api
+ });
+ start += len;
+ }
+
+ file.blocks = pending.concat();
+ file.remaning = pending.length;
+
+ return api;
+ }
+
+ Uploader.register({
+ name: 'upload',
+
+ init: function() {
+ var owner = this.owner,
+ me = this;
+
+ this.runing = false;
+ this.progress = false;
+
+ owner
+ .on( 'startUpload', function() {
+ me.progress = true;
+ })
+ .on( 'uploadFinished', function() {
+ me.progress = false;
+ });
+
+ // 记录当前正在传的数据,跟threads相关
+ this.pool = [];
+
+ // 缓存分好片的文件。
+ this.stack = [];
+
+ // 缓存即将上传的文件。
+ this.pending = [];
+
+ // 跟踪还有多少分片在上传中但是没有完成上传。
+ this.remaning = 0;
+ this.__tick = Base.bindFn( this._tick, this );
+
+ // 销毁上传相关的属性。
+ owner.on( 'uploadComplete', function( file ) {
+
+ // 把其他块取消了。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ v.transport && (v.transport.abort(), v.transport.destroy());
+ delete v.transport;
+ });
+
+ delete file.blocks;
+ delete file.remaning;
+ });
+ },
+
+ reset: function() {
+ this.request( 'stop-upload', true );
+ this.runing = false;
+ this.pool = [];
+ this.stack = [];
+ this.pending = [];
+ this.remaning = 0;
+ this._trigged = false;
+ this._promise = null;
+ },
+
+ /**
+ * @event startUpload
+ * @description 当开始上传流程时触发。
+ * @for Uploader
+ */
+
+ /**
+ * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
+ *
+ * 可以指定开始某一个文件。
+ * @grammar upload() => undefined
+ * @grammar upload( file | fileId) => undefined
+ * @method upload
+ * @for Uploader
+ */
+ startUpload: function(file) {
+ var me = this;
+
+ // 移出invalid的文件
+ $.each( me.request( 'get-files', Status.INVALID ), function() {
+ me.request( 'remove-file', this );
+ });
+
+ // 如果指定了开始某个文件,则只开始指定的文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
+
+ if (file.getStatus() === Status.INTERRUPT) {
+ file.setStatus( Status.QUEUED );
+
+ $.each( me.pool, function( _, v ) {
+
+ // 之前暂停过。
+ if (v.file !== file) {
+ return;
+ }
+
+ v.transport && v.transport.send();
+ file.setStatus( Status.PROGRESS );
+ });
+
+
+ } else if (file.getStatus() !== Status.PROGRESS) {
+ file.setStatus( Status.QUEUED );
+ }
+ } else {
+ $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
+ this.setStatus( Status.QUEUED );
+ });
+ }
+
+ if ( me.runing ) {
+ me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
+ return Base.nextTick( me.__tick );
+ }
+
+ me.runing = true;
+ var files = [];
+
+ // 如果有暂停的,则续传
+ file || $.each( me.pool, function( _, v ) {
+ var file = v.file;
+
+ if ( file.getStatus() === Status.INTERRUPT ) {
+ me._trigged = false;
+ files.push(file);
+
+ if (v.waiting) {
+ return;
+ }
+
+ // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
+ v.transport ? v.transport.send() : me._doSend(v);
+ }
+ });
+
+ $.each(files, function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ file || $.each( me.request( 'get-files',
+ Status.INTERRUPT ), function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ me._trigged = false;
+ Base.nextTick( me.__tick );
+ me.owner.trigger('startUpload');
+ },
+
+ /**
+ * @event stopUpload
+ * @description 当开始上传流程暂停时触发。
+ * @for Uploader
+ */
+
+ /**
+ * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
+ *
+ * 如果第一个参数是文件,则只暂停指定文件。
+ * @grammar stop() => undefined
+ * @grammar stop( true ) => undefined
+ * @grammar stop( file ) => undefined
+ * @method stop
+ * @for Uploader
+ */
+ stopUpload: function( file, interrupt ) {
+ var me = this;
+
+ if (file === true) {
+ interrupt = file;
+ file = null;
+ }
+
+ if ( me.runing === false ) {
+ return;
+ }
+
+ // 如果只是暂停某个文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
+
+ if ( file.getStatus() !== Status.PROGRESS &&
+ file.getStatus() !== Status.QUEUED ) {
+ return;
+ }
+
+ file.setStatus( Status.INTERRUPT );
+
+
+ $.each( me.pool, function( _, v ) {
+
+ // 只 abort 指定的文件,每一个分片。
+ if (v.file === file) {
+ v.transport && v.transport.abort();
+
+ if (interrupt) {
+ me._putback(v);
+ me._popBlock(v);
+ }
+ }
+ });
+
+ me.owner.trigger('stopUpload', file);// 暂停,trigger event
+
+ return Base.nextTick( me.__tick );
+ }
+
+ me.runing = false;
+
+ // 正在准备中的文件。
+ if (this._promise && this._promise.file) {
+ this._promise.file.setStatus( Status.INTERRUPT );
+ }
+
+ interrupt && $.each( me.pool, function( _, v ) {
+ v.transport && v.transport.abort();
+ v.file.setStatus( Status.INTERRUPT );
+ });
+
+ me.owner.trigger('stopUpload');
+ },
+
+ /**
+ * @method cancelFile
+ * @grammar cancelFile( file ) => undefined
+ * @grammar cancelFile( id ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 标记文件状态为已取消, 同时将中断文件传输。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.cancelFile( file );
+ * })
+ */
+ cancelFile: function( file ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
+ });
+
+ file.setStatus( Status.CANCELLED );
+ this.owner.trigger( 'fileDequeued', file );
+ },
+
+ /**
+ * 判断`Uploader`是否正在上传中。
+ * @grammar isInProgress() => Boolean
+ * @method isInProgress
+ * @for Uploader
+ */
+ isInProgress: function() {
+ return !!this.progress;
+ },
+
+ _getStats: function() {
+ return this.request('get-stats');
+ },
+
+ /**
+ * 跳过一个文件上传,直接标记指定文件为已上传状态。
+ * @grammar skipFile( file ) => undefined
+ * @method skipFile
+ * @for Uploader
+ */
+ skipFile: function( file, status ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ file.setStatus( status || Status.COMPLETE );
+ file.skipped = true;
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
+ });
+
+ this.owner.trigger( 'uploadSkip', file );
+ },
+
+ /**
+ * @event uploadFinished
+ * @description 当所有文件上传结束时触发。
+ * @for Uploader
+ */
+ _tick: function() {
+ var me = this,
+ opts = me.options,
+ fn, val;
+
+ // 上一个promise还没有结束,则等待完成后再执行。
+ if ( me._promise ) {
+ return me._promise.always( me.__tick );
+ }
+
+ // 还有位置,且还有文件要处理的话。
+ if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
+ me._trigged = false;
+
+ fn = function( val ) {
+ me._promise = null;
+
+ // 有可能是reject过来的,所以要检测val的类型。
+ val && val.file && me._startSend( val );
+ Base.nextTick( me.__tick );
+ };
+
+ me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
+
+ // 没有要上传的了,且没有正在传输的了。
+ } else if ( !me.remaning && !me._getStats().numOfQueue &&
+ !me._getStats().numOfInterrupt ) {
+ me.runing = false;
+
+ me._trigged || Base.nextTick(function() {
+ me.owner.trigger('uploadFinished');
+ });
+ me._trigged = true;
+ }
+ },
+
+ _putback: function(block) {
+ var idx;
+
+ block.cuted.unshift(block);
+ idx = this.stack.indexOf(block.cuted);
+
+ if (!~idx) {
+ // 如果不在里面,说明移除过,需要把计数还原回去。
+ this.remaning++;
+ block.file.remaning++;
+ this.stack.unshift(block.cuted);
+ }
+ },
+
+ _getStack: function() {
+ var i = 0,
+ act;
+
+ while ( (act = this.stack[ i++ ]) ) {
+ if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
+ return act;
+ } else if (!act.has() ||
+ act.file.getStatus() !== Status.PROGRESS &&
+ act.file.getStatus() !== Status.INTERRUPT ) {
+
+ // 把已经处理完了的,或者,状态为非 progress(上传中)、
+ // interupt(暂停中) 的移除。
+ this.stack.splice( --i, 1 );
+ }
+ }
+
+ return null;
+ },
+
+ _nextBlock: function() {
+ var me = this,
+ opts = me.options,
+ act, next, done, preparing;
+
+ // 如果当前文件还有没有需要传输的,则直接返回剩下的。
+ if ( (act = this._getStack()) ) {
+
+ // 是否提前准备下一个文件
+ if ( opts.prepareNextFile && !me.pending.length ) {
+ me._prepareNextFile();
+ }
+
+ return act.shift();
+
+ // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
+ } else if ( me.runing ) {
+
+ // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
+ if ( !me.pending.length && me._getStats().numOfQueue ) {
+ me._prepareNextFile();
+ }
+
+ next = me.pending.shift();
+ done = function( file ) {
+ if ( !file ) {
+ return null;
+ }
+
+ act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
+ me.stack.push(act);
+ return act.shift();
+ };
+
+ // 文件可能还在prepare中,也有可能已经完全准备好了。
+ if ( isPromise( next) ) {
+ preparing = next.file;
+ next = next[ next.pipe ? 'pipe' : 'then' ]( done );
+ next.file = preparing;
+ return next;
+ }
+
+ return done( next );
+ }
+ },
+
+
+ /**
+ * @event uploadStart
+ * @param {File} file File对象
+ * @description 某个文件开始上传前触发,一个文件只会触发一次。
+ * @for Uploader
+ */
+ _prepareNextFile: function() {
+ var me = this,
+ file = me.request('fetch-file'),
+ pending = me.pending,
+ promise;
+
+ if ( file ) {
+ promise = me.request( 'before-send-file', file, function() {
+
+ // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
+ if ( file.getStatus() === Status.PROGRESS ||
+ file.getStatus() === Status.INTERRUPT ) {
+ return file;
+ }
+
+ return me._finishFile( file );
+ });
+
+ me.owner.trigger( 'uploadStart', file );
+ file.setStatus( Status.PROGRESS );
+
+ promise.file = file;
+
+ // 如果还在pending中,则替换成文件本身。
+ promise.done(function() {
+ var idx = $.inArray( promise, pending );
+
+ ~idx && pending.splice( idx, 1, file );
+ });
+
+ // befeore-send-file的钩子就有错误发生。
+ promise.fail(function( reason ) {
+ file.setStatus( Status.ERROR, reason );
+ me.owner.trigger( 'uploadError', file, reason );
+ me.owner.trigger( 'uploadComplete', file );
+ });
+
+ pending.push( promise );
+ }
+ },
+
+ // 让出位置了,可以让其他分片开始上传
+ _popBlock: function( block ) {
+ var idx = $.inArray( block, this.pool );
+
+ this.pool.splice( idx, 1 );
+ block.file.remaning--;
+ this.remaning--;
+ },
+
+ // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
+ _startSend: function( block ) {
+ var me = this,
+ file = block.file,
+ promise;
+
+ // 有可能在 before-send-file 的 promise 期间改变了文件状态。
+ // 如:暂停,取消
+ // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
+ if ( file.getStatus() !== Status.PROGRESS ) {
+
+ // 如果是中断,则还需要放回去。
+ if (file.getStatus() === Status.INTERRUPT) {
+ me._putback(block);
+ }
+
+ return;
+ }
+
+ me.pool.push( block );
+ me.remaning++;
+
+ // 如果没有分片,则直接使用原始的。
+ // 不会丢失content-type信息。
+ block.blob = block.chunks === 1 ? file.source :
+ file.source.slice( block.start, block.end );
+
+ // hook, 每个分片发送之前可能要做些异步的事情。
+ block.waiting = promise = me.request( 'before-send', block, function() {
+ delete block.waiting;
+
+ // 有可能文件已经上传出错了,所以不需要再传输了。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ me._doSend( block );
+ } else if (block.file.getStatus() !== Status.INTERRUPT) {
+ me._popBlock(block);
+ }
+
+ Base.nextTick(me.__tick);
+ });
+
+ // 如果为fail了,则跳过此分片。
+ promise.fail(function() {
+ delete block.waiting;
+
+ if ( file.remaning === 1 ) {
+ me._finishFile( file ).always(function() {
+ block.percentage = 1;
+ me._popBlock( block );
+ me.owner.trigger( 'uploadComplete', file );
+ Base.nextTick( me.__tick );
+ });
+ } else {
+ block.percentage = 1;
+ me.updateFileProgress( file );
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ }
+ });
+ },
+
+
+ /**
+ * @event uploadBeforeSend
+ * @param {Object} object
+ * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
+ * @param {Object} headers 可以扩展此对象来控制上传头部。
+ * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadAccept
+ * @param {Object} object
+ * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
+ * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadProgress
+ * @param {File} file File对象
+ * @param {Number} percentage 上传进度
+ * @description 上传过程中触发,携带上传进度。
+ * @for Uploader
+ */
+
+
+ /**
+ * @event uploadError
+ * @param {File} file File对象
+ * @param {String} reason 出错的code
+ * @description 当文件上传出错时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadSuccess
+ * @param {File} file File对象
+ * @param {Object} response 服务端返回的数据
+ * @description 当文件上传成功时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadComplete
+ * @param {File} [file] File对象
+ * @description 不管成功或者失败,文件上传完成时触发。
+ * @for Uploader
+ */
+
+ // 做上传操作。
+ _doSend: function( block ) {
+ var me = this,
+ owner = me.owner,
+ opts = $.extend({}, me.options, block.options),
+ file = block.file,
+ tr = new Transport( opts ),
+ data = $.extend({}, opts.formData ),
+ headers = $.extend({}, opts.headers ),
+ requestAccept, ret;
+
+ block.transport = tr;
+
+ tr.on( 'destroy', function() {
+ delete block.transport;
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ });
+
+ // 广播上传进度。以文件为单位。
+ tr.on( 'progress', function( percentage ) {
+ block.percentage = percentage;
+ me.updateFileProgress( file );
+ });
+
+ // 用来询问,是否返回的结果是有错误的。
+ requestAccept = function( reject ) {
+ var fn;
+
+ ret = tr.getResponseAsJson() || {};
+ ret._raw = tr.getResponse();
+ ret._headers = tr.getResponseHeaders();
+ block.response = ret;
+ fn = function( value ) {
+ reject = value;
+ };
+
+ // 服务端响应了,不代表成功了,询问是否响应正确。
+ if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
+ reject = reject || 'server';
+ }
+
+ return reject;
+ };
+
+ // 尝试重试,然后广播文件上传出错。
+ tr.on( 'error', function( type, flag ) {
+ // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
+ // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
+ var typeArr = type.split( '|' ), status, statusText;
+ type = typeArr[0];
+ status = parseFloat( typeArr[1] ),
+ statusText = typeArr[2];
+
+ block.retried = block.retried || 0;
+
+ // 自动重试
+ if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
+ block.retried < opts.chunkRetry ) {
+
+ block.retried++;
+
+ me.retryTimer = setTimeout(function() {
+ tr.send();
+ }, opts.chunkRetryDelay || 1000);
+
+ } else {
+
+ // http status 500 ~ 600
+ if ( !flag && type === 'server' ) {
+ type = requestAccept( type );
+ }
+
+ file.setStatus( Status.ERROR, type );
+ owner.trigger( 'uploadError', file, type, status, statusText );
+ owner.trigger( 'uploadComplete', file );
+ }
+ });
+
+ // 上传成功
+ tr.on( 'load', function() {
+ var reason;
+
+ // 如果非预期,转向上传出错。
+ if ( (reason = requestAccept()) ) {
+ tr.trigger( 'error', reason, true );
+ return;
+ }
+
+ // 全部上传完成。
+ if ( file.remaning === 1 ) {
+ me._finishFile( file, ret );
+ } else {
+ tr.destroy();
+ }
+ });
+
+ // 配置默认的上传字段。
+ data = $.extend( data, {
+ id: file.id,
+ name: file.name,
+ type: file.type,
+ lastModifiedDate: file.lastModifiedDate,
+ size: file.size
+ });
+
+ block.chunks > 1 && $.extend( data, {
+ chunks: block.chunks,
+ chunk: block.chunk
+ });
+
+ // 在发送之间可以添加字段什么的。。。
+ // 如果默认的字段不够使用,可以通过监听此事件来扩展
+ owner.trigger( 'uploadBeforeSend', block, data, headers );
+
+ // 开始发送。
+ tr.appendBlob( opts.fileVal, block.blob, file.name );
+ tr.append( data );
+ tr.setRequestHeader( headers );
+ tr.send();
+ },
+
+ // 完成上传。
+ _finishFile: function( file, ret, hds ) {
+ var owner = this.owner;
+
+ return owner
+ .request( 'after-send-file', arguments, function() {
+ file.setStatus( Status.COMPLETE );
+ owner.trigger( 'uploadSuccess', file, ret, hds );
+ })
+ .fail(function( reason ) {
+
+ // 如果外部已经标记为invalid什么的,不再改状态。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ file.setStatus( Status.ERROR, reason );
+ }
+
+ owner.trigger( 'uploadError', file, reason );
+ })
+ .always(function() {
+ owner.trigger( 'uploadComplete', file );
+ });
+ },
+
+ updateFileProgress: function(file) {
+ var totalPercent = 0,
+ uploaded = 0;
+
+ if (!file.blocks) {
+ return;
+ }
+
+ $.each( file.blocks, function( _, v ) {
+ uploaded += (v.percentage || 0) * (v.end - v.start);
+ });
+
+ totalPercent = uploaded / file.size;
+ this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
+ },
+
+ destroy: function() {
+ clearTimeout(this.retryTimer);
+ }
+
+ });
+ });
- uploader.on( 'reset', function() {
- mapping = {};
- });
- });
+ /**
+ * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
+ */
+
+ define('widgets/validator',[
+ 'base',
+ 'uploader',
+ 'file',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile ) {
+
+ var $ = Base.$,
+ validators = {},
+ api;
+
+ /**
+ * @event error
+ * @param {String} type 错误类型。
+ * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
+ *
+ * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
+ * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
+ * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
+ * @for Uploader
+ */
+
+ // 暴露给外面的api
+ api = {
+
+ // 添加验证器
+ addValidator: function( type, cb ) {
+ validators[ type ] = cb;
+ },
+
+ // 移除验证器
+ removeValidator: function( type ) {
+ delete validators[ type ];
+ }
+ };
+
+ // 在Uploader初始化的时候启动Validators的初始化
+ Uploader.register({
+ name: 'validator',
+
+ init: function() {
+ var me = this;
+ Base.nextTick(function() {
+ $.each( validators, function() {
+ this.call( me.owner );
+ });
+ });
+ }
+ });
+
+ /**
+ * @property {int} [fileNumLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总数量, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileNumLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileNumLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
+ if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
+ return false;
+ }
+ if ( count >= max && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return count >= max ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function() {
+ count++;
+ });
+
+ uploader.on( 'fileDequeued', function() {
+ count--;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+
+ /**
+ * @property {int} [fileSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileSizeLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var invalid = count + file.size > max;
+
+ if ( invalid && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return invalid ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ count += file.size;
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ count -= file.size;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+ /**
+ * @property {int} [fileSingleSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSingleSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ max = opts.fileSingleSizeLimit;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+
+ if ( file.size > max ) {
+ file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
+ this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
+ return false;
+ }
+
+ });
+
+ });
+
+ /**
+ * @property {Boolean} [duplicate=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
+ */
+ api.addValidator( 'duplicate', function() {
+ var uploader = this,
+ opts = uploader.options,
+ mapping = {};
+
+ if ( opts.duplicate ) {
+ return;
+ }
+
+ function hashString( str ) {
+ var hash = 0,
+ i = 0,
+ len = str.length,
+ _char;
+
+ for ( ; i < len; i++ ) {
+ _char = str.charCodeAt( i );
+ hash = _char + (hash << 6) + (hash << 16) - hash;
+ }
+
+ return hash;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var hash = file.__hash || (file.__hash = hashString( file.name +
+ file.size + file.lastModifiedDate ));
+
+ // 已经重复了
+ if ( mapping[ hash ] ) {
+ this.trigger( 'error', 'F_DUPLICATE', file );
+ return false;
+ }
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (mapping[ hash ] = true);
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (delete mapping[ hash ]);
+ });
+
+ uploader.on( 'reset', function() {
+ mapping = {};
+ });
+ });
+
+ return api;
+ });
- return api;
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/compbase',[],function() {
+
+ function CompBase( owner, runtime ) {
+
+ this.owner = owner;
+ this.options = owner.options;
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.getRuid = function() {
+ return runtime.uid;
+ };
+
+ this.trigger = function() {
+ return owner.trigger.apply( owner, arguments );
+ };
+ }
+
+ return CompBase;
});
-
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/compbase',[],function() {
-
- function CompBase( owner, runtime ) {
-
- this.owner = owner;
- this.options = owner.options;
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.getRuid = function() {
- return runtime.uid;
- };
-
- this.trigger = function() {
- return owner.trigger.apply( owner, arguments );
- };
- }
-
- return CompBase;
+ /**
+ * @fileOverview Html5Runtime
+ */
+ define('runtime/html5/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var type = 'html5',
+ components = {};
+
+ function Html5Runtime() {
+ var pool = {},
+ me = this,
+ destroy = this.destroy;
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ if ( components[ comp ] ) {
+ instance = pool[ uid ] = pool[ uid ] ||
+ new components[ comp ]( client, me );
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+ };
+
+ me.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+ }
+
+ Base.inherits( Runtime, {
+ constructor: Html5Runtime,
+
+ // 不需要连接其他程序,直接执行callback
+ init: function() {
+ var me = this;
+ setTimeout(function() {
+ me.trigger('ready');
+ }, 1 );
+ }
+
+ });
+
+ // 注册Components
+ Html5Runtime.register = function( name, component ) {
+ var klass = components[ name ] = Base.inherits( CompBase, component );
+ return klass;
+ };
+
+ // 注册html5运行时。
+ // 只有在支持的前提下注册。
+ if ( window.Blob && window.FileReader && window.DataView ) {
+ Runtime.addRuntime( type, Html5Runtime );
+ }
+
+ return Html5Runtime;
});
- /**
- * @fileOverview Html5Runtime
- */
- define('runtime/html5/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var type = 'html5',
- components = {};
-
- function Html5Runtime() {
- var pool = {},
- me = this,
- destroy = this.destroy;
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- if ( components[ comp ] ) {
- instance = pool[ uid ] = pool[ uid ] ||
- new components[ comp ]( client, me );
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
- };
-
- me.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
- }
-
- Base.inherits( Runtime, {
- constructor: Html5Runtime,
-
- // 不需要连接其他程序,直接执行callback
- init: function() {
- var me = this;
- setTimeout(function() {
- me.trigger('ready');
- }, 1 );
- }
-
- });
-
- // 注册Components
- Html5Runtime.register = function( name, component ) {
- var klass = components[ name ] = Base.inherits( CompBase, component );
- return klass;
- };
-
- // 注册html5运行时。
- // 只有在支持的前提下注册。
- if ( window.Blob && window.FileReader && window.DataView ) {
- Runtime.addRuntime( type, Html5Runtime );
- }
-
- return Html5Runtime;
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/html5/blob',[
+ 'runtime/html5/runtime',
+ 'lib/blob'
+ ], function( Html5Runtime, Blob ) {
+
+ return Html5Runtime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.owner.source,
+ slice = blob.slice || blob.webkitSlice || blob.mozSlice;
+
+ blob = slice.call( blob, start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
});
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/html5/blob',[
- 'runtime/html5/runtime',
- 'lib/blob'
- ], function( Html5Runtime, Blob ) {
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/dnd',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ var $ = Base.$,
+ prefix = 'webuploader-dnd-';
+
+ return Html5Runtime.register( 'DragAndDrop', {
+ init: function() {
+ var elem = this.elem = this.options.container;
+
+ this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
+ this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
+ this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
+ this.dropHandler = Base.bindFn( this._dropHandler, this );
+ this.dndOver = false;
+
+ elem.on( 'dragenter', this.dragEnterHandler );
+ elem.on( 'dragover', this.dragOverHandler );
+ elem.on( 'dragleave', this.dragLeaveHandler );
+ elem.on( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).on( 'dragover', this.dragOverHandler );
+ $( document ).on( 'drop', this.dropHandler );
+ }
+ },
+
+ _dragEnterHandler: function( e ) {
+ var me = this,
+ denied = me._denied || false,
+ items;
+
+ e = e.originalEvent || e;
+
+ if ( !me.dndOver ) {
+ me.dndOver = true;
+
+ // 注意只有 chrome 支持。
+ items = e.dataTransfer.items;
+
+ if ( items && items.length ) {
+ me._denied = denied = !me.trigger( 'accept', items );
+ }
+
+ me.elem.addClass( prefix + 'over' );
+ me.elem[ denied ? 'addClass' :
+ 'removeClass' ]( prefix + 'denied' );
+ }
+
+ e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+
+ return false;
+ },
+
+ _dragOverHandler: function( e ) {
+ // 只处理框内的。
+ var parentElem = this.elem.parent().get( 0 );
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ clearTimeout( this._leaveTimer );
+ this._dragEnterHandler.call( this, e );
+
+ return false;
+ },
+
+ _dragLeaveHandler: function() {
+ var me = this,
+ handler;
+
+ handler = function() {
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
+ };
+
+ clearTimeout( me._leaveTimer );
+ me._leaveTimer = setTimeout( handler, 100 );
+ return false;
+ },
+
+ _dropHandler: function( e ) {
+ var me = this,
+ ruid = me.getRuid(),
+ parentElem = me.elem.parent().get( 0 ),
+ dataTransfer, data;
+
+ // 只处理框内的。
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ e = e.originalEvent || e;
+ dataTransfer = e.dataTransfer;
+
+ // 如果是页面内拖拽,还不能处理,不阻止事件。
+ // 此处 ie11 下会报参数错误,
+ try {
+ data = dataTransfer.getData('text/html');
+ } catch( err ) {
+ }
+
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over' );
+
+ if ( !dataTransfer || data ) {
+ return;
+ }
+
+ me._getTansferFiles( dataTransfer, function( results ) {
+ me.trigger( 'drop', $.map( results, function( file ) {
+ return new File( ruid, file );
+ }) );
+ });
+
+ return false;
+ },
+
+ // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
+ _getTansferFiles: function( dataTransfer, callback ) {
+ var results = [],
+ promises = [],
+ items, files, file, item, i, len, canAccessFolder;
+
+ items = dataTransfer.items;
+ files = dataTransfer.files;
+
+ canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+
+ for ( i = 0, len = files.length; i < len; i++ ) {
+ file = files[ i ];
+ item = items && items[ i ];
+
+ if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+
+ promises.push( this._traverseDirectoryTree(
+ item.webkitGetAsEntry(), results ) );
+ } else {
+ results.push( file );
+ }
+ }
+
+ Base.when.apply( Base, promises ).done(function() {
+
+ if ( !results.length ) {
+ return;
+ }
+
+ callback( results );
+ });
+ },
+
+ _traverseDirectoryTree: function( entry, results ) {
+ var deferred = Base.Deferred(),
+ me = this;
+
+ if ( entry.isFile ) {
+ entry.file(function( file ) {
+ results.push( file );
+ deferred.resolve();
+ });
+ } else if ( entry.isDirectory ) {
+ entry.createReader().readEntries(function( entries ) {
+ var len = entries.length,
+ promises = [],
+ arr = [], // 为了保证顺序。
+ i;
+
+ for ( i = 0; i < len; i++ ) {
+ promises.push( me._traverseDirectoryTree(
+ entries[ i ], arr ) );
+ }
+
+ Base.when.apply( Base, promises ).then(function() {
+ results.push.apply( results, arr );
+ deferred.resolve();
+ }, deferred.reject );
+ });
+ }
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ var elem = this.elem;
+
+ // 还没 init 就调用 destroy
+ if (!elem) {
+ return;
+ }
+
+ elem.off( 'dragenter', this.dragEnterHandler );
+ elem.off( 'dragover', this.dragOverHandler );
+ elem.off( 'dragleave', this.dragLeaveHandler );
+ elem.off( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).off( 'dragover', this.dragOverHandler );
+ $( document ).off( 'drop', this.dropHandler );
+ }
+ }
+ });
+ });
- return Html5Runtime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.owner.source,
- slice = blob.slice || blob.webkitSlice || blob.mozSlice;
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/filepaste',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ return Html5Runtime.register( 'FilePaste', {
+ init: function() {
+ var opts = this.options,
+ elem = this.elem = opts.container,
+ accept = '.*',
+ arr, i, len, item;
+
+ // accetp的mimeTypes中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].mimeTypes;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = arr.join(',');
+ accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
+ }
+ }
+ this.accept = accept = new RegExp( accept, 'i' );
+ this.hander = Base.bindFn( this._pasteHander, this );
+ elem.on( 'paste', this.hander );
+ },
+
+ _pasteHander: function( e ) {
+ var allowed = [],
+ ruid = this.getRuid(),
+ items, item, blob, i, len;
+
+ e = e.originalEvent || e;
+ items = e.clipboardData.items;
+
+ for ( i = 0, len = items.length; i < len; i++ ) {
+ item = items[ i ];
+
+ if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
+ continue;
+ }
+
+ allowed.push( new File( ruid, blob ) );
+ }
+
+ if ( allowed.length ) {
+ // 不阻止非文件粘贴(文字粘贴)的事件冒泡
+ e.preventDefault();
+ e.stopPropagation();
+ this.trigger( 'paste', allowed );
+ }
+ },
+
+ destroy: function() {
+ this.elem.off( 'paste', this.hander );
+ }
+ });
+ });
- blob = slice.call( blob, start, end );
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/html5/filepicker',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var $ = Base.$;
+
+ return Html5Runtime.register( 'FilePicker', {
+ init: function() {
+ var container = this.getRuntime().getContainer(),
+ me = this,
+ owner = me.owner,
+ opts = me.options,
+ label = this.label = $( document.createElement('label') ),
+ input = this.input = $( document.createElement('input') ),
+ arr, i, len, mouseHandler, changeHandler;
+
+ input.attr( 'type', 'file' );
+ // input.attr( 'capture', 'camera');
+ input.attr( 'name', opts.name );
+ input.addClass('webuploader-element-invisible');
+
+ label.on( 'click', function(e) {
+ input.trigger('click');
+ e.stopPropagation();
+ owner.trigger('dialogopen');
+ });
+
+ label.css({
+ opacity: 0,
+ width: '100%',
+ height: '100%',
+ display: 'block',
+ cursor: 'pointer',
+ background: '#ffffff'
+ });
+
+ if ( opts.multiple ) {
+ input.attr( 'multiple', 'multiple' );
+ }
+
+ // @todo Firefox不支持单独指定后缀
+ if ( opts.accept && opts.accept.length > 0 ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ arr.push( opts.accept[ i ].mimeTypes );
+ }
+
+ input.attr( 'accept', arr.join(',') );
+ }
+
+ container.append( input );
+ container.append( label );
+
+ mouseHandler = function( e ) {
+ owner.trigger( e.type );
+ };
+
+ changeHandler = function( e ) {
+ var clone;
+
+ // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
+ if (e.target.files.length === 0){
+ return false;
+ }
+
+ // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
+ me.files = e.target.files;
+
+
+ // reset input
+ clone = this.cloneNode( true );
+ clone.value = null;
+ this.parentNode.replaceChild( clone, this );
+
+ input.off();
+ input = $( clone ).on( 'change', changeHandler )
+ .on( 'mouseenter mouseleave', mouseHandler );
+
+ owner.trigger('change');
+ }
+ input.on( 'change', changeHandler);
+ label.on( 'mouseenter mouseleave', mouseHandler );
+
+ },
+
+
+ getFiles: function() {
+ return this.files;
+ },
+
+ destroy: function() {
+ this.input.off();
+ this.label.off();
+ }
+ });
+ });
- return new Blob( this.getRuid(), blob );
- }
- });
- });
/**
- * @fileOverview FilePaste
+ * @fileOverview Transport
+ * @todo 支持chunked传输,优势:
+ * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
+ * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
*/
- define('runtime/html5/dnd',[
+ define('runtime/html5/transport',[
'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
- var $ = Base.$,
- prefix = 'webuploader-dnd-';
+ var noop = Base.noop,
+ $ = Base.$;
- return Html5Runtime.register( 'DragAndDrop', {
+ return Html5Runtime.register( 'Transport', {
init: function() {
- var elem = this.elem = this.options.container;
-
- this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
- this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
- this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
- this.dropHandler = Base.bindFn( this._dropHandler, this );
- this.dndOver = false;
-
- elem.on( 'dragenter', this.dragEnterHandler );
- elem.on( 'dragover', this.dragOverHandler );
- elem.on( 'dragleave', this.dragLeaveHandler );
- elem.on( 'drop', this.dropHandler );
-
- if ( this.options.disableGlobalDnd ) {
- $( document ).on( 'dragover', this.dragOverHandler );
- $( document ).on( 'drop', this.dropHandler );
- }
+ this._status = 0;
+ this._response = null;
},
- _dragEnterHandler: function( e ) {
- var me = this,
- denied = me._denied || false,
- items;
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ formData, binary, fr;
- e = e.originalEvent || e;
-
- if ( !me.dndOver ) {
- me.dndOver = true;
+ if ( opts.sendAsBinary ) {
+ server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData )) : '';
- // 注意只有 chrome 支持。
- items = e.dataTransfer.items;
+ binary = blob.getSource();
+ } else {
+ formData = new FormData();
+ $.each( owner._formData, function( k, v ) {
+ formData.append( k, v );
+ });
- if ( items && items.length ) {
- me._denied = denied = !me.trigger( 'accept', items );
- }
+ formData.append( opts.fileVal, blob.getSource(),
+ opts.filename || owner._formData.name || '' );
+ }
- me.elem.addClass( prefix + 'over' );
- me.elem[ denied ? 'addClass' :
- 'removeClass' ]( prefix + 'denied' );
+ if ( opts.withCredentials && 'withCredentials' in xhr ) {
+ xhr.open( opts.method, server, true );
+ xhr.withCredentials = true;
+ } else {
+ xhr.open( opts.method, server );
}
- e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+ this._setRequestHeader( xhr, opts.headers );
- return false;
- },
+ if ( binary ) {
+ // 强制设置成 content-type 为文件流。
+ xhr.overrideMimeType &&
+ xhr.overrideMimeType('application/octet-stream');
- _dragOverHandler: function( e ) {
- // 只处理框内的。
- var parentElem = this.elem.parent().get( 0 );
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
- }
+ // android直接发送blob会导致服务端接收到的是空文件。
+ // bug详情。
+ // https://code.google.com/p/android/issues/detail?id=39882
+ // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
+ if ( Base.os.android ) {
+ fr = new FileReader();
- clearTimeout( this._leaveTimer );
- this._dragEnterHandler.call( this, e );
+ fr.onload = function() {
+ xhr.send( this.result );
+ fr = fr.onload = null;
+ };
- return false;
+ fr.readAsArrayBuffer( binary );
+ } else {
+ xhr.send( binary );
+ }
+ } else {
+ xhr.send( formData );
+ }
},
- _dragLeaveHandler: function() {
- var me = this,
- handler;
+ getResponse: function() {
+ return this._response;
+ },
- handler = function() {
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
- };
+ getResponseAsJson: function() {
+ return this._parseJson( this._response );
+ },
- clearTimeout( me._leaveTimer );
- me._leaveTimer = setTimeout( handler, 100 );
- return false;
+ getResponseHeaders: function() {
+ return this._headers;
},
- _dropHandler: function( e ) {
- var me = this,
- ruid = me.getRuid(),
- parentElem = me.elem.parent().get( 0 ),
- dataTransfer, data;
+ getStatus: function() {
+ return this._status;
+ },
- // 只处理框内的。
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
- }
+ abort: function() {
+ var xhr = this._xhr;
- e = e.originalEvent || e;
- dataTransfer = e.dataTransfer;
+ if ( xhr ) {
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ xhr.abort();
- // 如果是页面内拖拽,还不能处理,不阻止事件。
- // 此处 ie11 下会报参数错误,
- try {
- data = dataTransfer.getData('text/html');
- } catch( err ) {
+ this._xhr = xhr = null;
}
+ },
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over' );
+ destroy: function() {
+ this.abort();
+ },
- if ( !dataTransfer || data ) {
- return;
- }
+ _parseHeader: function(raw) {
+ var ret = {};
- me._getTansferFiles( dataTransfer, function( results ) {
- me.trigger( 'drop', $.map( results, function( file ) {
- return new File( ruid, file );
- }) );
+ raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
+ ret[key.trim()] = value.trim();
});
- return false;
+ return ret;
},
- // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
- _getTansferFiles: function( dataTransfer, callback ) {
- var results = [],
- promises = [],
- items, files, file, item, i, len, canAccessFolder;
-
- items = dataTransfer.items;
- files = dataTransfer.files;
-
- canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+ _initAjax: function() {
+ var me = this,
+ xhr = new XMLHttpRequest(),
+ opts = this.options;
- for ( i = 0, len = files.length; i < len; i++ ) {
- file = files[ i ];
- item = items && items[ i ];
+ if ( opts.withCredentials && !('withCredentials' in xhr) &&
+ typeof XDomainRequest !== 'undefined' ) {
+ xhr = new XDomainRequest();
+ }
- if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+ xhr.upload.onprogress = function( e ) {
+ var percentage = 0;
- promises.push( this._traverseDirectoryTree(
- item.webkitGetAsEntry(), results ) );
- } else {
- results.push( file );
+ if ( e.lengthComputable ) {
+ percentage = e.loaded / e.total;
}
- }
- Base.when.apply( Base, promises ).done(function() {
+ return me.trigger( 'progress', percentage );
+ };
- if ( !results.length ) {
+ xhr.onreadystatechange = function() {
+
+ if ( xhr.readyState !== 4 ) {
return;
}
- callback( results );
- });
- },
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ me._xhr = null;
+ me._status = xhr.status;
- _traverseDirectoryTree: function( entry, results ) {
- var deferred = Base.Deferred(),
- me = this;
+ var separator = '|', // 分隔符
+ // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
+ status = separator + xhr.status +
+ separator + xhr.statusText;
- if ( entry.isFile ) {
- entry.file(function( file ) {
- results.push( file );
- deferred.resolve();
- });
- } else if ( entry.isDirectory ) {
- entry.createReader().readEntries(function( entries ) {
- var len = entries.length,
- promises = [],
- arr = [], // 为了保证顺序。
- i;
+ if ( xhr.status >= 200 && xhr.status < 300 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger('load');
+ } else if ( xhr.status >= 500 && xhr.status < 600 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger( 'error', 'server' + status );
+ }
- for ( i = 0; i < len; i++ ) {
- promises.push( me._traverseDirectoryTree(
- entries[ i ], arr ) );
- }
- Base.when.apply( Base, promises ).then(function() {
- results.push.apply( results, arr );
- deferred.resolve();
- }, deferred.reject );
- });
- }
+ return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
+ };
- return deferred.promise();
+ me._xhr = xhr;
+ return xhr;
},
- destroy: function() {
- var elem = this.elem;
-
- // 还没 init 就调用 destroy
- if (!elem) {
- return;
- }
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.setRequestHeader( key, val );
+ });
+ },
- elem.off( 'dragenter', this.dragEnterHandler );
- elem.off( 'dragover', this.dragOverHandler );
- elem.off( 'dragleave', this.dragLeaveHandler );
- elem.off( 'drop', this.dropHandler );
+ _parseJson: function( str ) {
+ var json;
- if ( this.options.disableGlobalDnd ) {
- $( document ).off( 'dragover', this.dragOverHandler );
- $( document ).off( 'drop', this.dropHandler );
+ try {
+ json = JSON.parse( str );
+ } catch ( ex ) {
+ json = {};
}
+
+ return json;
}
});
});
/**
- * @fileOverview FilePaste
+ * @fileOverview FlashRuntime
*/
- define('runtime/html5/filepaste',[
+ define('runtime/flash/runtime',[
'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
- return Html5Runtime.register( 'FilePaste', {
- init: function() {
- var opts = this.options,
- elem = this.elem = opts.container,
- accept = '.*',
- arr, i, len, item;
+ var $ = Base.$,
+ type = 'flash',
+ components = {};
- // accetp的mimeTypes中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].mimeTypes;
- item && arr.push( item );
+ function getFlashVersion() {
+ var version;
+
+ try {
+ version = navigator.plugins[ 'Shockwave Flash' ];
+ version = version.description;
+ } catch ( ex ) {
+ try {
+ version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash')
+ .GetVariable('$version');
+ } catch ( ex2 ) {
+ version = '0.0';
+ }
+ }
+ version = version.match( /\d+/g );
+ return parseFloat( version[ 0 ] + '.' + version[ 1 ], 10 );
+ }
+
+ function FlashRuntime() {
+ var pool = {},
+ clients = {},
+ destroy = this.destroy,
+ me = this,
+ jsreciver = Base.guid('webuploader_');
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/ ) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ clients[ uid ] = client;
+
+ if ( components[ comp ] ) {
+ if ( !pool[ uid ] ) {
+ pool[ uid ] = new components[ comp ]( client, me );
}
- if ( arr.length ) {
- accept = arr.join(',');
- accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
+ instance = pool[ uid ];
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
}
}
- this.accept = accept = new RegExp( accept, 'i' );
- this.hander = Base.bindFn( this._pasteHander, this );
- elem.on( 'paste', this.hander );
+
+ return me.flashExec.apply( client, arguments );
+ };
+
+ function handler( evt, obj ) {
+ var type = evt.type || evt,
+ parts, uid;
+
+ parts = type.split('::');
+ uid = parts[ 0 ];
+ type = parts[ 1 ];
+
+ // console.log.apply( console, arguments );
+
+ if ( type === 'Ready' && uid === me.uid ) {
+ me.trigger('ready');
+ } else if ( clients[ uid ] ) {
+ clients[ uid ].trigger( type.toLowerCase(), evt, obj );
+ }
+
+ // Base.log( evt, obj );
+ }
+
+ // flash的接受器。
+ window[ jsreciver ] = function() {
+ var args = arguments;
+
+ // 为了能捕获得到。
+ setTimeout(function() {
+ handler.apply( null, args );
+ }, 1 );
+ };
+
+ this.jsreciver = jsreciver;
+
+ this.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+
+ this.flashExec = function( comp, fn ) {
+ var flash = me.getFlash(),
+ args = Base.slice( arguments, 2 );
+
+ return flash.exec( this.uid, comp, fn, args );
+ };
+
+ // @todo
+ }
+
+ Base.inherits( Runtime, {
+ constructor: FlashRuntime,
+
+ init: function() {
+ var container = this.getContainer(),
+ opts = this.options,
+ html;
+
+ // if not the minimal height, shims are not initialized
+ // in older browsers (e.g FF3.6, IE6,7,8, Safari 4.0,5.0, etc)
+ container.css({
+ position: 'absolute',
+ top: '-8px',
+ left: '-8px',
+ width: '9px',
+ height: '9px',
+ overflow: 'hidden'
+ });
+
+ // insert flash object
+ html = '';
+
+ container.html( html );
},
- _pasteHander: function( e ) {
- var allowed = [],
- ruid = this.getRuid(),
- items, item, blob, i, len;
+ getFlash: function() {
+ if ( this._flash ) {
+ return this._flash;
+ }
- e = e.originalEvent || e;
- items = e.clipboardData.items;
+ this._flash = $( '#' + this.uid ).get( 0 );
+ return this._flash;
+ }
+
+ });
+
+ FlashRuntime.register = function( name, component ) {
+ component = components[ name ] = Base.inherits( CompBase, $.extend({
+
+ // @todo fix this later
+ flashExec: function() {
+ var owner = this.owner,
+ runtime = this.getRuntime();
+
+ return runtime.flashExec.apply( owner, arguments );
+ }
+ }, component ) );
+
+ return component;
+ };
+
+ if ( getFlashVersion() >= 11.4 ) {
+ Runtime.addRuntime( type, FlashRuntime );
+ }
- for ( i = 0, len = items.length; i < len; i++ ) {
- item = items[ i ];
+ return FlashRuntime;
+ });
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/flash/filepicker',[
+ 'base',
+ 'runtime/flash/runtime'
+ ], function( Base, FlashRuntime ) {
+ var $ = Base.$;
- if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
- continue;
- }
+ return FlashRuntime.register( 'FilePicker', {
+ init: function( opts ) {
+ var copy = $.extend({}, opts ),
+ len, i;
- allowed.push( new File( ruid, blob ) );
+ // 修复Flash再没有设置title的情况下无法弹出flash文件选择框的bug.
+ len = copy.accept && copy.accept.length;
+ for ( i = 0; i < len; i++ ) {
+ if ( !copy.accept[ i ].title ) {
+ copy.accept[ i ].title = 'Files';
+ }
}
- if ( allowed.length ) {
- // 不阻止非文件粘贴(文字粘贴)的事件冒泡
- e.preventDefault();
- e.stopPropagation();
- this.trigger( 'paste', allowed );
- }
+ delete copy.button;
+ delete copy.id;
+ delete copy.container;
+
+ this.flashExec( 'FilePicker', 'init', copy );
},
destroy: function() {
- this.elem.off( 'paste', this.hander );
+ this.flashExec( 'FilePicker', 'destroy' );
}
});
- });
-
+ });
/**
- * @fileOverview FilePicker
+ * @fileOverview Transport flash实现
*/
- define('runtime/html5/filepicker',[
+ define('runtime/flash/transport',[
'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
-
+ 'runtime/flash/runtime',
+ 'runtime/client'
+ ], function( Base, FlashRuntime, RuntimeClient ) {
var $ = Base.$;
- return Html5Runtime.register( 'FilePicker', {
+ return FlashRuntime.register( 'Transport', {
init: function() {
- var container = this.getRuntime().getContainer(),
- me = this,
- owner = me.owner,
- opts = me.options,
- label = this.label = $( document.createElement('label') ),
- input = this.input = $( document.createElement('input') ),
- arr, i, len, mouseHandler, changeHandler;
+ this._status = 0;
+ this._response = null;
+ this._responseJson = null;
+ },
- input.attr( 'type', 'file' );
- input.attr( 'capture', 'camera');
- input.attr( 'name', opts.name );
- input.addClass('webuploader-element-invisible');
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ binary;
- label.on( 'click', function(e) {
- input.trigger('click');
- e.stopPropagation();
- owner.trigger('dialogopen');
- });
+ xhr.connectRuntime( blob.ruid );
- label.css({
- opacity: 0,
- width: '100%',
- height: '100%',
- display: 'block',
- cursor: 'pointer',
- background: '#ffffff'
- });
+ if ( opts.sendAsBinary ) {
+ server += (/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData );
- if ( opts.multiple ) {
- input.attr( 'multiple', 'multiple' );
+ binary = blob.uid;
+ } else {
+ $.each( owner._formData, function( k, v ) {
+ xhr.exec( 'append', k, v );
+ });
+
+ xhr.exec( 'appendBlob', opts.fileVal, blob.uid,
+ opts.filename || owner._formData.name || '' );
}
- // @todo Firefox不支持单独指定后缀
- if ( opts.accept && opts.accept.length > 0 ) {
- arr = [];
+ this._setRequestHeader( xhr, opts.headers );
+ xhr.exec( 'send', {
+ method: opts.method,
+ url: server,
+ forceURLStream: opts.forceURLStream,
+ mimeType: 'application/octet-stream'
+ }, binary );
+ },
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- arr.push( opts.accept[ i ].mimeTypes );
- }
+ getStatus: function() {
+ return this._status;
+ },
- input.attr( 'accept', arr.join(',') );
+ getResponse: function() {
+ return this._response || '';
+ },
+
+ getResponseAsJson: function() {
+ return this._responseJson;
+ },
+
+ getResponseHeaders: function() {
+ // flash 暂不支持
+ return {};
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.exec('abort');
+ xhr.destroy();
+ this._xhr = xhr = null;
}
+ },
- container.append( input );
- container.append( label );
+ destroy: function() {
+ this.abort();
+ },
- mouseHandler = function( e ) {
- owner.trigger( e.type );
- };
+ _initAjax: function() {
+ var me = this,
+ xhr = new RuntimeClient('XMLHttpRequest');
- changeHandler = function( e ) {
- var clone;
+ xhr.on( 'uploadprogress progress', function( e ) {
+ var percent = e.loaded / e.total;
+ percent = Math.min( 1, Math.max( 0, percent ) );
+ return me.trigger( 'progress', percent );
+ });
- // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
- if (e.target.files.length === 0){
- return false;
+ xhr.on( 'load', function() {
+ var status = xhr.exec('getStatus'),
+ readBody = false,
+ err = '',
+ p;
+
+ xhr.off();
+ me._xhr = null;
+
+ if ( status >= 200 && status < 300 ) {
+ readBody = true;
+ } else if ( status >= 500 && status < 600 ) {
+ readBody = true;
+ err = 'server-'+status;
+ } else {
+ err = 'http-'+status;
}
- // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
- me.files = e.target.files;
+ if ( readBody ) {
+ me._response = xhr.exec('getResponse');
+ me._response = decodeURIComponent( me._response );
+ // flash 处理可能存在 bug, 没辙只能靠 js 了
+ // try {
+ // me._responseJson = xhr.exec('getResponseAsJson');
+ // } catch ( error ) {
- // reset input
- clone = this.cloneNode( true );
- clone.value = null;
- this.parentNode.replaceChild( clone, this );
+ p = function( s ) {
+ try {
+ if (window.JSON && window.JSON.parse) {
+ return JSON.parse(s);
+ }
- input.off();
- input = $( clone ).on( 'change', changeHandler )
- .on( 'mouseenter mouseleave', mouseHandler );
+ return new Function('return ' + s).call();
+ } catch ( err ) {
+ return {};
+ }
+ };
+ me._responseJson = me._response ? p(me._response) : {};
- owner.trigger('change');
- }
- input.on( 'change', changeHandler);
- label.on( 'mouseenter mouseleave', mouseHandler );
+ // }
+ }
- },
+ xhr.destroy();
+ xhr = null;
+
+ return err ? me.trigger( 'error', err ) : me.trigger('load');
+ });
+ xhr.on( 'error', function() {
+ var status = xhr.exec('getStatus'),err = status?'http-'+status:'http';
+ xhr.off();
+ me._xhr = null;
+ me.trigger( 'error', err );
+ });
- getFiles: function() {
- return this.files;
+ me._xhr = xhr;
+ return xhr;
},
- destroy: function() {
- this.input.off();
- this.label.off();
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.exec( 'setRequestHeader', key, val );
+ });
}
});
});
- /**
- * @fileOverview Transport
- * @todo 支持chunked传输,优势:
- * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
- * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
- */
- define('runtime/html5/transport',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
-
- var noop = Base.noop,
- $ = Base.$;
-
- return Html5Runtime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- formData, binary, fr;
-
- if ( opts.sendAsBinary ) {
- server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData )) : '';
-
- binary = blob.getSource();
- } else {
- formData = new FormData();
- $.each( owner._formData, function( k, v ) {
- formData.append( k, v );
- });
-
- formData.append( opts.fileVal, blob.getSource(),
- opts.filename || owner._formData.name || '' );
- }
-
- if ( opts.withCredentials && 'withCredentials' in xhr ) {
- xhr.open( opts.method, server, true );
- xhr.withCredentials = true;
- } else {
- xhr.open( opts.method, server );
- }
-
- this._setRequestHeader( xhr, opts.headers );
-
- if ( binary ) {
- // 强制设置成 content-type 为文件流。
- xhr.overrideMimeType &&
- xhr.overrideMimeType('application/octet-stream');
-
- // android直接发送blob会导致服务端接收到的是空文件。
- // bug详情。
- // https://code.google.com/p/android/issues/detail?id=39882
- // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
- if ( Base.os.android ) {
- fr = new FileReader();
-
- fr.onload = function() {
- xhr.send( this.result );
- fr = fr.onload = null;
- };
-
- fr.readAsArrayBuffer( binary );
- } else {
- xhr.send( binary );
- }
- } else {
- xhr.send( formData );
- }
- },
-
- getResponse: function() {
- return this._response;
- },
-
- getResponseAsJson: function() {
- return this._parseJson( this._response );
- },
-
- getResponseHeaders: function() {
- return this._headers;
- },
-
- getStatus: function() {
- return this._status;
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- xhr.abort();
-
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _parseHeader: function(raw) {
- var ret = {};
-
- raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
- ret[key.trim()] = value.trim();
- });
-
- return ret;
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new XMLHttpRequest(),
- opts = this.options;
-
- if ( opts.withCredentials && !('withCredentials' in xhr) &&
- typeof XDomainRequest !== 'undefined' ) {
- xhr = new XDomainRequest();
- }
-
- xhr.upload.onprogress = function( e ) {
- var percentage = 0;
-
- if ( e.lengthComputable ) {
- percentage = e.loaded / e.total;
- }
-
- return me.trigger( 'progress', percentage );
- };
-
- xhr.onreadystatechange = function() {
-
- if ( xhr.readyState !== 4 ) {
- return;
- }
-
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- me._xhr = null;
- me._status = xhr.status;
-
- var separator = '|', // 分隔符
- // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
- status = separator + xhr.status +
- separator + xhr.statusText;
-
- if ( xhr.status >= 200 && xhr.status < 300 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger('load');
- } else if ( xhr.status >= 500 && xhr.status < 600 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger( 'error', 'server' + status );
- }
-
-
- return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
- };
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.setRequestHeader( key, val );
- });
- },
-
- _parseJson: function( str ) {
- var json;
-
- try {
- json = JSON.parse( str );
- } catch ( ex ) {
- json = {};
- }
-
- return json;
- }
- });
- });
-
- /**
- * @fileOverview FlashRuntime
- */
- define('runtime/flash/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var $ = Base.$,
- type = 'flash',
- components = {};
-
-
- function getFlashVersion() {
- var version;
-
- try {
- version = navigator.plugins[ 'Shockwave Flash' ];
- version = version.description;
- } catch ( ex ) {
- try {
- version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash')
- .GetVariable('$version');
- } catch ( ex2 ) {
- version = '0.0';
- }
- }
- version = version.match( /\d+/g );
- return parseFloat( version[ 0 ] + '.' + version[ 1 ], 10 );
- }
-
- function FlashRuntime() {
- var pool = {},
- clients = {},
- destroy = this.destroy,
- me = this,
- jsreciver = Base.guid('webuploader_');
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/ ) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- clients[ uid ] = client;
-
- if ( components[ comp ] ) {
- if ( !pool[ uid ] ) {
- pool[ uid ] = new components[ comp ]( client, me );
- }
-
- instance = pool[ uid ];
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
-
- return me.flashExec.apply( client, arguments );
- };
-
- function handler( evt, obj ) {
- var type = evt.type || evt,
- parts, uid;
-
- parts = type.split('::');
- uid = parts[ 0 ];
- type = parts[ 1 ];
-
- // console.log.apply( console, arguments );
-
- if ( type === 'Ready' && uid === me.uid ) {
- me.trigger('ready');
- } else if ( clients[ uid ] ) {
- clients[ uid ].trigger( type.toLowerCase(), evt, obj );
- }
-
- // Base.log( evt, obj );
- }
-
- // flash的接受器。
- window[ jsreciver ] = function() {
- var args = arguments;
-
- // 为了能捕获得到。
- setTimeout(function() {
- handler.apply( null, args );
- }, 1 );
- };
-
- this.jsreciver = jsreciver;
-
- this.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
-
- this.flashExec = function( comp, fn ) {
- var flash = me.getFlash(),
- args = Base.slice( arguments, 2 );
-
- return flash.exec( this.uid, comp, fn, args );
- };
-
- // @todo
- }
-
- Base.inherits( Runtime, {
- constructor: FlashRuntime,
-
- init: function() {
- var container = this.getContainer(),
- opts = this.options,
- html;
-
- // if not the minimal height, shims are not initialized
- // in older browsers (e.g FF3.6, IE6,7,8, Safari 4.0,5.0, etc)
- container.css({
- position: 'absolute',
- top: '-8px',
- left: '-8px',
- width: '9px',
- height: '9px',
- overflow: 'hidden'
- });
-
- // insert flash object
- html = '';
-
- container.html( html );
- },
-
- getFlash: function() {
- if ( this._flash ) {
- return this._flash;
- }
-
- this._flash = $( '#' + this.uid ).get( 0 );
- return this._flash;
- }
-
- });
-
- FlashRuntime.register = function( name, component ) {
- component = components[ name ] = Base.inherits( CompBase, $.extend({
-
- // @todo fix this later
- flashExec: function() {
- var owner = this.owner,
- runtime = this.getRuntime();
-
- return runtime.flashExec.apply( owner, arguments );
- }
- }, component ) );
-
- return component;
- };
-
- if ( getFlashVersion() >= 11.4 ) {
- Runtime.addRuntime( type, FlashRuntime );
- }
-
- return FlashRuntime;
- });
- /**
- * @fileOverview FilePicker
- */
- define('runtime/flash/filepicker',[
- 'base',
- 'runtime/flash/runtime'
- ], function( Base, FlashRuntime ) {
- var $ = Base.$;
-
- return FlashRuntime.register( 'FilePicker', {
- init: function( opts ) {
- var copy = $.extend({}, opts ),
- len, i;
-
- // 修复Flash再没有设置title的情况下无法弹出flash文件选择框的bug.
- len = copy.accept && copy.accept.length;
- for ( i = 0; i < len; i++ ) {
- if ( !copy.accept[ i ].title ) {
- copy.accept[ i ].title = 'Files';
- }
- }
-
- delete copy.button;
- delete copy.id;
- delete copy.container;
-
- this.flashExec( 'FilePicker', 'init', copy );
- },
-
- destroy: function() {
- this.flashExec( 'FilePicker', 'destroy' );
- }
- });
- });
- /**
- * @fileOverview Transport flash实现
- */
- define('runtime/flash/transport',[
- 'base',
- 'runtime/flash/runtime',
- 'runtime/client'
- ], function( Base, FlashRuntime, RuntimeClient ) {
- var $ = Base.$;
-
- return FlashRuntime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- this._responseJson = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- binary;
-
- xhr.connectRuntime( blob.ruid );
-
- if ( opts.sendAsBinary ) {
- server += (/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData );
-
- binary = blob.uid;
- } else {
- $.each( owner._formData, function( k, v ) {
- xhr.exec( 'append', k, v );
- });
-
- xhr.exec( 'appendBlob', opts.fileVal, blob.uid,
- opts.filename || owner._formData.name || '' );
- }
-
- this._setRequestHeader( xhr, opts.headers );
- xhr.exec( 'send', {
- method: opts.method,
- url: server,
- forceURLStream: opts.forceURLStream,
- mimeType: 'application/octet-stream'
- }, binary );
- },
-
- getStatus: function() {
- return this._status;
- },
-
- getResponse: function() {
- return this._response || '';
- },
-
- getResponseAsJson: function() {
- return this._responseJson;
- },
-
- getResponseHeaders: function() {
- // flash 暂不支持
- return {};
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.exec('abort');
- xhr.destroy();
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new RuntimeClient('XMLHttpRequest');
-
- xhr.on( 'uploadprogress progress', function( e ) {
- var percent = e.loaded / e.total;
- percent = Math.min( 1, Math.max( 0, percent ) );
- return me.trigger( 'progress', percent );
- });
-
- xhr.on( 'load', function() {
- var status = xhr.exec('getStatus'),
- readBody = false,
- err = '',
- p;
-
- xhr.off();
- me._xhr = null;
-
- if ( status >= 200 && status < 300 ) {
- readBody = true;
- } else if ( status >= 500 && status < 600 ) {
- readBody = true;
- err = 'server-'+status;
- } else {
- err = 'http-'+status;
- }
-
- if ( readBody ) {
- me._response = xhr.exec('getResponse');
- me._response = decodeURIComponent( me._response );
-
- // flash 处理可能存在 bug, 没辙只能靠 js 了
- // try {
- // me._responseJson = xhr.exec('getResponseAsJson');
- // } catch ( error ) {
-
- p = function( s ) {
- try {
- if (window.JSON && window.JSON.parse) {
- return JSON.parse(s);
- }
-
- return new Function('return ' + s).call();
- } catch ( err ) {
- return {};
- }
- };
- me._responseJson = me._response ? p(me._response) : {};
-
- // }
- }
-
- xhr.destroy();
- xhr = null;
-
- return err ? me.trigger( 'error', err ) : me.trigger('load');
- });
-
- xhr.on( 'error', function() {
- var status = xhr.exec('getStatus'),err = status?'http-'+status:'http';
- xhr.off();
- me._xhr = null;
- me.trigger( 'error', err );
- });
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.exec( 'setRequestHeader', key, val );
- });
- }
- });
- });
-
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/flash/blob',[
- 'runtime/flash/runtime',
- 'lib/blob'
- ], function( FlashRuntime, Blob ) {
-
- return FlashRuntime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.flashExec( 'Blob', 'slice', start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/flash/blob',[
+ 'runtime/flash/runtime',
+ 'lib/blob'
+ ], function( FlashRuntime, Blob ) {
+
+ return FlashRuntime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.flashExec( 'Blob', 'slice', start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
});
- /**
- * @fileOverview 没有图像处理的版本。
- */
- define('preset/withoutimage',[
- 'base',
-
- // widgets
- 'widgets/filednd',
- 'widgets/filepaste',
- 'widgets/filepicker',
- 'widgets/queue',
- 'widgets/runtime',
- 'widgets/upload',
- 'widgets/validator',
-
- // runtimes
- // html5
- 'runtime/html5/blob',
- 'runtime/html5/dnd',
- 'runtime/html5/filepaste',
- 'runtime/html5/filepicker',
- 'runtime/html5/transport',
-
- // flash
- 'runtime/flash/filepicker',
- 'runtime/flash/transport',
- 'runtime/flash/blob'
- ], function( Base ) {
- return Base;
+ /**
+ * @fileOverview 没有图像处理的版本。
+ */
+ define('preset/withoutimage',[
+ 'base',
+
+ // widgets
+ 'widgets/filednd',
+ 'widgets/filepaste',
+ 'widgets/filepicker',
+ 'widgets/queue',
+ 'widgets/runtime',
+ 'widgets/upload',
+ 'widgets/validator',
+
+ // runtimes
+ // html5
+ 'runtime/html5/blob',
+ 'runtime/html5/dnd',
+ 'runtime/html5/filepaste',
+ 'runtime/html5/filepicker',
+ 'runtime/html5/transport',
+
+ // flash
+ 'runtime/flash/filepicker',
+ 'runtime/flash/transport',
+ 'runtime/flash/blob'
+ ], function( Base ) {
+ return Base;
});
define('webuploader',[
'preset/withoutimage'
], function( preset ) {
return preset;
- });
- return require('webuploader');
-});
+ });
+ return require('webuploader');
+});
diff --git a/dist/webuploader.noimage.min.js b/dist/webuploader.noimage.min.js
index 2c7ef1960..8a540e82a 100644
--- a/dist/webuploader.noimage.min.js
+++ b/dist/webuploader.noimage.min.js
@@ -1,2 +1,2 @@
/* WebUploader 0.1.8-alpha */!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.require,c=a.__dollar||a.jQuery||a.Zepto||b("jquery")||b("zepto");if(!c)throw new Error("jQuery or Zepto not found!");return c}),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.8-alpha",$: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;++e1?(d.isPlainObject(b)&&d.isPlainObject(c[a])?d.extend(c[a],b):c[a]=b,void 0):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?("name"===a&&(g.name=c.name),void 0):(g[a.replace(/[A-Z]/g,"-$&").toLowerCase()]=a,void 0)})):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||c.lastModified&&new Date(c.lastModified).toLocaleString()||(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",style:"webuploader-pick"},b.inherits(c,{constructor:e,init:function(){var c=this,e=c.options,g=e.button,h=e.style;h&&g.addClass("webuploader-pick"),c.on("all",function(a){var b;switch(a){case"mouseenter":h&&g.addClass("webuploader-pick-hover");break;case"mouseleave":h&&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[0]&&b[0].offsetWidth||b.outerWidth()||b.width(),d=b[0]&&b[0].offsetHeight||b.outerHeight()||b.height(),e=b.offset();c&&d&&a.css({bottom:"auto",right:"auto",width:c+"px",height:d+"px"}).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.on("dialogopen",function(){e.owner.trigger("dialogOpen",j.button)}),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("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],this._delFile(a),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)}))},_delFile:function(a){for(var b=this._queue.length-1;b>=0;b--)if(this._queue[b]==a){this._queue.splice(b,1);break}},_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):(b.owner.trigger("error","Q_TYPE_DENIED",a),void 0):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)}),a.length&&(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),b||f.request("start-upload"),void 0;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()},getResponseHeaders:function(){return this.exec("getResponseHeaders")},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,chunkRetryDelay:1e3,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?(b=b.id?b:c.request("get-file",b),b.getStatus()===h.INTERRUPT?(b.setStatus(h.QUEUED),f.each(c.pool,function(a,c){c.file===b&&(c.transport&&c.transport.send(),b.setStatus(h.PROGRESS))})):b.getStatus()!==h.PROGRESS&&b.setStatus(h.QUEUED)):f.each(c.request("get-files",[h.INITED]),function(){this.setStatus(h.QUEUED)}),c.runing)return c.owner.trigger("startUpload",b),a.nextTick(c.__tick);c.runing=!0;var d=[];b||f.each(c.pool,function(a,b){var e=b.file;if(e.getStatus()===h.INTERRUPT){if(c._trigged=!1,d.push(e),b.waiting)return;b.transport?b.transport.send():c._doSend(b)}}),f.each(d,function(){this.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,e){e.file===b&&(e.transport&&e.transport.abort(),c&&(d._putback(e),d._popBlock(e)))}),d.owner.trigger("stopUpload",b),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):(d.pool.length1&&~"http,abort,server".indexOf(a.replace(/-.*/,""))&&b.retried1&&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))},destroy:function(){clearTimeout(this.retryTimer)}})}),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 this.trigger("beforeFileQueuedCheckfileNumLimit",a,c)?(c>=d&&e&&(e=!1,this.trigger("error","Q_EXCEED_NUM_LIMIT",d,a),setTimeout(function(){e=!0},1)),c>=d?!1:!0):!1}),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("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 g.dndOver=!1,g.elem.removeClass(e+"over"),b&&!f?(g._getTansferFiles(b,function(a){g.trigger("drop",d.map(a,function(a){return new c(h,a)}))}),!1):void 0},_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,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("capture","camera"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.on("mouseenter mouseleave",e)},getFiles:function(){return this.files},destroy:function(){this.input.off(),this.label.off()}})}),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+=g.attachInfoToQuery!==!1?(/\?/.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)},getResponseHeaders:function(){return this._headers},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()},_parseHeader:function(a){var b={};return a&&a.replace(/^([^\:]+):(.*)$/gm,function(a,c,d){b[c.trim()]=d.trim()}),b},_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(){if(4===b.readyState){b.upload.onprogress=c,b.onreadystatechange=c,a._xhr=null,a._status=b.status;var d="|",e=d+b.status+d+b.statusText;return b.status>=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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/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='",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/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},getResponseHeaders:function(){return{}},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-"+e):g="http-"+e,f&&(b._response=c.exec("getResponse"),b._response=decodeURIComponent(b._response),d=function(b){try{return a.JSON&&a.JSON.parse?JSON.parse(b):new Function("return "+b).call()}catch(c){return{}}},b._responseJson=b._response?d(b._response):{}),c.destroy(),c=null,g?b.trigger("error",g):b.trigger("load")}),c.on("error",function(){var a=c.exec("getStatus"),d=a?"http-"+a:"http";c.off(),b._xhr=null,b.trigger("error",d)}),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(this.getRuid(),d)}})}),b("preset/withoutimage",["base","widgets/filednd","widgets/filepaste","widgets/filepicker","widgets/queue","widgets/runtime","widgets/upload","widgets/validator","runtime/html5/blob","runtime/html5/dnd","runtime/html5/filepaste","runtime/html5/filepicker","runtime/html5/transport","runtime/flash/filepicker","runtime/flash/transport","runtime/flash/blob"],function(a){return a}),b("webuploader",["preset/withoutimage"],function(a){return a}),c("webuploader")});
\ No newline at end of file
+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("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 g.dndOver=!1,g.elem.removeClass(e+"over"),b&&!f?(g._getTansferFiles(b,function(a){g.trigger("drop",d.map(a,function(a){return new c(h,a)}))}),!1):void 0},_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,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.on("mouseenter mouseleave",e)},getFiles:function(){return this.files},destroy:function(){this.input.off(),this.label.off()}})}),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+=g.attachInfoToQuery!==!1?(/\?/.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)},getResponseHeaders:function(){return this._headers},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()},_parseHeader:function(a){var b={};return a&&a.replace(/^([^\:]+):(.*)$/gm,function(a,c,d){b[c.trim()]=d.trim()}),b},_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(){if(4===b.readyState){b.upload.onprogress=c,b.onreadystatechange=c,a._xhr=null,a._status=b.status;var d="|",e=d+b.status+d+b.statusText;return b.status>=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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/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='",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/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},getResponseHeaders:function(){return{}},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-"+e):g="http-"+e,f&&(b._response=c.exec("getResponse"),b._response=decodeURIComponent(b._response),d=function(b){try{return a.JSON&&a.JSON.parse?JSON.parse(b):new Function("return "+b).call()}catch(c){return{}}},b._responseJson=b._response?d(b._response):{}),c.destroy(),c=null,g?b.trigger("error",g):b.trigger("load")}),c.on("error",function(){var a=c.exec("getStatus"),d=a?"http-"+a:"http";c.off(),b._xhr=null,b.trigger("error",d)}),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(this.getRuid(),d)}})}),b("preset/withoutimage",["base","widgets/filednd","widgets/filepaste","widgets/filepicker","widgets/queue","widgets/runtime","widgets/upload","widgets/validator","runtime/html5/blob","runtime/html5/dnd","runtime/html5/filepaste","runtime/html5/filepicker","runtime/html5/transport","runtime/flash/filepicker","runtime/flash/transport","runtime/flash/blob"],function(a){return a}),b("webuploader",["preset/withoutimage"],function(a){return a}),c("webuploader")});
\ No newline at end of file
diff --git a/dist/webuploader.nolog.js b/dist/webuploader.nolog.js
index 0975009c3..5d6c6ca30 100644
--- a/dist/webuploader.nolog.js
+++ b/dist/webuploader.nolog.js
@@ -1,8149 +1,8149 @@
-/*! WebUploader 0.1.8-alpha */
+/*! WebUploader 0.1.8-alpha */
-/**
- * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
- *
- * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
- */
-(function( root, factory ) {
- var modules = {},
-
- // 内部require, 简单不完全实现。
- // https://github.com/amdjs/amdjs-api/wiki/require
- _require = function( deps, callback ) {
- var args, len, i;
-
- // 如果deps不是数组,则直接返回指定module
- if ( typeof deps === 'string' ) {
- return getModule( deps );
- } else {
- args = [];
- for( len = deps.length, i = 0; i < len; i++ ) {
- args.push( getModule( deps[ i ] ) );
- }
-
- return callback.apply( null, args );
- }
- },
-
- // 内部define,暂时不支持不指定id.
- _define = function( id, deps, factory ) {
- if ( arguments.length === 2 ) {
- factory = deps;
- deps = null;
- }
-
- _require( deps || [], function() {
- setModule( id, factory, arguments );
- });
- },
-
- // 设置module, 兼容CommonJs写法。
- setModule = function( id, factory, args ) {
- var module = {
- exports: factory
- },
- returned;
-
- if ( typeof factory === 'function' ) {
- args.length || (args = [ _require, module.exports, module ]);
- returned = factory.apply( null, args );
- returned !== undefined && (module.exports = returned);
- }
-
- modules[ id ] = module.exports;
- },
-
- // 根据id获取module
- getModule = function( id ) {
- var module = modules[ id ] || root[ id ];
-
- if ( !module ) {
- throw new Error( '`' + id + '` is undefined' );
- }
-
- return module;
- },
-
- // 将所有modules,将路径ids装换成对象。
- exportsTo = function( obj ) {
- var key, host, parts, part, last, ucFirst;
-
- // make the first character upper case.
- ucFirst = function( str ) {
- return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
- };
-
- for ( key in modules ) {
- host = obj;
-
- if ( !modules.hasOwnProperty( key ) ) {
- continue;
- }
-
- parts = key.split('/');
- last = ucFirst( parts.pop() );
-
- while( (part = ucFirst( parts.shift() )) ) {
- host[ part ] = host[ part ] || {};
- host = host[ part ];
- }
-
- host[ last ] = modules[ key ];
- }
-
- return obj;
- },
-
- makeExport = function( dollar ) {
- root.__dollar = dollar;
-
- // exports every module.
- return exportsTo( factory( root, _define, _require ) );
- },
-
- origin;
-
- if ( typeof module === 'object' && typeof module.exports === 'object' ) {
-
- // For CommonJS and CommonJS-like environments where a proper window is present,
- module.exports = makeExport();
- } else if ( typeof define === 'function' && define.amd ) {
-
- // Allow using this built library as an AMD module
- // in another project. That other project will only
- // see this AMD call, not the internal modules in
- // the closure below.
- define([ 'jquery' ], makeExport );
- } else {
-
- // Browser globals case. Just assign the
- // result to a property on the global.
- origin = root.WebUploader;
- root.WebUploader = makeExport();
- root.WebUploader.noConflict = function() {
- root.WebUploader = origin;
- };
- }
-})( window, function( window, define, require ) {
-
+/**
+ * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
+ *
+ * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
+ */
+(function( root, factory ) {
+ var modules = {},
+
+ // 内部require, 简单不完全实现。
+ // https://github.com/amdjs/amdjs-api/wiki/require
+ _require = function( deps, callback ) {
+ var args, len, i;
+
+ // 如果deps不是数组,则直接返回指定module
+ if ( typeof deps === 'string' ) {
+ return getModule( deps );
+ } else {
+ args = [];
+ for( len = deps.length, i = 0; i < len; i++ ) {
+ args.push( getModule( deps[ i ] ) );
+ }
+
+ return callback.apply( null, args );
+ }
+ },
+
+ // 内部define,暂时不支持不指定id.
+ _define = function( id, deps, factory ) {
+ if ( arguments.length === 2 ) {
+ factory = deps;
+ deps = null;
+ }
+
+ _require( deps || [], function() {
+ setModule( id, factory, arguments );
+ });
+ },
+
+ // 设置module, 兼容CommonJs写法。
+ setModule = function( id, factory, args ) {
+ var module = {
+ exports: factory
+ },
+ returned;
+
+ if ( typeof factory === 'function' ) {
+ args.length || (args = [ _require, module.exports, module ]);
+ returned = factory.apply( null, args );
+ returned !== undefined && (module.exports = returned);
+ }
+
+ modules[ id ] = module.exports;
+ },
+
+ // 根据id获取module
+ getModule = function( id ) {
+ var module = modules[ id ] || root[ id ];
+
+ if ( !module ) {
+ throw new Error( '`' + id + '` is undefined' );
+ }
+
+ return module;
+ },
+
+ // 将所有modules,将路径ids装换成对象。
+ exportsTo = function( obj ) {
+ var key, host, parts, part, last, ucFirst;
+
+ // make the first character upper case.
+ ucFirst = function( str ) {
+ return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
+ };
+
+ for ( key in modules ) {
+ host = obj;
+
+ if ( !modules.hasOwnProperty( key ) ) {
+ continue;
+ }
+
+ parts = key.split('/');
+ last = ucFirst( parts.pop() );
+
+ while( (part = ucFirst( parts.shift() )) ) {
+ host[ part ] = host[ part ] || {};
+ host = host[ part ];
+ }
+
+ host[ last ] = modules[ key ];
+ }
+
+ return obj;
+ },
+
+ makeExport = function( dollar ) {
+ root.__dollar = dollar;
+
+ // exports every module.
+ return exportsTo( factory( root, _define, _require ) );
+ },
+
+ origin;
+
+ if ( typeof module === 'object' && typeof module.exports === 'object' ) {
+
+ // For CommonJS and CommonJS-like environments where a proper window is present,
+ module.exports = makeExport();
+ } else if ( typeof define === 'function' && define.amd ) {
+
+ // Allow using this built library as an AMD module
+ // in another project. That other project will only
+ // see this AMD call, not the internal modules in
+ // the closure below.
+ define([ 'jquery' ], makeExport );
+ } else {
+
+ // Browser globals case. Just assign the
+ // result to a property on the global.
+ origin = root.WebUploader;
+ root.WebUploader = makeExport();
+ root.WebUploader.noConflict = function() {
+ root.WebUploader = origin;
+ };
+ }
+})( window, function( window, define, require ) {
+
- /**
- * @fileOverview jQuery or Zepto
- * @require "jquery"
- * @require "zepto"
- */
- define('dollar-third',[],function() {
- var req = window.require;
- var $ = window.__dollar ||
- window.jQuery ||
- window.Zepto ||
- req('jquery') ||
- req('zepto');
-
- if ( !$ ) {
- throw new Error('jQuery or Zepto not found!');
- }
+ /**
+ * @fileOverview jQuery or Zepto
+ * @require "jquery"
+ * @require "zepto"
+ */
+ define('dollar-third',[],function() {
+ var req = window.require;
+ var $ = window.__dollar ||
+ window.jQuery ||
+ window.Zepto ||
+ req('jquery') ||
+ req('zepto');
+
+ if ( !$ ) {
+ throw new Error('jQuery or Zepto not found!');
+ }
+
+ return $;
+ });
- return $;
+ /**
+ * @fileOverview Dom 操作相关
+ */
+ define('dollar',[
+ 'dollar-third'
+ ], function( _ ) {
+ return _;
});
-
- /**
- * @fileOverview Dom 操作相关
- */
- define('dollar',[
- 'dollar-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 使用jQuery的Promise
+ */
+ define('promise-third',[
+ 'dollar'
+ ], function( $ ) {
+ return {
+ Deferred: $.Deferred,
+ when: $.when,
+
+ isPromise: function( anything ) {
+ return anything && typeof anything.then === 'function';
+ }
+ };
});
- /**
- * @fileOverview 使用jQuery的Promise
- */
- define('promise-third',[
- 'dollar'
- ], function( $ ) {
- return {
- Deferred: $.Deferred,
- when: $.when,
-
- isPromise: function( anything ) {
- return anything && typeof anything.then === 'function';
- }
- };
+ /**
+ * @fileOverview Promise/A+
+ */
+ define('promise',[
+ 'promise-third'
+ ], function( _ ) {
+ return _;
});
- /**
- * @fileOverview Promise/A+
- */
- define('promise',[
- 'promise-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 基础类方法。
+ */
+
+ /**
+ * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
+ *
+ * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
+ * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
+ *
+ * * module `base`:WebUploader.Base
+ * * module `file`: WebUploader.File
+ * * module `lib/dnd`: WebUploader.Lib.Dnd
+ * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
+ *
+ *
+ * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
+ * @module WebUploader
+ * @title WebUploader API文档
+ */
+ define('base',[
+ 'dollar',
+ 'promise'
+ ], function( $, promise ) {
+
+ var noop = function() {},
+ call = Function.call;
+
+ // http://jsperf.com/uncurrythis
+ // 反科里化
+ function uncurryThis( fn ) {
+ return function() {
+ return call.apply( fn, arguments );
+ };
+ }
+
+ function bindFn( fn, context ) {
+ return function() {
+ return fn.apply( context, arguments );
+ };
+ }
+
+ function createObject( proto ) {
+ var f;
+
+ if ( Object.create ) {
+ return Object.create( proto );
+ } else {
+ f = function() {};
+ f.prototype = proto;
+ return new f();
+ }
+ }
+
+
+ /**
+ * 基础类,提供一些简单常用的方法。
+ * @class Base
+ */
+ return {
+
+ /**
+ * @property {String} version 当前版本号。
+ */
+ version: '0.1.8-alpha',
+
+ /**
+ * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
+ */
+ $: $,
+
+ Deferred: promise.Deferred,
+
+ isPromise: promise.isPromise,
+
+ when: promise.when,
+
+ /**
+ * @description 简单的浏览器检查结果。
+ *
+ * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
+ * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
+ * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
+ * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
+ * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
+ * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
+ *
+ * @property {Object} [browser]
+ */
+ browser: (function( ua ) {
+ var ret = {},
+ webkit = ua.match( /WebKit\/([\d.]+)/ ),
+ chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
+ ua.match( /CriOS\/([\d.]+)/ ),
+
+ ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
+ ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
+ firefox = ua.match( /Firefox\/([\d.]+)/ ),
+ safari = ua.match( /Safari\/([\d.]+)/ ),
+ opera = ua.match( /OPR\/([\d.]+)/ );
+
+ webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
+ chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
+ ie && (ret.ie = parseFloat( ie[ 1 ] ));
+ firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
+ safari && (ret.safari = parseFloat( safari[ 1 ] ));
+ opera && (ret.opera = parseFloat( opera[ 1 ] ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * @description 操作系统检查结果。
+ *
+ * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
+ * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
+ * @property {Object} [os]
+ */
+ os: (function( ua ) {
+ var ret = {},
+
+ // osx = !!ua.match( /\(Macintosh\; Intel / ),
+ android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
+ ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
+
+ // osx && (ret.osx = true);
+ android && (ret.android = parseFloat( android[ 1 ] ));
+ ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * 实现类与类之间的继承。
+ * @method inherits
+ * @grammar Base.inherits( super ) => child
+ * @grammar Base.inherits( super, protos ) => child
+ * @grammar Base.inherits( super, protos, statics ) => child
+ * @param {Class} super 父类
+ * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
+ * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
+ * @param {Object} [statics] 静态属性或方法。
+ * @return {Class} 返回子类。
+ * @example
+ * function Person() {
+ * console.log( 'Super' );
+ * }
+ * Person.prototype.hello = function() {
+ * console.log( 'hello' );
+ * };
+ *
+ * var Manager = Base.inherits( Person, {
+ * world: function() {
+ * console.log( 'World' );
+ * }
+ * });
+ *
+ * // 因为没有指定构造器,父类的构造器将会执行。
+ * var instance = new Manager(); // => Super
+ *
+ * // 继承子父类的方法
+ * instance.hello(); // => hello
+ * instance.world(); // => World
+ *
+ * // 子类的__super__属性指向父类
+ * console.log( Manager.__super__ === Person ); // => true
+ */
+ inherits: function( Super, protos, staticProtos ) {
+ var child;
+
+ if ( typeof protos === 'function' ) {
+ child = protos;
+ protos = null;
+ } else if ( protos && protos.hasOwnProperty('constructor') ) {
+ child = protos.constructor;
+ } else {
+ child = function() {
+ return Super.apply( this, arguments );
+ };
+ }
+
+ // 复制静态方法
+ $.extend( true, child, Super, staticProtos || {} );
+
+ /* jshint camelcase: false */
+
+ // 让子类的__super__属性指向父类。
+ child.__super__ = Super.prototype;
+
+ // 构建原型,添加原型方法或属性。
+ // 暂时用Object.create实现。
+ child.prototype = createObject( Super.prototype );
+ protos && $.extend( true, child.prototype, protos );
+
+ return child;
+ },
+
+ /**
+ * 一个不做任何事情的方法。可以用来赋值给默认的callback.
+ * @method noop
+ */
+ noop: noop,
+
+ /**
+ * 返回一个新的方法,此方法将已指定的`context`来执行。
+ * @grammar Base.bindFn( fn, context ) => Function
+ * @method bindFn
+ * @example
+ * var doSomething = function() {
+ * console.log( this.name );
+ * },
+ * obj = {
+ * name: 'Object Name'
+ * },
+ * aliasFn = Base.bind( doSomething, obj );
+ *
+ * aliasFn(); // => Object Name
+ *
+ */
+ bindFn: bindFn,
+
+ /**
+ * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
+ * @grammar Base.log( args... ) => undefined
+ * @method log
+ */
+ log: (function() {
+ if ( window.console ) {
+ return bindFn( console.log, console );
+ }
+ return noop;
+ })(),
+
+ nextTick: (function() {
+
+ return function( cb ) {
+ setTimeout( cb, 1 );
+ };
+
+ // @bug 当浏览器不在当前窗口时就停了。
+ // var next = window.requestAnimationFrame ||
+ // window.webkitRequestAnimationFrame ||
+ // window.mozRequestAnimationFrame ||
+ // function( cb ) {
+ // window.setTimeout( cb, 1000 / 60 );
+ // };
+
+ // // fix: Uncaught TypeError: Illegal invocation
+ // return bindFn( next, window );
+ })(),
+
+ /**
+ * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
+ * 将用来将非数组对象转化成数组对象。
+ * @grammar Base.slice( target, start[, end] ) => Array
+ * @method slice
+ * @example
+ * function doSomthing() {
+ * var args = Base.slice( arguments, 1 );
+ * console.log( args );
+ * }
+ *
+ * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
+ */
+ slice: uncurryThis( [].slice ),
+
+ /**
+ * 生成唯一的ID
+ * @method guid
+ * @grammar Base.guid() => String
+ * @grammar Base.guid( prefx ) => String
+ */
+ guid: (function() {
+ var counter = 0;
+
+ return function( prefix ) {
+ var guid = (+new Date()).toString( 32 ),
+ i = 0;
+
+ for ( ; i < 5; i++ ) {
+ guid += Math.floor( Math.random() * 65535 ).toString( 32 );
+ }
+
+ return (prefix || 'wu_') + guid + (counter++).toString( 32 );
+ };
+ })(),
+
+ /**
+ * 格式化文件大小, 输出成带单位的字符串
+ * @method formatSize
+ * @grammar Base.formatSize( size ) => String
+ * @grammar Base.formatSize( size, pointLength ) => String
+ * @grammar Base.formatSize( size, pointLength, units ) => String
+ * @param {Number} size 文件大小
+ * @param {Number} [pointLength=2] 精确到的小数点数。
+ * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
+ * @example
+ * console.log( Base.formatSize( 100 ) ); // => 100B
+ * console.log( Base.formatSize( 1024 ) ); // => 1.00K
+ * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
+ * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
+ * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
+ * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
+ */
+ formatSize: function( size, pointLength, units ) {
+ var unit;
+
+ units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
+
+ while ( (unit = units.shift()) && size > 1024 ) {
+ size = size / 1024;
+ }
+
+ return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
+ unit;
+ }
+ };
});
- /**
- * @fileOverview 基础类方法。
- */
-
- /**
- * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
- *
- * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
- * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
- *
- * * module `base`:WebUploader.Base
- * * module `file`: WebUploader.File
- * * module `lib/dnd`: WebUploader.Lib.Dnd
- * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
- *
- *
- * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
- * @module WebUploader
- * @title WebUploader API文档
- */
- define('base',[
- 'dollar',
- 'promise'
- ], function( $, promise ) {
-
- var noop = function() {},
- call = Function.call;
-
- // http://jsperf.com/uncurrythis
- // 反科里化
- function uncurryThis( fn ) {
- return function() {
- return call.apply( fn, arguments );
- };
- }
-
- function bindFn( fn, context ) {
- return function() {
- return fn.apply( context, arguments );
- };
- }
-
- function createObject( proto ) {
- var f;
-
- if ( Object.create ) {
- return Object.create( proto );
- } else {
- f = function() {};
- f.prototype = proto;
- return new f();
- }
- }
-
-
- /**
- * 基础类,提供一些简单常用的方法。
- * @class Base
- */
- return {
-
- /**
- * @property {String} version 当前版本号。
- */
- version: '0.1.8-alpha',
-
- /**
- * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
- */
- $: $,
-
- Deferred: promise.Deferred,
-
- isPromise: promise.isPromise,
-
- when: promise.when,
-
- /**
- * @description 简单的浏览器检查结果。
- *
- * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
- * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
- * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
- * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
- * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
- * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
- *
- * @property {Object} [browser]
- */
- browser: (function( ua ) {
- var ret = {},
- webkit = ua.match( /WebKit\/([\d.]+)/ ),
- chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
- ua.match( /CriOS\/([\d.]+)/ ),
-
- ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
- ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
- firefox = ua.match( /Firefox\/([\d.]+)/ ),
- safari = ua.match( /Safari\/([\d.]+)/ ),
- opera = ua.match( /OPR\/([\d.]+)/ );
-
- webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
- chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
- ie && (ret.ie = parseFloat( ie[ 1 ] ));
- firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
- safari && (ret.safari = parseFloat( safari[ 1 ] ));
- opera && (ret.opera = parseFloat( opera[ 1 ] ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * @description 操作系统检查结果。
- *
- * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
- * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
- * @property {Object} [os]
- */
- os: (function( ua ) {
- var ret = {},
-
- // osx = !!ua.match( /\(Macintosh\; Intel / ),
- android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
- ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
-
- // osx && (ret.osx = true);
- android && (ret.android = parseFloat( android[ 1 ] ));
- ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * 实现类与类之间的继承。
- * @method inherits
- * @grammar Base.inherits( super ) => child
- * @grammar Base.inherits( super, protos ) => child
- * @grammar Base.inherits( super, protos, statics ) => child
- * @param {Class} super 父类
- * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
- * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
- * @param {Object} [statics] 静态属性或方法。
- * @return {Class} 返回子类。
- * @example
- * function Person() {
- * console.log( 'Super' );
- * }
- * Person.prototype.hello = function() {
- * console.log( 'hello' );
- * };
- *
- * var Manager = Base.inherits( Person, {
- * world: function() {
- * console.log( 'World' );
- * }
- * });
- *
- * // 因为没有指定构造器,父类的构造器将会执行。
- * var instance = new Manager(); // => Super
- *
- * // 继承子父类的方法
- * instance.hello(); // => hello
- * instance.world(); // => World
- *
- * // 子类的__super__属性指向父类
- * console.log( Manager.__super__ === Person ); // => true
- */
- inherits: function( Super, protos, staticProtos ) {
- var child;
-
- if ( typeof protos === 'function' ) {
- child = protos;
- protos = null;
- } else if ( protos && protos.hasOwnProperty('constructor') ) {
- child = protos.constructor;
- } else {
- child = function() {
- return Super.apply( this, arguments );
- };
- }
-
- // 复制静态方法
- $.extend( true, child, Super, staticProtos || {} );
-
- /* jshint camelcase: false */
-
- // 让子类的__super__属性指向父类。
- child.__super__ = Super.prototype;
-
- // 构建原型,添加原型方法或属性。
- // 暂时用Object.create实现。
- child.prototype = createObject( Super.prototype );
- protos && $.extend( true, child.prototype, protos );
-
- return child;
- },
-
- /**
- * 一个不做任何事情的方法。可以用来赋值给默认的callback.
- * @method noop
- */
- noop: noop,
-
- /**
- * 返回一个新的方法,此方法将已指定的`context`来执行。
- * @grammar Base.bindFn( fn, context ) => Function
- * @method bindFn
- * @example
- * var doSomething = function() {
- * console.log( this.name );
- * },
- * obj = {
- * name: 'Object Name'
- * },
- * aliasFn = Base.bind( doSomething, obj );
- *
- * aliasFn(); // => Object Name
- *
- */
- bindFn: bindFn,
-
- /**
- * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
- * @grammar Base.log( args... ) => undefined
- * @method log
- */
- log: (function() {
- if ( window.console ) {
- return bindFn( console.log, console );
- }
- return noop;
- })(),
-
- nextTick: (function() {
-
- return function( cb ) {
- setTimeout( cb, 1 );
- };
-
- // @bug 当浏览器不在当前窗口时就停了。
- // var next = window.requestAnimationFrame ||
- // window.webkitRequestAnimationFrame ||
- // window.mozRequestAnimationFrame ||
- // function( cb ) {
- // window.setTimeout( cb, 1000 / 60 );
- // };
-
- // // fix: Uncaught TypeError: Illegal invocation
- // return bindFn( next, window );
- })(),
-
- /**
- * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
- * 将用来将非数组对象转化成数组对象。
- * @grammar Base.slice( target, start[, end] ) => Array
- * @method slice
- * @example
- * function doSomthing() {
- * var args = Base.slice( arguments, 1 );
- * console.log( args );
- * }
- *
- * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
- */
- slice: uncurryThis( [].slice ),
-
- /**
- * 生成唯一的ID
- * @method guid
- * @grammar Base.guid() => String
- * @grammar Base.guid( prefx ) => String
- */
- guid: (function() {
- var counter = 0;
-
- return function( prefix ) {
- var guid = (+new Date()).toString( 32 ),
- i = 0;
-
- for ( ; i < 5; i++ ) {
- guid += Math.floor( Math.random() * 65535 ).toString( 32 );
- }
-
- return (prefix || 'wu_') + guid + (counter++).toString( 32 );
- };
- })(),
-
- /**
- * 格式化文件大小, 输出成带单位的字符串
- * @method formatSize
- * @grammar Base.formatSize( size ) => String
- * @grammar Base.formatSize( size, pointLength ) => String
- * @grammar Base.formatSize( size, pointLength, units ) => String
- * @param {Number} size 文件大小
- * @param {Number} [pointLength=2] 精确到的小数点数。
- * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
- * @example
- * console.log( Base.formatSize( 100 ) ); // => 100B
- * console.log( Base.formatSize( 1024 ) ); // => 1.00K
- * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
- * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
- * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
- * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
- */
- formatSize: function( size, pointLength, units ) {
- var unit;
-
- units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
-
- while ( (unit = units.shift()) && size > 1024 ) {
- size = size / 1024;
- }
-
- return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
- unit;
- }
- };
+ /**
+ * 事件处理类,可以独立使用,也可以扩展给对象使用。
+ * @fileOverview Mediator
+ */
+ define('mediator',[
+ 'base'
+ ], function( Base ) {
+ var $ = Base.$,
+ slice = [].slice,
+ separator = /\s+/,
+ protos;
+
+ // 根据条件过滤出事件handlers.
+ function findHandlers( arr, name, callback, context ) {
+ return $.grep( arr, function( handler ) {
+ return handler &&
+ (!name || handler.e === name) &&
+ (!callback || handler.cb === callback ||
+ handler.cb._cb === callback) &&
+ (!context || handler.ctx === context);
+ });
+ }
+
+ function eachEvent( events, callback, iterator ) {
+ // 不支持对象,只支持多个event用空格隔开
+ $.each( (events || '').split( separator ), function( _, key ) {
+ iterator( key, callback );
+ });
+ }
+
+ function triggerHanders( events, args ) {
+ var stoped = false,
+ i = -1,
+ len = events.length,
+ handler;
+
+ while ( ++i < len ) {
+ handler = events[ i ];
+
+ if ( handler.cb.apply( handler.ctx2, args ) === false ) {
+ stoped = true;
+ break;
+ }
+ }
+
+ return !stoped;
+ }
+
+ protos = {
+
+ /**
+ * 绑定事件。
+ *
+ * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
+ * ```javascript
+ * var obj = {};
+ *
+ * // 使得obj有事件行为
+ * Mediator.installTo( obj );
+ *
+ * obj.on( 'testa', function( arg1, arg2 ) {
+ * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
+ * });
+ *
+ * obj.trigger( 'testa', 'arg1', 'arg2' );
+ * ```
+ *
+ * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
+ * 切会影响到`trigger`方法的返回值,为`false`。
+ *
+ * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
+ * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
+ * ```javascript
+ * obj.on( 'all', function( type, arg1, arg2 ) {
+ * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
+ * });
+ * ```
+ *
+ * @method on
+ * @grammar on( name, callback[, context] ) => self
+ * @param {String} name 事件名,支持多个事件用空格隔开
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ * @class Mediator
+ */
+ on: function( name, callback, context ) {
+ var me = this,
+ set;
+
+ if ( !callback ) {
+ return this;
+ }
+
+ set = this._events || (this._events = []);
+
+ eachEvent( name, callback, function( name, callback ) {
+ var handler = { e: name };
+
+ handler.cb = callback;
+ handler.ctx = context;
+ handler.ctx2 = context || me;
+ handler.id = set.length;
+
+ set.push( handler );
+ });
+
+ return this;
+ },
+
+ /**
+ * 绑定事件,且当handler执行完后,自动解除绑定。
+ * @method once
+ * @grammar once( name, callback[, context] ) => self
+ * @param {String} name 事件名
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ once: function( name, callback, context ) {
+ var me = this;
+
+ if ( !callback ) {
+ return me;
+ }
+
+ eachEvent( name, callback, function( name, callback ) {
+ var once = function() {
+ me.off( name, once );
+ return callback.apply( context || me, arguments );
+ };
+
+ once._cb = callback;
+ me.on( name, once, context );
+ });
+
+ return me;
+ },
+
+ /**
+ * 解除事件绑定
+ * @method off
+ * @grammar off( [name[, callback[, context] ] ] ) => self
+ * @param {String} [name] 事件名
+ * @param {Function} [callback] 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ off: function( name, cb, ctx ) {
+ var events = this._events;
+
+ if ( !events ) {
+ return this;
+ }
+
+ if ( !name && !cb && !ctx ) {
+ this._events = [];
+ return this;
+ }
+
+ eachEvent( name, cb, function( name, cb ) {
+ $.each( findHandlers( events, name, cb, ctx ), function() {
+ delete events[ this.id ];
+ });
+ });
+
+ return this;
+ },
+
+ /**
+ * 触发事件
+ * @method trigger
+ * @grammar trigger( name[, args...] ) => self
+ * @param {String} type 事件名
+ * @param {*} [...] 任意参数
+ * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
+ */
+ trigger: function( type ) {
+ var args, events, allEvents;
+
+ if ( !this._events || !type ) {
+ return this;
+ }
+
+ args = slice.call( arguments, 1 );
+ events = findHandlers( this._events, type );
+ allEvents = findHandlers( this._events, 'all' );
+
+ return triggerHanders( events, args ) &&
+ triggerHanders( allEvents, arguments );
+ }
+ };
+
+ /**
+ * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
+ * 主要目的是负责模块与模块之间的合作,降低耦合度。
+ *
+ * @class Mediator
+ */
+ return $.extend({
+
+ /**
+ * 可以通过这个接口,使任何对象具备事件功能。
+ * @method installTo
+ * @param {Object} obj 需要具备事件行为的对象。
+ * @return {Object} 返回obj.
+ */
+ installTo: function( obj ) {
+ return $.extend( obj, protos );
+ }
+
+ }, protos );
});
- /**
- * 事件处理类,可以独立使用,也可以扩展给对象使用。
- * @fileOverview Mediator
- */
- define('mediator',[
- 'base'
- ], function( Base ) {
- var $ = Base.$,
- slice = [].slice,
- separator = /\s+/,
- protos;
-
- // 根据条件过滤出事件handlers.
- function findHandlers( arr, name, callback, context ) {
- return $.grep( arr, function( handler ) {
- return handler &&
- (!name || handler.e === name) &&
- (!callback || handler.cb === callback ||
- handler.cb._cb === callback) &&
- (!context || handler.ctx === context);
- });
- }
-
- function eachEvent( events, callback, iterator ) {
- // 不支持对象,只支持多个event用空格隔开
- $.each( (events || '').split( separator ), function( _, key ) {
- iterator( key, callback );
- });
- }
-
- function triggerHanders( events, args ) {
- var stoped = false,
- i = -1,
- len = events.length,
- handler;
-
- while ( ++i < len ) {
- handler = events[ i ];
-
- if ( handler.cb.apply( handler.ctx2, args ) === false ) {
- stoped = true;
- break;
- }
- }
-
- return !stoped;
- }
-
- protos = {
-
- /**
- * 绑定事件。
- *
- * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
- * ```javascript
- * var obj = {};
- *
- * // 使得obj有事件行为
- * Mediator.installTo( obj );
- *
- * obj.on( 'testa', function( arg1, arg2 ) {
- * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
- * });
- *
- * obj.trigger( 'testa', 'arg1', 'arg2' );
- * ```
- *
- * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
- * 切会影响到`trigger`方法的返回值,为`false`。
- *
- * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
- * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
- * ```javascript
- * obj.on( 'all', function( type, arg1, arg2 ) {
- * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
- * });
- * ```
- *
- * @method on
- * @grammar on( name, callback[, context] ) => self
- * @param {String} name 事件名,支持多个事件用空格隔开
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- * @class Mediator
- */
- on: function( name, callback, context ) {
- var me = this,
- set;
+ /**
+ * @fileOverview Uploader上传类
+ */
+ define('uploader',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$;
+
+ /**
+ * 上传入口类。
+ * @class Uploader
+ * @constructor
+ * @grammar new Uploader( opts ) => Uploader
+ * @example
+ * var uploader = WebUploader.Uploader({
+ * swf: 'path_of_swf/Uploader.swf',
+ *
+ * // 开起分片上传。
+ * chunked: true
+ * });
+ */
+ function Uploader( opts ) {
+ this.options = $.extend( true, {}, Uploader.options, opts );
+ this._init( this.options );
+ }
+
+ // default Options
+ // widgets中有相应扩展
+ Uploader.options = {};
+ Mediator.installTo( Uploader.prototype );
+
+ // 批量添加纯命令式方法。
+ $.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( fn, command ) {
+ Uploader.prototype[ fn ] = function() {
+ return this.request( command, arguments );
+ };
+ });
+
+ $.extend( Uploader.prototype, {
+ state: 'pending',
+
+ _init: function( opts ) {
+ var me = this;
+
+ me.request( 'init', opts, function() {
+ me.state = 'ready';
+ me.trigger('ready');
+ });
+ },
+
+ /**
+ * 获取或者设置Uploader配置项。
+ * @method option
+ * @grammar option( key ) => *
+ * @grammar option( key, val ) => self
+ * @example
+ *
+ * // 初始状态图片上传前不会压缩
+ * var uploader = new WebUploader.Uploader({
+ * compress: null;
+ * });
+ *
+ * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
+ * uploader.option( 'compress', {
+ * width: 1600,
+ * height: 1600
+ * });
+ */
+ option: function( key, val ) {
+ var opts = this.options;
+
+ // setter
+ if ( arguments.length > 1 ) {
+
+ if ( $.isPlainObject( val ) &&
+ $.isPlainObject( opts[ key ] ) ) {
+ $.extend( opts[ key ], val );
+ } else {
+ opts[ key ] = val;
+ }
+
+ } else { // getter
+ return key ? opts[ key ] : opts;
+ }
+ },
+
+ /**
+ * 获取文件统计信息。返回一个包含一下信息的对象。
+ * * `successNum` 上传成功的文件数
+ * * `progressNum` 上传中的文件数
+ * * `cancelNum` 被删除的文件数
+ * * `invalidNum` 无效的文件数
+ * * `uploadFailNum` 上传失败的文件数
+ * * `queueNum` 还在队列中的文件数
+ * * `interruptNum` 被暂停的文件数
+ * @method getStats
+ * @grammar getStats() => Object
+ */
+ getStats: function() {
+ // return this._mgr.getStats.apply( this._mgr, arguments );
+ var stats = this.request('get-stats');
+
+ return stats ? {
+ successNum: stats.numOfSuccess,
+ progressNum: stats.numOfProgress,
+
+ // who care?
+ // queueFailNum: 0,
+ cancelNum: stats.numOfCancel,
+ invalidNum: stats.numOfInvalid,
+ uploadFailNum: stats.numOfUploadFailed,
+ queueNum: stats.numOfQueue,
+ interruptNum: stats.numOfInterrupt
+ } : {};
+ },
+
+ // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
+ trigger: function( type/*, args...*/ ) {
+ var args = [].slice.call( arguments, 1 ),
+ opts = this.options,
+ name = 'on' + type.substring( 0, 1 ).toUpperCase() +
+ type.substring( 1 );
+
+ if (
+ // 调用通过on方法注册的handler.
+ Mediator.trigger.apply( this, arguments ) === false ||
+
+ // 调用opts.onEvent
+ $.isFunction( opts[ name ] ) &&
+ opts[ name ].apply( this, args ) === false ||
+
+ // 调用this.onEvent
+ $.isFunction( this[ name ] ) &&
+ this[ name ].apply( this, args ) === false ||
+
+ // 广播所有uploader的事件。
+ Mediator.trigger.apply( Mediator,
+ [ this, type ].concat( args ) ) === false ) {
+
+ return false;
+ }
+
+ return true;
+ },
+
+ /**
+ * 销毁 webuploader 实例
+ * @method destroy
+ * @grammar destroy() => undefined
+ */
+ destroy: function() {
+ this.request( 'destroy', arguments );
+ this.off();
+ },
+
+ // widgets/widget.js将补充此方法的详细文档。
+ request: Base.noop
+ });
+
+ /**
+ * 创建Uploader实例,等同于new Uploader( opts );
+ * @method create
+ * @class Base
+ * @static
+ * @grammar Base.create( opts ) => Uploader
+ */
+ Base.create = Uploader.create = function( opts ) {
+ return new Uploader( opts );
+ };
+
+ // 暴露Uploader,可以通过它来扩展业务逻辑。
+ Base.Uploader = Uploader;
+
+ return Uploader;
+ });
- if ( !callback ) {
- return this;
- }
-
- set = this._events || (this._events = []);
-
- eachEvent( name, callback, function( name, callback ) {
- var handler = { e: name };
-
- handler.cb = callback;
- handler.ctx = context;
- handler.ctx2 = context || me;
- handler.id = set.length;
-
- set.push( handler );
- });
-
- return this;
- },
-
- /**
- * 绑定事件,且当handler执行完后,自动解除绑定。
- * @method once
- * @grammar once( name, callback[, context] ) => self
- * @param {String} name 事件名
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- once: function( name, callback, context ) {
- var me = this;
-
- if ( !callback ) {
- return me;
- }
-
- eachEvent( name, callback, function( name, callback ) {
- var once = function() {
- me.off( name, once );
- return callback.apply( context || me, arguments );
- };
-
- once._cb = callback;
- me.on( name, once, context );
- });
-
- return me;
- },
-
- /**
- * 解除事件绑定
- * @method off
- * @grammar off( [name[, callback[, context] ] ] ) => self
- * @param {String} [name] 事件名
- * @param {Function} [callback] 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- off: function( name, cb, ctx ) {
- var events = this._events;
-
- if ( !events ) {
- return this;
- }
-
- if ( !name && !cb && !ctx ) {
- this._events = [];
- return this;
- }
-
- eachEvent( name, cb, function( name, cb ) {
- $.each( findHandlers( events, name, cb, ctx ), function() {
- delete events[ this.id ];
- });
- });
-
- return this;
- },
-
- /**
- * 触发事件
- * @method trigger
- * @grammar trigger( name[, args...] ) => self
- * @param {String} type 事件名
- * @param {*} [...] 任意参数
- * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
- */
- trigger: function( type ) {
- var args, events, allEvents;
-
- if ( !this._events || !type ) {
- return this;
- }
-
- args = slice.call( arguments, 1 );
- events = findHandlers( this._events, type );
- allEvents = findHandlers( this._events, 'all' );
-
- return triggerHanders( events, args ) &&
- triggerHanders( allEvents, arguments );
- }
- };
-
- /**
- * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
- * 主要目的是负责模块与模块之间的合作,降低耦合度。
- *
- * @class Mediator
- */
- return $.extend({
-
- /**
- * 可以通过这个接口,使任何对象具备事件功能。
- * @method installTo
- * @param {Object} obj 需要具备事件行为的对象。
- * @return {Object} 返回obj.
- */
- installTo: function( obj ) {
- return $.extend( obj, protos );
- }
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/runtime',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ factories = {},
+
+ // 获取对象的第一个key
+ getFirstKey = function( obj ) {
+ for ( var key in obj ) {
+ if ( obj.hasOwnProperty( key ) ) {
+ return key;
+ }
+ }
+ return null;
+ };
+
+ // 接口类。
+ function Runtime( options ) {
+ this.options = $.extend({
+ container: document.body
+ }, options );
+ this.uid = Base.guid('rt_');
+ }
+
+ $.extend( Runtime.prototype, {
+
+ getContainer: function() {
+ var opts = this.options,
+ parent, container;
+
+ if ( this._container ) {
+ return this._container;
+ }
+
+ parent = $( opts.container || document.body );
+ container = $( document.createElement('div') );
+
+ container.attr( 'id', 'rt_' + this.uid );
+ container.css({
+ position: 'absolute',
+ top: '0px',
+ left: '0px',
+ width: '1px',
+ height: '1px',
+ overflow: 'hidden'
+ });
+
+ parent.append( container );
+ parent.addClass('webuploader-container');
+ this._container = container;
+ this._parent = parent;
+ return container;
+ },
+
+ init: Base.noop,
+ exec: Base.noop,
+
+ destroy: function() {
+ this._container && this._container.remove();
+ this._parent && this._parent.removeClass('webuploader-container');
+ this.off();
+ }
+ });
+
+ Runtime.orders = 'html5,flash';
+
+
+ /**
+ * 添加Runtime实现。
+ * @param {String} type 类型
+ * @param {Runtime} factory 具体Runtime实现。
+ */
+ Runtime.addRuntime = function( type, factory ) {
+ factories[ type ] = factory;
+ };
+
+ Runtime.hasRuntime = function( type ) {
+ return !!(type ? factories[ type ] : getFirstKey( factories ));
+ };
+
+ Runtime.create = function( opts, orders ) {
+ var type, runtime;
+
+ orders = orders || Runtime.orders;
+ $.each( orders.split( /\s*,\s*/g ), function() {
+ if ( factories[ this ] ) {
+ type = this;
+ return false;
+ }
+ });
+
+ type = type || getFirstKey( factories );
+
+ if ( !type ) {
+ throw new Error('Runtime Error');
+ }
+
+ runtime = new factories[ type ]( opts );
+ return runtime;
+ };
+
+ Mediator.installTo( Runtime.prototype );
+ return Runtime;
+ });
- }, protos );
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/client',[
+ 'base',
+ 'mediator',
+ 'runtime/runtime'
+ ], function( Base, Mediator, Runtime ) {
+
+ var cache;
+
+ cache = (function() {
+ var obj = {};
+
+ return {
+ add: function( runtime ) {
+ obj[ runtime.uid ] = runtime;
+ },
+
+ get: function( ruid, standalone ) {
+ var i;
+
+ if ( ruid ) {
+ return obj[ ruid ];
+ }
+
+ for ( i in obj ) {
+ // 有些类型不能重用,比如filepicker.
+ if ( standalone && obj[ i ].__standalone ) {
+ continue;
+ }
+
+ return obj[ i ];
+ }
+
+ return null;
+ },
+
+ remove: function( runtime ) {
+ delete obj[ runtime.uid ];
+ }
+ };
+ })();
+
+ function RuntimeClient( component, standalone ) {
+ var deferred = Base.Deferred(),
+ runtime;
+
+ this.uid = Base.guid('client_');
+
+ // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
+ this.runtimeReady = function( cb ) {
+ return deferred.done( cb );
+ };
+
+ this.connectRuntime = function( opts, cb ) {
+
+ // already connected.
+ if ( runtime ) {
+ throw new Error('already connected!');
+ }
+
+ deferred.done( cb );
+
+ if ( typeof opts === 'string' && cache.get( opts ) ) {
+ runtime = cache.get( opts );
+ }
+
+ // 像filePicker只能独立存在,不能公用。
+ runtime = runtime || cache.get( null, standalone );
+
+ // 需要创建
+ if ( !runtime ) {
+ runtime = Runtime.create( opts, opts.runtimeOrder );
+ runtime.__promise = deferred.promise();
+ runtime.once( 'ready', deferred.resolve );
+ runtime.init();
+ cache.add( runtime );
+ runtime.__client = 1;
+ } else {
+ // 来自cache
+ Base.$.extend( runtime.options, opts );
+ runtime.__promise.then( deferred.resolve );
+ runtime.__client++;
+ }
+
+ standalone && (runtime.__standalone = standalone);
+ return runtime;
+ };
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.disconnectRuntime = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ runtime.__client--;
+
+ if ( runtime.__client <= 0 ) {
+ cache.remove( runtime );
+ delete runtime.__promise;
+ runtime.destroy();
+ }
+
+ runtime = null;
+ };
+
+ this.exec = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ var args = Base.slice( arguments );
+ component && args.unshift( component );
+
+ return runtime.exec.apply( this, args );
+ };
+
+ this.getRuid = function() {
+ return runtime && runtime.uid;
+ };
+
+ this.destroy = (function( destroy ) {
+ return function() {
+ destroy && destroy.apply( this, arguments );
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ };
+ })( this.destroy );
+ }
+
+ Mediator.installTo( RuntimeClient.prototype );
+ return RuntimeClient;
});
- /**
- * @fileOverview Uploader上传类
- */
- define('uploader',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$;
-
- /**
- * 上传入口类。
- * @class Uploader
- * @constructor
- * @grammar new Uploader( opts ) => Uploader
- * @example
- * var uploader = WebUploader.Uploader({
- * swf: 'path_of_swf/Uploader.swf',
- *
- * // 开起分片上传。
- * chunked: true
- * });
- */
- function Uploader( opts ) {
- this.options = $.extend( true, {}, Uploader.options, opts );
- this._init( this.options );
- }
-
- // default Options
- // widgets中有相应扩展
- Uploader.options = {};
- Mediator.installTo( Uploader.prototype );
-
- // 批量添加纯命令式方法。
- $.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( fn, command ) {
- Uploader.prototype[ fn ] = function() {
- return this.request( command, arguments );
- };
- });
-
- $.extend( Uploader.prototype, {
- state: 'pending',
-
- _init: function( opts ) {
- var me = this;
-
- me.request( 'init', opts, function() {
- me.state = 'ready';
- me.trigger('ready');
- });
- },
-
- /**
- * 获取或者设置Uploader配置项。
- * @method option
- * @grammar option( key ) => *
- * @grammar option( key, val ) => self
- * @example
- *
- * // 初始状态图片上传前不会压缩
- * var uploader = new WebUploader.Uploader({
- * compress: null;
- * });
- *
- * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
- * uploader.option( 'compress', {
- * width: 1600,
- * height: 1600
- * });
- */
- option: function( key, val ) {
- var opts = this.options;
-
- // setter
- if ( arguments.length > 1 ) {
-
- if ( $.isPlainObject( val ) &&
- $.isPlainObject( opts[ key ] ) ) {
- $.extend( opts[ key ], val );
- } else {
- opts[ key ] = val;
- }
-
- } else { // getter
- return key ? opts[ key ] : opts;
- }
- },
-
- /**
- * 获取文件统计信息。返回一个包含一下信息的对象。
- * * `successNum` 上传成功的文件数
- * * `progressNum` 上传中的文件数
- * * `cancelNum` 被删除的文件数
- * * `invalidNum` 无效的文件数
- * * `uploadFailNum` 上传失败的文件数
- * * `queueNum` 还在队列中的文件数
- * * `interruptNum` 被暂停的文件数
- * @method getStats
- * @grammar getStats() => Object
- */
- getStats: function() {
- // return this._mgr.getStats.apply( this._mgr, arguments );
- var stats = this.request('get-stats');
-
- return stats ? {
- successNum: stats.numOfSuccess,
- progressNum: stats.numOfProgress,
-
- // who care?
- // queueFailNum: 0,
- cancelNum: stats.numOfCancel,
- invalidNum: stats.numOfInvalid,
- uploadFailNum: stats.numOfUploadFailed,
- queueNum: stats.numOfQueue,
- interruptNum: stats.numOfInterrupt
- } : {};
- },
-
- // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
- trigger: function( type/*, args...*/ ) {
- var args = [].slice.call( arguments, 1 ),
- opts = this.options,
- name = 'on' + type.substring( 0, 1 ).toUpperCase() +
- type.substring( 1 );
-
- if (
- // 调用通过on方法注册的handler.
- Mediator.trigger.apply( this, arguments ) === false ||
-
- // 调用opts.onEvent
- $.isFunction( opts[ name ] ) &&
- opts[ name ].apply( this, args ) === false ||
-
- // 调用this.onEvent
- $.isFunction( this[ name ] ) &&
- this[ name ].apply( this, args ) === false ||
-
- // 广播所有uploader的事件。
- Mediator.trigger.apply( Mediator,
- [ this, type ].concat( args ) ) === false ) {
-
- return false;
- }
-
- return true;
- },
-
- /**
- * 销毁 webuploader 实例
- * @method destroy
- * @grammar destroy() => undefined
- */
- destroy: function() {
- this.request( 'destroy', arguments );
- this.off();
- },
-
- // widgets/widget.js将补充此方法的详细文档。
- request: Base.noop
- });
-
- /**
- * 创建Uploader实例,等同于new Uploader( opts );
- * @method create
- * @class Base
- * @static
- * @grammar Base.create( opts ) => Uploader
- */
- Base.create = Uploader.create = function( opts ) {
- return new Uploader( opts );
- };
-
- // 暴露Uploader,可以通过它来扩展业务逻辑。
- Base.Uploader = Uploader;
-
- return Uploader;
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/dnd',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function DragAndDrop( opts ) {
+ opts = this.options = $.extend({}, DragAndDrop.options, opts );
+
+ opts.container = $( opts.container );
+
+ if ( !opts.container.length ) {
+ return;
+ }
+
+ RuntimeClent.call( this, 'DragAndDrop' );
+ }
+
+ DragAndDrop.options = {
+ accept: null,
+ disableGlobalDnd: false
+ };
+
+ Base.inherits( RuntimeClent, {
+ constructor: DragAndDrop,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( DragAndDrop.prototype );
+
+ return DragAndDrop;
});
-
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/runtime',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- factories = {},
-
- // 获取对象的第一个key
- getFirstKey = function( obj ) {
- for ( var key in obj ) {
- if ( obj.hasOwnProperty( key ) ) {
- return key;
- }
- }
- return null;
- };
-
- // 接口类。
- function Runtime( options ) {
- this.options = $.extend({
- container: document.body
- }, options );
- this.uid = Base.guid('rt_');
- }
-
- $.extend( Runtime.prototype, {
-
- getContainer: function() {
- var opts = this.options,
- parent, container;
-
- if ( this._container ) {
- return this._container;
- }
-
- parent = $( opts.container || document.body );
- container = $( document.createElement('div') );
-
- container.attr( 'id', 'rt_' + this.uid );
- container.css({
- position: 'absolute',
- top: '0px',
- left: '0px',
- width: '1px',
- height: '1px',
- overflow: 'hidden'
- });
-
- parent.append( container );
- parent.addClass('webuploader-container');
- this._container = container;
- this._parent = parent;
- return container;
- },
-
- init: Base.noop,
- exec: Base.noop,
-
- destroy: function() {
- this._container && this._container.remove();
- this._parent && this._parent.removeClass('webuploader-container');
- this.off();
- }
- });
-
- Runtime.orders = 'html5,flash';
-
-
- /**
- * 添加Runtime实现。
- * @param {String} type 类型
- * @param {Runtime} factory 具体Runtime实现。
- */
- Runtime.addRuntime = function( type, factory ) {
- factories[ type ] = factory;
- };
-
- Runtime.hasRuntime = function( type ) {
- return !!(type ? factories[ type ] : getFirstKey( factories ));
- };
-
- Runtime.create = function( opts, orders ) {
- var type, runtime;
-
- orders = orders || Runtime.orders;
- $.each( orders.split( /\s*,\s*/g ), function() {
- if ( factories[ this ] ) {
- type = this;
- return false;
- }
- });
-
- type = type || getFirstKey( factories );
-
- if ( !type ) {
- throw new Error('Runtime Error');
- }
-
- runtime = new factories[ type ]( opts );
- return runtime;
- };
-
- Mediator.installTo( Runtime.prototype );
- return Runtime;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/widget',[
+ 'base',
+ 'uploader'
+ ], function( Base, Uploader ) {
+
+ var $ = Base.$,
+ _init = Uploader.prototype._init,
+ _destroy = Uploader.prototype.destroy,
+ IGNORE = {},
+ widgetClass = [];
+
+ function isArrayLike( obj ) {
+ if ( !obj ) {
+ return false;
+ }
+
+ var length = obj.length,
+ type = $.type( obj );
+
+ if ( obj.nodeType === 1 && length ) {
+ return true;
+ }
+
+ return type === 'array' || type !== 'function' && type !== 'string' &&
+ (length === 0 || typeof length === 'number' && length > 0 &&
+ (length - 1) in obj);
+ }
+
+ function Widget( uploader ) {
+ this.owner = uploader;
+ this.options = uploader.options;
+ }
+
+ $.extend( Widget.prototype, {
+
+ init: Base.noop,
+
+ // 类Backbone的事件监听声明,监听uploader实例上的事件
+ // widget直接无法监听事件,事件只能通过uploader来传递
+ invoke: function( apiName, args ) {
+
+ /*
+ {
+ 'make-thumb': 'makeThumb'
+ }
+ */
+ var map = this.responseMap;
+
+ // 如果无API响应声明则忽略
+ if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
+ !$.isFunction( this[ map[ apiName ] ] ) ) {
+
+ return IGNORE;
+ }
+
+ return this[ map[ apiName ] ].apply( this, args );
+
+ },
+
+ /**
+ * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
+ * @method request
+ * @grammar request( command, args ) => * | Promise
+ * @grammar request( command, args, callback ) => Promise
+ * @for Uploader
+ */
+ request: function() {
+ return this.owner.request.apply( this.owner, arguments );
+ }
+ });
+
+ // 扩展Uploader.
+ $.extend( Uploader.prototype, {
+
+ /**
+ * @property {String | Array} [disableWidgets=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
+ */
+
+ // 覆写_init用来初始化widgets
+ _init: function() {
+ var me = this,
+ widgets = me._widgets = [],
+ deactives = me.options.disableWidgets || '';
+
+ $.each( widgetClass, function( _, klass ) {
+ (!deactives || !~deactives.indexOf( klass._name )) &&
+ widgets.push( new klass( me ) );
+ });
+
+ return _init.apply( me, arguments );
+ },
+
+ request: function( apiName, args, callback ) {
+ var i = 0,
+ widgets = this._widgets,
+ len = widgets && widgets.length,
+ rlts = [],
+ dfds = [],
+ widget, rlt, promise, key;
+
+ args = isArrayLike( args ) ? args : [ args ];
+
+ for ( ; i < len; i++ ) {
+ widget = widgets[ i ];
+ rlt = widget.invoke( apiName, args );
+
+ if ( rlt !== IGNORE ) {
+
+ // Deferred对象
+ if ( Base.isPromise( rlt ) ) {
+ dfds.push( rlt );
+ } else {
+ rlts.push( rlt );
+ }
+ }
+ }
+
+ // 如果有callback,则用异步方式。
+ if ( callback || dfds.length ) {
+ promise = Base.when.apply( Base, dfds );
+ key = promise.pipe ? 'pipe' : 'then';
+
+ // 很重要不能删除。删除了会死循环。
+ // 保证执行顺序。让callback总是在下一个 tick 中执行。
+ return promise[ key ](function() {
+ var deferred = Base.Deferred(),
+ args = arguments;
+
+ if ( args.length === 1 ) {
+ args = args[ 0 ];
+ }
+
+ setTimeout(function() {
+ deferred.resolve( args );
+ }, 1 );
+
+ return deferred.promise();
+ })[ callback ? key : 'done' ]( callback || Base.noop );
+ } else {
+ return rlts[ 0 ];
+ }
+ },
+
+ destroy: function() {
+ _destroy.apply( this, arguments );
+ this._widgets = null;
+ }
+ });
+
+ /**
+ * 添加组件
+ * @grammar Uploader.register(proto);
+ * @grammar Uploader.register(map, proto);
+ * @param {object} responseMap API 名称与函数实现的映射
+ * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
+ * @method Uploader.register
+ * @for Uploader
+ * @example
+ * Uploader.register({
+ * 'make-thumb': 'makeThumb'
+ * }, {
+ * init: function( options ) {},
+ * makeThumb: function() {}
+ * });
+ *
+ * Uploader.register({
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ */
+ Uploader.register = Widget.register = function( responseMap, widgetProto ) {
+ var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
+ klass;
+
+ if ( arguments.length === 1 ) {
+ widgetProto = responseMap;
+
+ // 自动生成 map 表。
+ $.each(widgetProto, function(key) {
+ if ( key[0] === '_' || key === 'name' ) {
+ key === 'name' && (map.name = widgetProto.name);
+ return;
+ }
+
+ map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
+ });
+
+ } else {
+ map = $.extend( map, responseMap );
+ }
+
+ widgetProto.responseMap = map;
+ klass = Base.inherits( Widget, widgetProto );
+ klass._name = map.name;
+ widgetClass.push( klass );
+
+ return klass;
+ };
+
+ /**
+ * 删除插件,只有在注册时指定了名字的才能被删除。
+ * @grammar Uploader.unRegister(name);
+ * @param {string} name 组件名字
+ * @method Uploader.unRegister
+ * @for Uploader
+ * @example
+ *
+ * Uploader.register({
+ * name: 'custom',
+ *
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ *
+ * Uploader.unRegister('custom');
+ */
+ Uploader.unRegister = Widget.unRegister = function( name ) {
+ if ( !name || name === 'anonymous' ) {
+ return;
+ }
+
+ // 删除指定的插件。
+ for ( var i = widgetClass.length; i--; ) {
+ if ( widgetClass[i]._name === name ) {
+ widgetClass.splice(i, 1)
+ }
+ }
+ };
+
+ return Widget;
});
+ /**
+ * @fileOverview DragAndDrop Widget。
+ */
+ define('widgets/filednd',[
+ 'base',
+ 'uploader',
+ 'lib/dnd',
+ 'widgets/widget'
+ ], function( Base, Uploader, Dnd ) {
+ var $ = Base.$;
+
+ Uploader.options.dnd = '';
+
+ /**
+ * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @event dndAccept
+ * @param {DataTransferItemList} items DataTransferItem
+ * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'dnd',
+
+ init: function( opts ) {
+
+ if ( !opts.dnd ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ disableGlobalDnd: opts.disableGlobalDnd,
+ container: opts.dnd,
+ accept: opts.accept
+ }),
+ dnd;
+
+ this.dnd = dnd = new Dnd( options );
+
+ dnd.once( 'ready', deferred.resolve );
+ dnd.on( 'drop', function( files ) {
+ me.request( 'add-file', [ files ]);
+ });
+
+ // 检测文件是否全部允许添加。
+ dnd.on( 'accept', function( items ) {
+ return me.owner.trigger( 'dndAccept', items );
+ });
+
+ dnd.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.dnd && this.dnd.destroy();
+ }
+ });
+ });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/client',[
- 'base',
- 'mediator',
- 'runtime/runtime'
- ], function( Base, Mediator, Runtime ) {
-
- var cache;
-
- cache = (function() {
- var obj = {};
-
- return {
- add: function( runtime ) {
- obj[ runtime.uid ] = runtime;
- },
-
- get: function( ruid, standalone ) {
- var i;
-
- if ( ruid ) {
- return obj[ ruid ];
- }
-
- for ( i in obj ) {
- // 有些类型不能重用,比如filepicker.
- if ( standalone && obj[ i ].__standalone ) {
- continue;
- }
-
- return obj[ i ];
- }
-
- return null;
- },
-
- remove: function( runtime ) {
- delete obj[ runtime.uid ];
- }
- };
- })();
-
- function RuntimeClient( component, standalone ) {
- var deferred = Base.Deferred(),
- runtime;
-
- this.uid = Base.guid('client_');
-
- // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
- this.runtimeReady = function( cb ) {
- return deferred.done( cb );
- };
-
- this.connectRuntime = function( opts, cb ) {
-
- // already connected.
- if ( runtime ) {
- throw new Error('already connected!');
- }
-
- deferred.done( cb );
-
- if ( typeof opts === 'string' && cache.get( opts ) ) {
- runtime = cache.get( opts );
- }
-
- // 像filePicker只能独立存在,不能公用。
- runtime = runtime || cache.get( null, standalone );
-
- // 需要创建
- if ( !runtime ) {
- runtime = Runtime.create( opts, opts.runtimeOrder );
- runtime.__promise = deferred.promise();
- runtime.once( 'ready', deferred.resolve );
- runtime.init();
- cache.add( runtime );
- runtime.__client = 1;
- } else {
- // 来自cache
- Base.$.extend( runtime.options, opts );
- runtime.__promise.then( deferred.resolve );
- runtime.__client++;
- }
-
- standalone && (runtime.__standalone = standalone);
- return runtime;
- };
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.disconnectRuntime = function() {
- if ( !runtime ) {
- return;
- }
-
- runtime.__client--;
-
- if ( runtime.__client <= 0 ) {
- cache.remove( runtime );
- delete runtime.__promise;
- runtime.destroy();
- }
-
- runtime = null;
- };
-
- this.exec = function() {
- if ( !runtime ) {
- return;
- }
-
- var args = Base.slice( arguments );
- component && args.unshift( component );
-
- return runtime.exec.apply( this, args );
- };
-
- this.getRuid = function() {
- return runtime && runtime.uid;
- };
-
- this.destroy = (function( destroy ) {
- return function() {
- destroy && destroy.apply( this, arguments );
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- };
- })( this.destroy );
- }
-
- Mediator.installTo( RuntimeClient.prototype );
- return RuntimeClient;
- });
- /**
- * @fileOverview 错误信息
- */
- define('lib/dnd',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function DragAndDrop( opts ) {
- opts = this.options = $.extend({}, DragAndDrop.options, opts );
-
- opts.container = $( opts.container );
-
- if ( !opts.container.length ) {
- return;
- }
-
- RuntimeClent.call( this, 'DragAndDrop' );
- }
-
- DragAndDrop.options = {
- accept: null,
- disableGlobalDnd: false
- };
-
- Base.inherits( RuntimeClent, {
- constructor: DragAndDrop,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( DragAndDrop.prototype );
-
- return DragAndDrop;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/widget',[
- 'base',
- 'uploader'
- ], function( Base, Uploader ) {
-
- var $ = Base.$,
- _init = Uploader.prototype._init,
- _destroy = Uploader.prototype.destroy,
- IGNORE = {},
- widgetClass = [];
-
- function isArrayLike( obj ) {
- if ( !obj ) {
- return false;
- }
-
- var length = obj.length,
- type = $.type( obj );
-
- if ( obj.nodeType === 1 && length ) {
- return true;
- }
-
- return type === 'array' || type !== 'function' && type !== 'string' &&
- (length === 0 || typeof length === 'number' && length > 0 &&
- (length - 1) in obj);
- }
-
- function Widget( uploader ) {
- this.owner = uploader;
- this.options = uploader.options;
- }
-
- $.extend( Widget.prototype, {
-
- init: Base.noop,
-
- // 类Backbone的事件监听声明,监听uploader实例上的事件
- // widget直接无法监听事件,事件只能通过uploader来传递
- invoke: function( apiName, args ) {
-
- /*
- {
- 'make-thumb': 'makeThumb'
- }
- */
- var map = this.responseMap;
-
- // 如果无API响应声明则忽略
- if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
- !$.isFunction( this[ map[ apiName ] ] ) ) {
-
- return IGNORE;
- }
-
- return this[ map[ apiName ] ].apply( this, args );
-
- },
-
- /**
- * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
- * @method request
- * @grammar request( command, args ) => * | Promise
- * @grammar request( command, args, callback ) => Promise
- * @for Uploader
- */
- request: function() {
- return this.owner.request.apply( this.owner, arguments );
- }
- });
-
- // 扩展Uploader.
- $.extend( Uploader.prototype, {
-
- /**
- * @property {String | Array} [disableWidgets=undefined]
- * @namespace options
- * @for Uploader
- * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
- */
-
- // 覆写_init用来初始化widgets
- _init: function() {
- var me = this,
- widgets = me._widgets = [],
- deactives = me.options.disableWidgets || '';
-
- $.each( widgetClass, function( _, klass ) {
- (!deactives || !~deactives.indexOf( klass._name )) &&
- widgets.push( new klass( me ) );
- });
-
- return _init.apply( me, arguments );
- },
-
- request: function( apiName, args, callback ) {
- var i = 0,
- widgets = this._widgets,
- len = widgets && widgets.length,
- rlts = [],
- dfds = [],
- widget, rlt, promise, key;
-
- args = isArrayLike( args ) ? args : [ args ];
-
- for ( ; i < len; i++ ) {
- widget = widgets[ i ];
- rlt = widget.invoke( apiName, args );
-
- if ( rlt !== IGNORE ) {
-
- // Deferred对象
- if ( Base.isPromise( rlt ) ) {
- dfds.push( rlt );
- } else {
- rlts.push( rlt );
- }
- }
- }
-
- // 如果有callback,则用异步方式。
- if ( callback || dfds.length ) {
- promise = Base.when.apply( Base, dfds );
- key = promise.pipe ? 'pipe' : 'then';
-
- // 很重要不能删除。删除了会死循环。
- // 保证执行顺序。让callback总是在下一个 tick 中执行。
- return promise[ key ](function() {
- var deferred = Base.Deferred(),
- args = arguments;
-
- if ( args.length === 1 ) {
- args = args[ 0 ];
- }
-
- setTimeout(function() {
- deferred.resolve( args );
- }, 1 );
-
- return deferred.promise();
- })[ callback ? key : 'done' ]( callback || Base.noop );
- } else {
- return rlts[ 0 ];
- }
- },
-
- destroy: function() {
- _destroy.apply( this, arguments );
- this._widgets = null;
- }
- });
-
- /**
- * 添加组件
- * @grammar Uploader.register(proto);
- * @grammar Uploader.register(map, proto);
- * @param {object} responseMap API 名称与函数实现的映射
- * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
- * @method Uploader.register
- * @for Uploader
- * @example
- * Uploader.register({
- * 'make-thumb': 'makeThumb'
- * }, {
- * init: function( options ) {},
- * makeThumb: function() {}
- * });
- *
- * Uploader.register({
- * 'make-thumb': function() {
- *
- * }
- * });
- */
- Uploader.register = Widget.register = function( responseMap, widgetProto ) {
- var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
- klass;
-
- if ( arguments.length === 1 ) {
- widgetProto = responseMap;
-
- // 自动生成 map 表。
- $.each(widgetProto, function(key) {
- if ( key[0] === '_' || key === 'name' ) {
- key === 'name' && (map.name = widgetProto.name);
- return;
- }
-
- map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
- });
-
- } else {
- map = $.extend( map, responseMap );
- }
-
- widgetProto.responseMap = map;
- klass = Base.inherits( Widget, widgetProto );
- klass._name = map.name;
- widgetClass.push( klass );
-
- return klass;
- };
-
- /**
- * 删除插件,只有在注册时指定了名字的才能被删除。
- * @grammar Uploader.unRegister(name);
- * @param {string} name 组件名字
- * @method Uploader.unRegister
- * @for Uploader
- * @example
- *
- * Uploader.register({
- * name: 'custom',
- *
- * 'make-thumb': function() {
- *
- * }
- * });
- *
- * Uploader.unRegister('custom');
- */
- Uploader.unRegister = Widget.unRegister = function( name ) {
- if ( !name || name === 'anonymous' ) {
- return;
- }
-
- // 删除指定的插件。
- for ( var i = widgetClass.length; i--; ) {
- if ( widgetClass[i]._name === name ) {
- widgetClass.splice(i, 1)
- }
- }
- };
-
- return Widget;
- });
- /**
- * @fileOverview DragAndDrop Widget。
- */
- define('widgets/filednd',[
- 'base',
- 'uploader',
- 'lib/dnd',
- 'widgets/widget'
- ], function( Base, Uploader, Dnd ) {
- var $ = Base.$;
-
- Uploader.options.dnd = '';
-
- /**
- * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @event dndAccept
- * @param {DataTransferItemList} items DataTransferItem
- * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
- * @for Uploader
- */
- return Uploader.register({
- name: 'dnd',
-
- init: function( opts ) {
-
- if ( !opts.dnd ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- disableGlobalDnd: opts.disableGlobalDnd,
- container: opts.dnd,
- accept: opts.accept
- }),
- dnd;
-
- this.dnd = dnd = new Dnd( options );
-
- dnd.once( 'ready', deferred.resolve );
- dnd.on( 'drop', function( files ) {
- me.request( 'add-file', [ files ]);
- });
-
- // 检测文件是否全部允许添加。
- dnd.on( 'accept', function( items ) {
- return me.owner.trigger( 'dndAccept', items );
- });
-
- dnd.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.dnd && this.dnd.destroy();
- }
- });
- });
-
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepaste',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function FilePaste( opts ) {
- opts = this.options = $.extend({}, opts );
- opts.container = $( opts.container || document.body );
- RuntimeClent.call( this, 'FilePaste' );
- }
-
- Base.inherits( RuntimeClent, {
- constructor: FilePaste,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( FilePaste.prototype );
-
- return FilePaste;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/filepaste',[
- 'base',
- 'uploader',
- 'lib/filepaste',
- 'widgets/widget'
- ], function( Base, Uploader, FilePaste ) {
- var $ = Base.$;
-
- /**
- * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
- * @namespace options
- * @for Uploader
- */
- return Uploader.register({
- name: 'paste',
-
- init: function( opts ) {
-
- if ( !opts.paste ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- container: opts.paste,
- accept: opts.accept
- }),
- paste;
-
- this.paste = paste = new FilePaste( options );
-
- paste.once( 'ready', deferred.resolve );
- paste.on( 'paste', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- paste.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.paste && this.paste.destroy();
- }
- });
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepaste',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function FilePaste( opts ) {
+ opts = this.options = $.extend({}, opts );
+ opts.container = $( opts.container || document.body );
+ RuntimeClent.call( this, 'FilePaste' );
+ }
+
+ Base.inherits( RuntimeClent, {
+ constructor: FilePaste,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( FilePaste.prototype );
+
+ return FilePaste;
});
- /**
- * @fileOverview Blob
- */
- define('lib/blob',[
- 'base',
- 'runtime/client'
- ], function( Base, RuntimeClient ) {
-
- function Blob( ruid, source ) {
- var me = this;
-
- me.source = source;
- me.ruid = ruid;
- this.size = source.size || 0;
-
- // 如果没有指定 mimetype, 但是知道文件后缀。
- if ( !source.type && this.ext &&
- ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
- this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
- } else {
- this.type = source.type || 'application/octet-stream';
- }
-
- RuntimeClient.call( me, 'Blob' );
- this.uid = source.uid || this.uid;
-
- if ( ruid ) {
- me.connectRuntime( ruid );
- }
- }
-
- Base.inherits( RuntimeClient, {
- constructor: Blob,
-
- slice: function( start, end ) {
- return this.exec( 'slice', start, end );
- },
-
- getSource: function() {
- return this.source;
- }
- });
-
- return Blob;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/filepaste',[
+ 'base',
+ 'uploader',
+ 'lib/filepaste',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePaste ) {
+ var $ = Base.$;
+
+ /**
+ * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
+ * @namespace options
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'paste',
+
+ init: function( opts ) {
+
+ if ( !opts.paste ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ container: opts.paste,
+ accept: opts.accept
+ }),
+ paste;
+
+ this.paste = paste = new FilePaste( options );
+
+ paste.once( 'ready', deferred.resolve );
+ paste.on( 'paste', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ paste.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.paste && this.paste.destroy();
+ }
+ });
});
- /**
- * 为了统一化Flash的File和HTML5的File而存在。
- * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
- * @fileOverview File
- */
- define('lib/file',[
- 'base',
- 'lib/blob'
- ], function( Base, Blob ) {
-
- var uid = 1,
- rExt = /\.([^.]+)$/;
-
- function File( ruid, file ) {
- var ext;
-
- this.name = file.name || ('untitled' + uid++);
- ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
-
- // todo 支持其他类型文件的转换。
- // 如果有 mimetype, 但是文件名里面没有找出后缀规律
- if ( !ext && file.type ) {
- ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
- RegExp.$1.toLowerCase() : '';
- this.name += '.' + ext;
- }
-
- this.ext = ext;
- this.lastModifiedDate = file.lastModifiedDate ||
- file.lastModified && new Date(file.lastModified).toLocaleString() ||
- (new Date()).toLocaleString();
-
- Blob.apply( this, arguments );
- }
-
- return Base.inherits( Blob, File );
+ /**
+ * @fileOverview Blob
+ */
+ define('lib/blob',[
+ 'base',
+ 'runtime/client'
+ ], function( Base, RuntimeClient ) {
+
+ function Blob( ruid, source ) {
+ var me = this;
+
+ me.source = source;
+ me.ruid = ruid;
+ this.size = source.size || 0;
+
+ // 如果没有指定 mimetype, 但是知道文件后缀。
+ if ( !source.type && this.ext &&
+ ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
+ this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
+ } else {
+ this.type = source.type || 'application/octet-stream';
+ }
+
+ RuntimeClient.call( me, 'Blob' );
+ this.uid = source.uid || this.uid;
+
+ if ( ruid ) {
+ me.connectRuntime( ruid );
+ }
+ }
+
+ Base.inherits( RuntimeClient, {
+ constructor: Blob,
+
+ slice: function( start, end ) {
+ return this.exec( 'slice', start, end );
+ },
+
+ getSource: function() {
+ return this.source;
+ }
+ });
+
+ return Blob;
});
+ /**
+ * 为了统一化Flash的File和HTML5的File而存在。
+ * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
+ * @fileOverview File
+ */
+ define('lib/file',[
+ 'base',
+ 'lib/blob'
+ ], function( Base, Blob ) {
+
+ var uid = 1,
+ rExt = /\.([^.]+)$/;
+
+ function File( ruid, file ) {
+ var ext;
+
+ this.name = file.name || ('untitled' + uid++);
+ ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
+
+ // todo 支持其他类型文件的转换。
+ // 如果有 mimetype, 但是文件名里面没有找出后缀规律
+ if ( !ext && file.type ) {
+ ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
+ RegExp.$1.toLowerCase() : '';
+ this.name += '.' + ext;
+ }
+
+ this.ext = ext;
+ this.lastModifiedDate = file.lastModifiedDate ||
+ file.lastModified && new Date(file.lastModified).toLocaleString() ||
+ (new Date()).toLocaleString();
+
+ Blob.apply( this, arguments );
+ }
+
+ return Base.inherits( Blob, File );
+ });
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepicker',[
- 'base',
- 'runtime/client',
- 'lib/file'
- ], function( Base, RuntimeClient, File ) {
-
- var $ = Base.$;
-
- function FilePicker( opts ) {
- opts = this.options = $.extend({}, FilePicker.options, opts );
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepicker',[
+ 'base',
+ 'runtime/client',
+ 'lib/file'
+ ], function( Base, RuntimeClient, File ) {
+
+ var $ = Base.$;
+
+ function FilePicker( opts ) {
+ opts = this.options = $.extend({}, FilePicker.options, opts );
+
+ opts.container = $( opts.id );
+
+ if ( !opts.container.length ) {
+ throw new Error('按钮指定错误');
+ }
+
+ opts.innerHTML = opts.innerHTML || opts.label ||
+ opts.container.html() || '';
+
+ opts.button = $( opts.button || document.createElement('div') );
+ opts.button.html( opts.innerHTML );
+ opts.container.html( opts.button );
+
+ RuntimeClient.call( this, 'FilePicker', true );
+ }
+
+ FilePicker.options = {
+ button: null,
+ container: null,
+ label: null,
+ innerHTML: null,
+ multiple: true,
+ accept: null,
+ name: 'file',
+ style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
+ };
+
+ Base.inherits( RuntimeClient, {
+ constructor: FilePicker,
+
+ init: function() {
+ var me = this,
+ opts = me.options,
+ button = opts.button,
+ style = opts.style;
+
+ if (style)
+ button.addClass('webuploader-pick');
+
+ me.on( 'all', function( type ) {
+ var files;
+
+ switch ( type ) {
+ case 'mouseenter':
+ if (style)
+ button.addClass('webuploader-pick-hover');
+ break;
+
+ case 'mouseleave':
+ if (style)
+ button.removeClass('webuploader-pick-hover');
+ break;
+
+ case 'change':
+ files = me.exec('getFiles');
+ me.trigger( 'select', $.map( files, function( file ) {
+ file = new File( me.getRuid(), file );
+
+ // 记录来源。
+ file._refer = opts.container;
+ return file;
+ }), opts.container );
+ break;
+ }
+ });
+
+ me.connectRuntime( opts, function() {
+ me.refresh();
+ me.exec( 'init', opts );
+ me.trigger('ready');
+ });
+
+ this._resizeHandler = Base.bindFn( this.refresh, this );
+ $( window ).on( 'resize', this._resizeHandler );
+ },
+
+ refresh: function() {
+ var shimContainer = this.getRuntime().getContainer(),
+ button = this.options.button,
+ /*
+ width = button.outerWidth ?
+ button.outerWidth() : button.width(),
+
+ height = button.outerHeight ?
+ button.outerHeight() : button.height(),
+ */
+ width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
+ height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
+ pos = button.offset();
+
+ width && height && shimContainer.css({
+ bottom: 'auto',
+ right: 'auto',
+ width: width + 'px',
+ height: height + 'px'
+ }).offset( pos );
+ },
+
+ enable: function() {
+ var btn = this.options.button;
+
+ btn.removeClass('webuploader-pick-disable');
+ this.refresh();
+ },
+
+ disable: function() {
+ var btn = this.options.button;
+
+ this.getRuntime().getContainer().css({
+ top: '-99999px'
+ });
+
+ btn.addClass('webuploader-pick-disable');
+ },
+
+ destroy: function() {
+ var btn = this.options.button;
+ $( window ).off( 'resize', this._resizeHandler );
+ btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
+ 'webuploader-pick');
+ }
+ });
+
+ return FilePicker;
+ });
- opts.container = $( opts.id );
-
- if ( !opts.container.length ) {
- throw new Error('按钮指定错误');
- }
-
- opts.innerHTML = opts.innerHTML || opts.label ||
- opts.container.html() || '';
-
- opts.button = $( opts.button || document.createElement('div') );
- opts.button.html( opts.innerHTML );
- opts.container.html( opts.button );
-
- RuntimeClient.call( this, 'FilePicker', true );
- }
-
- FilePicker.options = {
- button: null,
- container: null,
- label: null,
- innerHTML: null,
- multiple: true,
- accept: null,
- name: 'file',
- style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
- };
-
- Base.inherits( RuntimeClient, {
- constructor: FilePicker,
-
- init: function() {
- var me = this,
- opts = me.options,
- button = opts.button,
- style = opts.style;
-
- if (style)
- button.addClass('webuploader-pick');
-
- me.on( 'all', function( type ) {
- var files;
-
- switch ( type ) {
- case 'mouseenter':
- if (style)
- button.addClass('webuploader-pick-hover');
- break;
-
- case 'mouseleave':
- if (style)
- button.removeClass('webuploader-pick-hover');
- break;
-
- case 'change':
- files = me.exec('getFiles');
- me.trigger( 'select', $.map( files, function( file ) {
- file = new File( me.getRuid(), file );
-
- // 记录来源。
- file._refer = opts.container;
- return file;
- }), opts.container );
- break;
- }
- });
-
- me.connectRuntime( opts, function() {
- me.refresh();
- me.exec( 'init', opts );
- me.trigger('ready');
- });
-
- this._resizeHandler = Base.bindFn( this.refresh, this );
- $( window ).on( 'resize', this._resizeHandler );
- },
-
- refresh: function() {
- var shimContainer = this.getRuntime().getContainer(),
- button = this.options.button,
- /*
- width = button.outerWidth ?
- button.outerWidth() : button.width(),
-
- height = button.outerHeight ?
- button.outerHeight() : button.height(),
- */
- width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
- height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
- pos = button.offset();
-
- width && height && shimContainer.css({
- bottom: 'auto',
- right: 'auto',
- width: width + 'px',
- height: height + 'px'
- }).offset( pos );
- },
-
- enable: function() {
- var btn = this.options.button;
-
- btn.removeClass('webuploader-pick-disable');
- this.refresh();
- },
-
- disable: function() {
- var btn = this.options.button;
-
- this.getRuntime().getContainer().css({
- top: '-99999px'
- });
-
- btn.addClass('webuploader-pick-disable');
- },
-
- destroy: function() {
- var btn = this.options.button;
- $( window ).off( 'resize', this._resizeHandler );
- btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
- 'webuploader-pick');
- }
- });
-
- return FilePicker;
+ /**
+ * @fileOverview 文件选择相关
+ */
+ define('widgets/filepicker',[
+ 'base',
+ 'uploader',
+ 'lib/filepicker',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePicker ) {
+ var $ = Base.$;
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Selector | Object} [pick=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 指定选择文件的按钮容器,不指定则不创建按钮。
+ *
+ * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
+ * * `label` {String} 请采用 `innerHTML` 代替
+ * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
+ * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
+ */
+ pick: null,
+
+ /**
+ * @property {Array} [accept=null]
+ * @namespace options
+ * @for Uploader
+ * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
+ *
+ * * `title` {String} 文字描述
+ * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
+ * * `mimeTypes` {String} 多个用逗号分割。
+ *
+ * 如:
+ *
+ * ```
+ * {
+ * title: 'Images',
+ * extensions: 'gif,jpg,jpeg,bmp,png',
+ * mimeTypes: 'image/*'
+ * }
+ * ```
+ */
+ accept: null/*{
+ title: 'Images',
+ extensions: 'gif,jpg,jpeg,bmp,png',
+ mimeTypes: 'image/*'
+ }*/
+ });
+
+ return Uploader.register({
+ name: 'picker',
+
+ init: function( opts ) {
+ this.pickers = [];
+ return opts.pick && this.addBtn( opts.pick );
+ },
+
+ refresh: function() {
+ $.each( this.pickers, function() {
+ this.refresh();
+ });
+ },
+
+ /**
+ * @method addButton
+ * @for Uploader
+ * @grammar addButton( pick ) => Promise
+ * @description
+ * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
+ * @example
+ * uploader.addButton({
+ * id: '#btnContainer',
+ * innerHTML: '选择文件'
+ * });
+ */
+ addBtn: function( pick ) {
+ var me = this,
+ opts = me.options,
+ accept = opts.accept,
+ promises = [];
+
+ if ( !pick ) {
+ return;
+ }
+
+ $.isPlainObject( pick ) || (pick = {
+ id: pick
+ });
+
+ $( pick.id ).each(function() {
+ var options, picker, deferred;
+
+ deferred = Base.Deferred();
+
+ options = $.extend({}, pick, {
+ accept: $.isPlainObject( accept ) ? [ accept ] : accept,
+ swf: opts.swf,
+ runtimeOrder: opts.runtimeOrder,
+ id: this
+ });
+
+ picker = new FilePicker( options );
+
+ picker.once( 'ready', deferred.resolve );
+ picker.on( 'select', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ picker.on('dialogopen', function() {
+ me.owner.trigger('dialogOpen', picker.button);
+ });
+ picker.init();
+
+ me.pickers.push( picker );
+
+ promises.push( deferred.promise() );
+ });
+
+ return Base.when.apply( Base, promises );
+ },
+
+ disable: function() {
+ $.each( this.pickers, function() {
+ this.disable();
+ });
+ },
+
+ enable: function() {
+ $.each( this.pickers, function() {
+ this.enable();
+ });
+ },
+
+ destroy: function() {
+ $.each( this.pickers, function() {
+ this.destroy();
+ });
+ this.pickers = null;
+ }
+ });
});
-
- /**
- * @fileOverview 文件选择相关
- */
- define('widgets/filepicker',[
- 'base',
- 'uploader',
- 'lib/filepicker',
- 'widgets/widget'
- ], function( Base, Uploader, FilePicker ) {
- var $ = Base.$;
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Selector | Object} [pick=undefined]
- * @namespace options
- * @for Uploader
- * @description 指定选择文件的按钮容器,不指定则不创建按钮。
- *
- * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
- * * `label` {String} 请采用 `innerHTML` 代替
- * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
- * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
- */
- pick: null,
-
- /**
- * @property {Array} [accept=null]
- * @namespace options
- * @for Uploader
- * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
- *
- * * `title` {String} 文字描述
- * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
- * * `mimeTypes` {String} 多个用逗号分割。
- *
- * 如:
- *
- * ```
- * {
- * title: 'Images',
- * extensions: 'gif,jpg,jpeg,bmp,png',
- * mimeTypes: 'image/*'
- * }
- * ```
- */
- accept: null/*{
- title: 'Images',
- extensions: 'gif,jpg,jpeg,bmp,png',
- mimeTypes: 'image/*'
- }*/
- });
-
- return Uploader.register({
- name: 'picker',
-
- init: function( opts ) {
- this.pickers = [];
- return opts.pick && this.addBtn( opts.pick );
- },
-
- refresh: function() {
- $.each( this.pickers, function() {
- this.refresh();
- });
- },
-
- /**
- * @method addButton
- * @for Uploader
- * @grammar addButton( pick ) => Promise
- * @description
- * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
- * @example
- * uploader.addButton({
- * id: '#btnContainer',
- * innerHTML: '选择文件'
- * });
- */
- addBtn: function( pick ) {
- var me = this,
- opts = me.options,
- accept = opts.accept,
- promises = [];
-
- if ( !pick ) {
- return;
- }
-
- $.isPlainObject( pick ) || (pick = {
- id: pick
- });
-
- $( pick.id ).each(function() {
- var options, picker, deferred;
-
- deferred = Base.Deferred();
-
- options = $.extend({}, pick, {
- accept: $.isPlainObject( accept ) ? [ accept ] : accept,
- swf: opts.swf,
- runtimeOrder: opts.runtimeOrder,
- id: this
- });
-
- picker = new FilePicker( options );
-
- picker.once( 'ready', deferred.resolve );
- picker.on( 'select', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- picker.on('dialogopen', function() {
- me.owner.trigger('dialogOpen', picker.button);
- });
- picker.init();
-
- me.pickers.push( picker );
-
- promises.push( deferred.promise() );
- });
-
- return Base.when.apply( Base, promises );
- },
-
- disable: function() {
- $.each( this.pickers, function() {
- this.disable();
- });
- },
-
- enable: function() {
- $.each( this.pickers, function() {
- this.enable();
- });
- },
-
- destroy: function() {
- $.each( this.pickers, function() {
- this.destroy();
- });
- this.pickers = null;
- }
- });
+ /**
+ * @fileOverview Image
+ */
+ define('lib/image',[
+ 'base',
+ 'runtime/client',
+ 'lib/blob'
+ ], function( Base, RuntimeClient, Blob ) {
+ var $ = Base.$;
+
+ // 构造器。
+ function Image( opts ) {
+ this.options = $.extend({}, Image.options, opts );
+ RuntimeClient.call( this, 'Image' );
+
+ this.on( 'load', function() {
+ this._info = this.exec('info');
+ this._meta = this.exec('meta');
+ });
+ }
+
+ // 默认选项。
+ Image.options = {
+
+ // 默认的图片处理质量
+ quality: 90,
+
+ // 是否裁剪
+ crop: false,
+
+ // 是否保留头部信息
+ preserveHeaders: false,
+
+ // 是否允许放大。
+ allowMagnify: false
+ };
+
+ // 继承RuntimeClient.
+ Base.inherits( RuntimeClient, {
+ constructor: Image,
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._meta = val;
+ return this;
+ }
+
+ // getter
+ return this._meta;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ ruid = blob.getRuid();
+
+ this.connectRuntime( ruid, function() {
+ me.exec( 'init', me.options );
+ me.exec( 'loadFromBlob', blob );
+ });
+ },
+
+ resize: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'resize' ].concat( args ) );
+ },
+
+ crop: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'crop' ].concat( args ) );
+ },
+
+ getAsDataUrl: function( type ) {
+ return this.exec( 'getAsDataUrl', type );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this.exec( 'getAsBlob', type );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
+
+ return Image;
});
- /**
- * @fileOverview Image
- */
- define('lib/image',[
- 'base',
- 'runtime/client',
- 'lib/blob'
- ], function( Base, RuntimeClient, Blob ) {
- var $ = Base.$;
-
- // 构造器。
- function Image( opts ) {
- this.options = $.extend({}, Image.options, opts );
- RuntimeClient.call( this, 'Image' );
-
- this.on( 'load', function() {
- this._info = this.exec('info');
- this._meta = this.exec('meta');
- });
- }
-
- // 默认选项。
- Image.options = {
-
- // 默认的图片处理质量
- quality: 90,
-
- // 是否裁剪
- crop: false,
-
- // 是否保留头部信息
- preserveHeaders: false,
-
- // 是否允许放大。
- allowMagnify: false
- };
-
- // 继承RuntimeClient.
- Base.inherits( RuntimeClient, {
- constructor: Image,
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._meta = val;
- return this;
- }
-
- // getter
- return this._meta;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- ruid = blob.getRuid();
-
- this.connectRuntime( ruid, function() {
- me.exec( 'init', me.options );
- me.exec( 'loadFromBlob', blob );
- });
- },
-
- resize: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'resize' ].concat( args ) );
- },
-
- crop: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'crop' ].concat( args ) );
- },
-
- getAsDataUrl: function( type ) {
- return this.exec( 'getAsDataUrl', type );
- },
-
- getAsBlob: function( type ) {
- var blob = this.exec( 'getAsBlob', type );
-
- return new Blob( this.getRuid(), blob );
- }
- });
-
- return Image;
+ /**
+ * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
+ */
+ define('widgets/image',[
+ 'base',
+ 'uploader',
+ 'lib/image',
+ 'widgets/widget'
+ ], function( Base, Uploader, Image ) {
+
+ var $ = Base.$,
+ throttle;
+
+ // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
+ throttle = (function( max ) {
+ var occupied = 0,
+ waiting = [],
+ tick = function() {
+ var item;
+
+ while ( waiting.length && occupied < max ) {
+ item = waiting.shift();
+ occupied += item[ 0 ];
+ item[ 1 ]();
+ }
+ };
+
+ return function( emiter, size, cb ) {
+ waiting.push([ size, cb ]);
+ emiter.once( 'destroy', function() {
+ occupied -= size;
+ setTimeout( tick, 1 );
+ });
+ setTimeout( tick, 1 );
+ };
+ })( 5 * 1024 * 1024 );
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Object} [thumb]
+ * @namespace options
+ * @for Uploader
+ * @description 配置生成缩略图的选项。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 110,
+ * height: 110,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 70,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: true,
+ *
+ * // 是否允许裁剪。
+ * crop: true,
+ *
+ * // 为空的话则保留原有图片格式。
+ * // 否则强制转换成指定的类型。
+ * type: 'image/jpeg'
+ * }
+ * ```
+ */
+ thumb: {
+ width: 110,
+ height: 110,
+ quality: 70,
+ allowMagnify: true,
+ crop: true,
+ preserveHeaders: false,
+
+ // 为空的话则保留原有图片格式。
+ // 否则强制转换成指定的类型。
+ // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
+ // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
+ type: 'image/jpeg'
+ },
+
+ /**
+ * @property {Object} [compress]
+ * @namespace options
+ * @for Uploader
+ * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 1600,
+ * height: 1600,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 90,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: false,
+ *
+ * // 是否允许裁剪。
+ * crop: false,
+ *
+ * // 是否保留头部meta信息。
+ * preserveHeaders: true,
+ *
+ * // 如果发现压缩后文件大小比原来还大,则使用原来图片
+ * // 此属性可能会影响图片自动纠正功能
+ * noCompressIfLarger: false,
+ *
+ * // 单位字节,如果图片大小小于此值,不会采用压缩。
+ * compressSize: 0
+ * }
+ * ```
+ */
+ compress: {
+ width: 1600,
+ height: 1600,
+ quality: 90,
+ allowMagnify: false,
+ crop: false,
+ preserveHeaders: true
+ }
+ });
+
+ return Uploader.register({
+
+ name: 'image',
+
+
+ /**
+ * 生成缩略图,此过程为异步,所以需要传入`callback`。
+ * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
+ *
+ * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
+ *
+ * `callback`中可以接收到两个参数。
+ * * 第一个为error,如果生成缩略图有错误,此error将为真。
+ * * 第二个为ret, 缩略图的Data URL值。
+ *
+ * **注意**
+ * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
+ * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
+ *
+ * @method makeThumb
+ * @grammar makeThumb( file, callback ) => undefined
+ * @grammar makeThumb( file, callback, width, height ) => undefined
+ * @for Uploader
+ * @example
+ *
+ * uploader.on( 'fileQueued', function( file ) {
+ * var $li = ...;
+ *
+ * uploader.makeThumb( file, function( error, ret ) {
+ * if ( error ) {
+ * $li.text('预览错误');
+ * } else {
+ * $li.append('');
+ * }
+ * });
+ *
+ * });
+ */
+ makeThumb: function( file, cb, width, height ) {
+ var opts, image;
+
+ file = this.request( 'get-file', file );
+
+ // 只预览图片格式。
+ if ( !file.type.match( /^image/ ) ) {
+ cb( true );
+ return;
+ }
+
+ opts = $.extend({}, this.options.thumb );
+
+ // 如果传入的是object.
+ if ( $.isPlainObject( width ) ) {
+ opts = $.extend( opts, width );
+ width = null;
+ }
+
+ width = width || opts.width;
+ height = height || opts.height;
+
+ image = new Image( opts );
+
+ image.once( 'load', function() {
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ // 当 resize 完后
+ image.once( 'complete', function() {
+ cb( false, image.getAsDataUrl( opts.type ) );
+ image.destroy();
+ });
+
+ image.once( 'error', function( reason ) {
+ cb( reason || true );
+ image.destroy();
+ });
+
+ throttle( image, file.source.size, function() {
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+ image.loadFromBlob( file.source );
+ });
+ },
+
+ beforeSendFile: function( file ) {
+ var opts = this.options.compress || this.options.resize,
+ compressSize = opts && opts.compressSize || 0,
+ noCompressIfLarger = opts && opts.noCompressIfLarger || false,
+ image, deferred;
+
+ file = this.request( 'get-file', file );
+
+ // 只压缩 jpeg 图片格式。
+ // gif 可能会丢失针
+ // bmp png 基本上尺寸都不大,且压缩比比较小。
+ if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
+ file.size < compressSize ||
+ file._compressed ) {
+ return;
+ }
+
+ opts = $.extend({}, opts );
+ deferred = Base.Deferred();
+
+ image = new Image( opts );
+
+ deferred.always(function() {
+ image.destroy();
+ image = null;
+ });
+ image.once( 'error', deferred.reject );
+ image.once( 'load', function() {
+ var width = opts.width,
+ height = opts.height;
+
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ image.once( 'complete', function() {
+ var blob, size;
+
+ // 移动端 UC / qq 浏览器的无图模式下
+ // ctx.getImageData 处理大图的时候会报 Exception
+ // INDEX_SIZE_ERR: DOM Exception 1
+ try {
+ blob = image.getAsBlob( opts.type );
+
+ size = file.size;
+
+ // 如果压缩后,比原来还大则不用压缩后的。
+ if ( !noCompressIfLarger || blob.size < size ) {
+ // file.source.destroy && file.source.destroy();
+ file.source = blob;
+ file.size = blob.size;
+
+ file.trigger( 'resize', blob.size, size );
+ }
+
+ // 标记,避免重复压缩。
+ file._compressed = true;
+ deferred.resolve();
+ } catch ( e ) {
+ // 出错了直接继续,让其上传原始图片
+ deferred.resolve();
+ }
+ });
+
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+
+ image.loadFromBlob( file.source );
+ return deferred.promise();
+ }
+ });
});
- /**
- * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
- */
- define('widgets/image',[
- 'base',
- 'uploader',
- 'lib/image',
- 'widgets/widget'
- ], function( Base, Uploader, Image ) {
-
- var $ = Base.$,
- throttle;
-
- // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
- throttle = (function( max ) {
- var occupied = 0,
- waiting = [],
- tick = function() {
- var item;
-
- while ( waiting.length && occupied < max ) {
- item = waiting.shift();
- occupied += item[ 0 ];
- item[ 1 ]();
- }
- };
-
- return function( emiter, size, cb ) {
- waiting.push([ size, cb ]);
- emiter.once( 'destroy', function() {
- occupied -= size;
- setTimeout( tick, 1 );
- });
- setTimeout( tick, 1 );
- };
- })( 5 * 1024 * 1024 );
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Object} [thumb]
- * @namespace options
- * @for Uploader
- * @description 配置生成缩略图的选项。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 110,
- * height: 110,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 70,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: true,
- *
- * // 是否允许裁剪。
- * crop: true,
- *
- * // 为空的话则保留原有图片格式。
- * // 否则强制转换成指定的类型。
- * type: 'image/jpeg'
- * }
- * ```
- */
- thumb: {
- width: 110,
- height: 110,
- quality: 70,
- allowMagnify: true,
- crop: true,
- preserveHeaders: false,
-
- // 为空的话则保留原有图片格式。
- // 否则强制转换成指定的类型。
- // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
- // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
- type: 'image/jpeg'
- },
-
- /**
- * @property {Object} [compress]
- * @namespace options
- * @for Uploader
- * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 1600,
- * height: 1600,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 90,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: false,
- *
- * // 是否允许裁剪。
- * crop: false,
- *
- * // 是否保留头部meta信息。
- * preserveHeaders: true,
- *
- * // 如果发现压缩后文件大小比原来还大,则使用原来图片
- * // 此属性可能会影响图片自动纠正功能
- * noCompressIfLarger: false,
- *
- * // 单位字节,如果图片大小小于此值,不会采用压缩。
- * compressSize: 0
- * }
- * ```
- */
- compress: {
- width: 1600,
- height: 1600,
- quality: 90,
- allowMagnify: false,
- crop: false,
- preserveHeaders: true
- }
- });
-
- return Uploader.register({
-
- name: 'image',
-
-
- /**
- * 生成缩略图,此过程为异步,所以需要传入`callback`。
- * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
- *
- * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
- *
- * `callback`中可以接收到两个参数。
- * * 第一个为error,如果生成缩略图有错误,此error将为真。
- * * 第二个为ret, 缩略图的Data URL值。
- *
- * **注意**
- * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
- * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
- *
- * @method makeThumb
- * @grammar makeThumb( file, callback ) => undefined
- * @grammar makeThumb( file, callback, width, height ) => undefined
- * @for Uploader
- * @example
- *
- * uploader.on( 'fileQueued', function( file ) {
- * var $li = ...;
- *
- * uploader.makeThumb( file, function( error, ret ) {
- * if ( error ) {
- * $li.text('预览错误');
- * } else {
- * $li.append('');
- * }
- * });
- *
- * });
- */
- makeThumb: function( file, cb, width, height ) {
- var opts, image;
-
- file = this.request( 'get-file', file );
-
- // 只预览图片格式。
- if ( !file.type.match( /^image/ ) ) {
- cb( true );
- return;
- }
-
- opts = $.extend({}, this.options.thumb );
-
- // 如果传入的是object.
- if ( $.isPlainObject( width ) ) {
- opts = $.extend( opts, width );
- width = null;
- }
-
- width = width || opts.width;
- height = height || opts.height;
-
- image = new Image( opts );
-
- image.once( 'load', function() {
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- // 当 resize 完后
- image.once( 'complete', function() {
- cb( false, image.getAsDataUrl( opts.type ) );
- image.destroy();
- });
-
- image.once( 'error', function( reason ) {
- cb( reason || true );
- image.destroy();
- });
-
- throttle( image, file.source.size, function() {
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
- image.loadFromBlob( file.source );
- });
- },
-
- beforeSendFile: function( file ) {
- var opts = this.options.compress || this.options.resize,
- compressSize = opts && opts.compressSize || 0,
- noCompressIfLarger = opts && opts.noCompressIfLarger || false,
- image, deferred;
-
- file = this.request( 'get-file', file );
-
- // 只压缩 jpeg 图片格式。
- // gif 可能会丢失针
- // bmp png 基本上尺寸都不大,且压缩比比较小。
- if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
- file.size < compressSize ||
- file._compressed ) {
- return;
- }
-
- opts = $.extend({}, opts );
- deferred = Base.Deferred();
-
- image = new Image( opts );
-
- deferred.always(function() {
- image.destroy();
- image = null;
- });
- image.once( 'error', deferred.reject );
- image.once( 'load', function() {
- var width = opts.width,
- height = opts.height;
-
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- image.once( 'complete', function() {
- var blob, size;
-
- // 移动端 UC / qq 浏览器的无图模式下
- // ctx.getImageData 处理大图的时候会报 Exception
- // INDEX_SIZE_ERR: DOM Exception 1
- try {
- blob = image.getAsBlob( opts.type );
-
- size = file.size;
-
- // 如果压缩后,比原来还大则不用压缩后的。
- if ( !noCompressIfLarger || blob.size < size ) {
- // file.source.destroy && file.source.destroy();
- file.source = blob;
- file.size = blob.size;
-
- file.trigger( 'resize', blob.size, size );
- }
-
- // 标记,避免重复压缩。
- file._compressed = true;
- deferred.resolve();
- } catch ( e ) {
- // 出错了直接继续,让其上传原始图片
- deferred.resolve();
- }
- });
+ /**
+ * @fileOverview 文件属性封装
+ */
+ define('file',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ idPrefix = 'WU_FILE_',
+ idSuffix = 0,
+ rExt = /\.([^.]+)$/,
+ statusMap = {};
+
+ function gid() {
+ return idPrefix + idSuffix++;
+ }
+
+ /**
+ * 文件类
+ * @class File
+ * @constructor 构造函数
+ * @grammar new File( source ) => File
+ * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
+ */
+ function WUFile( source ) {
+
+ /**
+ * 文件名,包括扩展名(后缀)
+ * @property name
+ * @type {string}
+ */
+ this.name = source.name || 'Untitled';
+
+ /**
+ * 文件体积(字节)
+ * @property size
+ * @type {uint}
+ * @default 0
+ */
+ this.size = source.size || 0;
+
+ /**
+ * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
+ * @property type
+ * @type {string}
+ * @default 'application/octet-stream'
+ */
+ this.type = source.type || 'application/octet-stream';
+
+ /**
+ * 文件最后修改日期
+ * @property lastModifiedDate
+ * @type {int}
+ * @default 当前时间戳
+ */
+ this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
+
+ /**
+ * 文件ID,每个对象具有唯一ID,与文件名无关
+ * @property id
+ * @type {string}
+ */
+ this.id = gid();
+
+ /**
+ * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
+ * @property ext
+ * @type {string}
+ */
+ this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
+
+
+ /**
+ * 状态文字说明。在不同的status语境下有不同的用途。
+ * @property statusText
+ * @type {string}
+ */
+ this.statusText = '';
+
+ // 存储文件状态,防止通过属性直接修改
+ statusMap[ this.id ] = WUFile.Status.INITED;
+
+ this.source = source;
+ this.loaded = 0;
+
+ this.on( 'error', function( msg ) {
+ this.setStatus( WUFile.Status.ERROR, msg );
+ });
+ }
+
+ $.extend( WUFile.prototype, {
+
+ /**
+ * 设置状态,状态变化时会触发`change`事件。
+ * @method setStatus
+ * @grammar setStatus( status[, statusText] );
+ * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
+ * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
+ */
+ setStatus: function( status, text ) {
+
+ var prevStatus = statusMap[ this.id ];
+
+ typeof text !== 'undefined' && (this.statusText = text);
+
+ if ( status !== prevStatus ) {
+ statusMap[ this.id ] = status;
+ /**
+ * 文件状态变化
+ * @event statuschange
+ */
+ this.trigger( 'statuschange', status, prevStatus );
+ }
+
+ },
+
+ /**
+ * 获取文件状态
+ * @return {File.Status}
+ * @example
+ 文件状态具体包括以下几种类型:
+ {
+ // 初始化
+ INITED: 0,
+ // 已入队列
+ QUEUED: 1,
+ // 正在上传
+ PROGRESS: 2,
+ // 上传出错
+ ERROR: 3,
+ // 上传成功
+ COMPLETE: 4,
+ // 上传取消
+ CANCELLED: 5
+ }
+ */
+ getStatus: function() {
+ return statusMap[ this.id ];
+ },
+
+ /**
+ * 获取文件原始信息。
+ * @return {*}
+ */
+ getSource: function() {
+ return this.source;
+ },
+
+ destroy: function() {
+ this.off();
+ delete statusMap[ this.id ];
+ }
+ });
+
+ Mediator.installTo( WUFile.prototype );
+
+ /**
+ * 文件状态值,具体包括以下几种类型:
+ * * `inited` 初始状态
+ * * `queued` 已经进入队列, 等待上传
+ * * `progress` 上传中
+ * * `complete` 上传完成。
+ * * `error` 上传出错,可重试
+ * * `interrupt` 上传中断,可续传。
+ * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
+ * * `cancelled` 文件被移除。
+ * @property {Object} Status
+ * @namespace File
+ * @class File
+ * @static
+ */
+ WUFile.Status = {
+ INITED: 'inited', // 初始状态
+ QUEUED: 'queued', // 已经进入队列, 等待上传
+ PROGRESS: 'progress', // 上传中
+ ERROR: 'error', // 上传出错,可重试
+ COMPLETE: 'complete', // 上传完成。
+ CANCELLED: 'cancelled', // 上传取消。
+ INTERRUPT: 'interrupt', // 上传中断,可续传。
+ INVALID: 'invalid' // 文件不合格,不能重试上传。
+ };
+
+ return WUFile;
+ });
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
+ /**
+ * @fileOverview 文件队列
+ */
+ define('queue',[
+ 'base',
+ 'mediator',
+ 'file'
+ ], function( Base, Mediator, WUFile ) {
+
+ var $ = Base.$,
+ STATUS = WUFile.Status;
+
+ /**
+ * 文件队列, 用来存储各个状态中的文件。
+ * @class Queue
+ * @extends Mediator
+ */
+ function Queue() {
+
+ /**
+ * 统计文件数。
+ * * `numOfQueue` 队列中的文件数。
+ * * `numOfSuccess` 上传成功的文件数
+ * * `numOfCancel` 被取消的文件数
+ * * `numOfProgress` 正在上传中的文件数
+ * * `numOfUploadFailed` 上传错误的文件数。
+ * * `numOfInvalid` 无效的文件数。
+ * * `numOfDeleted` 被移除的文件数。
+ * * `numOfInterrupt` 被中断的文件数。
+ * @property {Object} stats
+ */
+ this.stats = {
+ numOfQueue: 0,
+ numOfSuccess: 0,
+ numOfCancel: 0,
+ numOfProgress: 0,
+ numOfUploadFailed: 0,
+ numOfInvalid: 0,
+ numOfDeleted: 0,
+ numOfInterrupt: 0
+ };
+
+ // 上传队列,仅包括等待上传的文件
+ this._queue = [];
+
+ // 存储所有文件
+ this._map = {};
+ }
+
+ $.extend( Queue.prototype, {
+
+ /**
+ * 将新文件加入对队列尾部
+ *
+ * @method append
+ * @param {File} file 文件对象
+ */
+ append: function( file ) {
+ this._queue.push( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 将新文件加入对队列头部
+ *
+ * @method prepend
+ * @param {File} file 文件对象
+ */
+ prepend: function( file ) {
+ this._queue.unshift( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 获取文件对象
+ *
+ * @method getFile
+ * @param {String} fileId 文件ID
+ * @return {File}
+ */
+ getFile: function( fileId ) {
+ if ( typeof fileId !== 'string' ) {
+ return fileId;
+ }
+ return this._map[ fileId ];
+ },
+
+ /**
+ * 从队列中取出一个指定状态的文件。
+ * @grammar fetch( status ) => File
+ * @method fetch
+ * @param {String} status [文件状态值](#WebUploader:File:File.Status)
+ * @return {File} [File](#WebUploader:File)
+ */
+ fetch: function( status ) {
+ var len = this._queue.length,
+ i, file;
+
+ status = status || STATUS.QUEUED;
+
+ for ( i = 0; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( status === file.getStatus() ) {
+ return file;
+ }
+ }
+
+ return null;
+ },
+
+ /**
+ * 对队列进行排序,能够控制文件上传顺序。
+ * @grammar sort( fn ) => undefined
+ * @method sort
+ * @param {Function} fn 排序方法
+ */
+ sort: function( fn ) {
+ if ( typeof fn === 'function' ) {
+ this._queue.sort( fn );
+ }
+ },
+
+ /**
+ * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
+ * @grammar getFiles( [status1[, status2 ...]] ) => Array
+ * @method getFiles
+ * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
+ */
+ getFiles: function() {
+ var sts = [].slice.call( arguments, 0 ),
+ ret = [],
+ i = 0,
+ len = this._queue.length,
+ file;
+
+ for ( ; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
+ continue;
+ }
+
+ ret.push( file );
+ }
+
+ return ret;
+ },
+
+ /**
+ * 在队列中删除文件。
+ * @grammar removeFile( file ) => Array
+ * @method removeFile
+ * @param {File} 文件对象。
+ */
+ removeFile: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( existing ) {
+ delete this._map[ file.id ];
+ this._delFile(file);
+ file.destroy();
+ this.stats.numOfDeleted++;
+
+ }
+ },
+
+ _fileAdded: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( !existing ) {
+ this._map[ file.id ] = file;
+
+ file.on( 'statuschange', function( cur, pre ) {
+ me._onFileStatusChange( cur, pre );
+ });
+ }
+ },
+
+ _delFile : function(file){
+ for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
+ if(this._queue[i] == file){
+ this._queue.splice(i,1);
+ break;
+ }
+ }
+ },
+
+ _onFileStatusChange: function( curStatus, preStatus ) {
+ var stats = this.stats;
+
+ switch ( preStatus ) {
+ case STATUS.PROGRESS:
+ stats.numOfProgress--;
+ break;
+
+ case STATUS.QUEUED:
+ stats.numOfQueue --;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed--;
+ break;
+
+ case STATUS.INVALID:
+ stats.numOfInvalid--;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt--;
+ break;
+ }
+
+ switch ( curStatus ) {
+ case STATUS.QUEUED:
+ stats.numOfQueue++;
+ break;
+
+ case STATUS.PROGRESS:
+ stats.numOfProgress++;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed++;
+ break;
+
+ case STATUS.COMPLETE:
+ stats.numOfSuccess++;
+ break;
+
+ case STATUS.CANCELLED:
+ stats.numOfCancel++;
+ break;
+
+
+ case STATUS.INVALID:
+ stats.numOfInvalid++;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt++;
+ break;
+ }
+ }
+
+ });
+
+ Mediator.installTo( Queue.prototype );
+
+ return Queue;
+ });
- image.loadFromBlob( file.source );
- return deferred.promise();
- }
- });
+ /**
+ * @fileOverview 队列
+ */
+ define('widgets/queue',[
+ 'base',
+ 'uploader',
+ 'queue',
+ 'file',
+ 'lib/file',
+ 'runtime/client',
+ 'widgets/widget'
+ ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
+
+ var $ = Base.$,
+ rExt = /\.\w+$/,
+ Status = WUFile.Status;
+
+ return Uploader.register({
+ name: 'queue',
+
+ init: function( opts ) {
+ var me = this,
+ deferred, len, i, item, arr, accept, runtime;
+
+ if ( $.isPlainObject( opts.accept ) ) {
+ opts.accept = [ opts.accept ];
+ }
+
+ // accept中的中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].extensions;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = '\\.' + arr.join(',')
+ .replace( /,/g, '$|\\.' )
+ .replace( /\*/g, '.*' ) + '$';
+ }
+
+ me.accept = new RegExp( accept, 'i' );
+ }
+
+ me.queue = new Queue();
+ me.stats = me.queue.stats;
+
+ // 如果当前不是html5运行时,那就算了。
+ // 不执行后续操作
+ if ( this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ // 创建一个 html5 运行时的 placeholder
+ // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
+ deferred = Base.Deferred();
+ this.placeholder = runtime = new RuntimeClient('Placeholder');
+ runtime.connectRuntime({
+ runtimeOrder: 'html5'
+ }, function() {
+ me._ruid = runtime.getRuid();
+ deferred.resolve();
+ });
+ return deferred.promise();
+ },
+
+
+ // 为了支持外部直接添加一个原生File对象。
+ _wrapFile: function( file ) {
+ if ( !(file instanceof WUFile) ) {
+
+ if ( !(file instanceof File) ) {
+ if ( !this._ruid ) {
+ throw new Error('Can\'t add external files.');
+ }
+ file = new File( this._ruid, file );
+ }
+
+ file = new WUFile( file );
+ }
+
+ return file;
+ },
+
+ // 判断文件是否可以被加入队列
+ acceptFile: function( file ) {
+ var invalid = !file || !file.size || this.accept &&
+
+ // 如果名字中有后缀,才做后缀白名单处理。
+ rExt.exec( file.name ) && !this.accept.test( file.name );
+
+ return !invalid;
+ },
+
+
+ /**
+ * @event beforeFileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
+ * @for Uploader
+ */
+
+ /**
+ * @event fileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列以后触发。
+ * @for Uploader
+ */
+
+ _addFile: function( file ) {
+ var me = this;
+
+ file = me._wrapFile( file );
+
+ // 不过类型判断允许不允许,先派送 `beforeFileQueued`
+ if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
+ return;
+ }
+
+ // 类型不匹配,则派送错误事件,并返回。
+ if ( !me.acceptFile( file ) ) {
+ me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
+ return;
+ }
+
+ me.queue.append( file );
+ me.owner.trigger( 'fileQueued', file );
+ return file;
+ },
+
+ getFile: function( fileId ) {
+ return this.queue.getFile( fileId );
+ },
+
+ /**
+ * @event filesQueued
+ * @param {File} files 数组,内容为原始File(lib/File)对象。
+ * @description 当一批文件添加进队列以后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @property {Boolean} [auto=false]
+ * @namespace options
+ * @for Uploader
+ * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
+ *
+ */
+
+ /**
+ * @method addFiles
+ * @grammar addFiles( file ) => undefined
+ * @grammar addFiles( [file1, file2 ...] ) => undefined
+ * @param {Array of File or File} [files] Files 对象 数组
+ * @description 添加文件到队列
+ * @for Uploader
+ */
+ addFile: function( files ) {
+ var me = this;
+
+ if ( !files.length ) {
+ files = [ files ];
+ }
+
+ files = $.map( files, function( file ) {
+ return me._addFile( file );
+ });
+
+ if ( files.length ) {
+
+ me.owner.trigger( 'filesQueued', files );
+
+ if ( me.options.auto ) {
+ setTimeout(function() {
+ me.request('start-upload');
+ }, 20 );
+ }
+ }
+ },
+
+ getStats: function() {
+ return this.stats;
+ },
+
+ /**
+ * @event fileDequeued
+ * @param {File} file File对象
+ * @description 当文件被移除队列后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method removeFile
+ * @grammar removeFile( file ) => undefined
+ * @grammar removeFile( id ) => undefined
+ * @grammar removeFile( file, true ) => undefined
+ * @grammar removeFile( id, true ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.removeFile( file );
+ * })
+ */
+ removeFile: function( file, remove ) {
+ var me = this;
+
+ file = file.id ? file : me.queue.getFile( file );
+
+ this.request( 'cancel-file', file );
+
+ if ( remove ) {
+ this.queue.removeFile( file );
+ }
+ },
+
+ /**
+ * @method getFiles
+ * @grammar getFiles() => Array
+ * @grammar getFiles( status1, status2, status... ) => Array
+ * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
+ * @for Uploader
+ * @example
+ * console.log( uploader.getFiles() ); // => all files
+ * console.log( uploader.getFiles('error') ) // => all error files.
+ */
+ getFiles: function() {
+ return this.queue.getFiles.apply( this.queue, arguments );
+ },
+
+ fetchFile: function() {
+ return this.queue.fetch.apply( this.queue, arguments );
+ },
+
+ /**
+ * @method retry
+ * @grammar retry() => undefined
+ * @grammar retry( file ) => undefined
+ * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
+ * @for Uploader
+ * @example
+ * function retry() {
+ * uploader.retry();
+ * }
+ */
+ retry: function( file, noForceStart ) {
+ var me = this,
+ files, i, len;
+
+ if ( file ) {
+ file = file.id ? file : me.queue.getFile( file );
+ file.setStatus( Status.QUEUED );
+ noForceStart || me.request('start-upload');
+ return;
+ }
+
+ files = me.queue.getFiles( Status.ERROR );
+ i = 0;
+ len = files.length;
+
+ for ( ; i < len; i++ ) {
+ file = files[ i ];
+ file.setStatus( Status.QUEUED );
+ }
+
+ me.request('start-upload');
+ },
+
+ /**
+ * @method sort
+ * @grammar sort( fn ) => undefined
+ * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
+ * @for Uploader
+ */
+ sortFiles: function() {
+ return this.queue.sort.apply( this.queue, arguments );
+ },
+
+ /**
+ * @event reset
+ * @description 当 uploader 被重置的时候触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method reset
+ * @grammar reset() => undefined
+ * @description 重置uploader。目前只重置了队列。
+ * @for Uploader
+ * @example
+ * uploader.reset();
+ */
+ reset: function() {
+ this.owner.trigger('reset');
+ this.queue = new Queue();
+ this.stats = this.queue.stats;
+ },
+
+ destroy: function() {
+ this.reset();
+ this.placeholder && this.placeholder.destroy();
+ }
+ });
+
});
- /**
- * @fileOverview 文件属性封装
- */
- define('file',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- idPrefix = 'WU_FILE_',
- idSuffix = 0,
- rExt = /\.([^.]+)$/,
- statusMap = {};
-
- function gid() {
- return idPrefix + idSuffix++;
- }
-
- /**
- * 文件类
- * @class File
- * @constructor 构造函数
- * @grammar new File( source ) => File
- * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
- */
- function WUFile( source ) {
-
- /**
- * 文件名,包括扩展名(后缀)
- * @property name
- * @type {string}
- */
- this.name = source.name || 'Untitled';
-
- /**
- * 文件体积(字节)
- * @property size
- * @type {uint}
- * @default 0
- */
- this.size = source.size || 0;
-
- /**
- * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
- * @property type
- * @type {string}
- * @default 'application/octet-stream'
- */
- this.type = source.type || 'application/octet-stream';
-
- /**
- * 文件最后修改日期
- * @property lastModifiedDate
- * @type {int}
- * @default 当前时间戳
- */
- this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
-
- /**
- * 文件ID,每个对象具有唯一ID,与文件名无关
- * @property id
- * @type {string}
- */
- this.id = gid();
-
- /**
- * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
- * @property ext
- * @type {string}
- */
- this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
-
-
- /**
- * 状态文字说明。在不同的status语境下有不同的用途。
- * @property statusText
- * @type {string}
- */
- this.statusText = '';
-
- // 存储文件状态,防止通过属性直接修改
- statusMap[ this.id ] = WUFile.Status.INITED;
-
- this.source = source;
- this.loaded = 0;
-
- this.on( 'error', function( msg ) {
- this.setStatus( WUFile.Status.ERROR, msg );
- });
- }
-
- $.extend( WUFile.prototype, {
-
- /**
- * 设置状态,状态变化时会触发`change`事件。
- * @method setStatus
- * @grammar setStatus( status[, statusText] );
- * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
- * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
- */
- setStatus: function( status, text ) {
-
- var prevStatus = statusMap[ this.id ];
-
- typeof text !== 'undefined' && (this.statusText = text);
-
- if ( status !== prevStatus ) {
- statusMap[ this.id ] = status;
- /**
- * 文件状态变化
- * @event statuschange
- */
- this.trigger( 'statuschange', status, prevStatus );
- }
-
- },
-
- /**
- * 获取文件状态
- * @return {File.Status}
- * @example
- 文件状态具体包括以下几种类型:
- {
- // 初始化
- INITED: 0,
- // 已入队列
- QUEUED: 1,
- // 正在上传
- PROGRESS: 2,
- // 上传出错
- ERROR: 3,
- // 上传成功
- COMPLETE: 4,
- // 上传取消
- CANCELLED: 5
- }
- */
- getStatus: function() {
- return statusMap[ this.id ];
- },
-
- /**
- * 获取文件原始信息。
- * @return {*}
- */
- getSource: function() {
- return this.source;
- },
-
- destroy: function() {
- this.off();
- delete statusMap[ this.id ];
- }
- });
-
- Mediator.installTo( WUFile.prototype );
-
- /**
- * 文件状态值,具体包括以下几种类型:
- * * `inited` 初始状态
- * * `queued` 已经进入队列, 等待上传
- * * `progress` 上传中
- * * `complete` 上传完成。
- * * `error` 上传出错,可重试
- * * `interrupt` 上传中断,可续传。
- * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
- * * `cancelled` 文件被移除。
- * @property {Object} Status
- * @namespace File
- * @class File
- * @static
- */
- WUFile.Status = {
- INITED: 'inited', // 初始状态
- QUEUED: 'queued', // 已经进入队列, 等待上传
- PROGRESS: 'progress', // 上传中
- ERROR: 'error', // 上传出错,可重试
- COMPLETE: 'complete', // 上传完成。
- CANCELLED: 'cancelled', // 上传取消。
- INTERRUPT: 'interrupt', // 上传中断,可续传。
- INVALID: 'invalid' // 文件不合格,不能重试上传。
- };
-
- return WUFile;
- });
-
- /**
- * @fileOverview 文件队列
- */
- define('queue',[
- 'base',
- 'mediator',
- 'file'
- ], function( Base, Mediator, WUFile ) {
-
- var $ = Base.$,
- STATUS = WUFile.Status;
-
- /**
- * 文件队列, 用来存储各个状态中的文件。
- * @class Queue
- * @extends Mediator
- */
- function Queue() {
-
- /**
- * 统计文件数。
- * * `numOfQueue` 队列中的文件数。
- * * `numOfSuccess` 上传成功的文件数
- * * `numOfCancel` 被取消的文件数
- * * `numOfProgress` 正在上传中的文件数
- * * `numOfUploadFailed` 上传错误的文件数。
- * * `numOfInvalid` 无效的文件数。
- * * `numOfDeleted` 被移除的文件数。
- * * `numOfInterrupt` 被中断的文件数。
- * @property {Object} stats
- */
- this.stats = {
- numOfQueue: 0,
- numOfSuccess: 0,
- numOfCancel: 0,
- numOfProgress: 0,
- numOfUploadFailed: 0,
- numOfInvalid: 0,
- numOfDeleted: 0,
- numOfInterrupt: 0
- };
-
- // 上传队列,仅包括等待上传的文件
- this._queue = [];
-
- // 存储所有文件
- this._map = {};
- }
-
- $.extend( Queue.prototype, {
-
- /**
- * 将新文件加入对队列尾部
- *
- * @method append
- * @param {File} file 文件对象
- */
- append: function( file ) {
- this._queue.push( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 将新文件加入对队列头部
- *
- * @method prepend
- * @param {File} file 文件对象
- */
- prepend: function( file ) {
- this._queue.unshift( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 获取文件对象
- *
- * @method getFile
- * @param {String} fileId 文件ID
- * @return {File}
- */
- getFile: function( fileId ) {
- if ( typeof fileId !== 'string' ) {
- return fileId;
- }
- return this._map[ fileId ];
- },
-
- /**
- * 从队列中取出一个指定状态的文件。
- * @grammar fetch( status ) => File
- * @method fetch
- * @param {String} status [文件状态值](#WebUploader:File:File.Status)
- * @return {File} [File](#WebUploader:File)
- */
- fetch: function( status ) {
- var len = this._queue.length,
- i, file;
-
- status = status || STATUS.QUEUED;
-
- for ( i = 0; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( status === file.getStatus() ) {
- return file;
- }
- }
-
- return null;
- },
-
- /**
- * 对队列进行排序,能够控制文件上传顺序。
- * @grammar sort( fn ) => undefined
- * @method sort
- * @param {Function} fn 排序方法
- */
- sort: function( fn ) {
- if ( typeof fn === 'function' ) {
- this._queue.sort( fn );
- }
- },
-
- /**
- * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
- * @grammar getFiles( [status1[, status2 ...]] ) => Array
- * @method getFiles
- * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
- */
- getFiles: function() {
- var sts = [].slice.call( arguments, 0 ),
- ret = [],
- i = 0,
- len = this._queue.length,
- file;
-
- for ( ; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
- continue;
- }
-
- ret.push( file );
- }
-
- return ret;
- },
-
- /**
- * 在队列中删除文件。
- * @grammar removeFile( file ) => Array
- * @method removeFile
- * @param {File} 文件对象。
- */
- removeFile: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( existing ) {
- delete this._map[ file.id ];
- this._delFile(file);
- file.destroy();
- this.stats.numOfDeleted++;
-
- }
- },
-
- _fileAdded: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( !existing ) {
- this._map[ file.id ] = file;
-
- file.on( 'statuschange', function( cur, pre ) {
- me._onFileStatusChange( cur, pre );
- });
- }
- },
-
- _delFile : function(file){
- for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
- if(this._queue[i] == file){
- this._queue.splice(i,1);
- break;
- }
- }
- },
-
- _onFileStatusChange: function( curStatus, preStatus ) {
- var stats = this.stats;
-
- switch ( preStatus ) {
- case STATUS.PROGRESS:
- stats.numOfProgress--;
- break;
-
- case STATUS.QUEUED:
- stats.numOfQueue --;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed--;
- break;
-
- case STATUS.INVALID:
- stats.numOfInvalid--;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt--;
- break;
- }
-
- switch ( curStatus ) {
- case STATUS.QUEUED:
- stats.numOfQueue++;
- break;
-
- case STATUS.PROGRESS:
- stats.numOfProgress++;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed++;
- break;
-
- case STATUS.COMPLETE:
- stats.numOfSuccess++;
- break;
-
- case STATUS.CANCELLED:
- stats.numOfCancel++;
- break;
-
-
- case STATUS.INVALID:
- stats.numOfInvalid++;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt++;
- break;
- }
- }
-
- });
-
- Mediator.installTo( Queue.prototype );
-
- return Queue;
- });
-
- /**
- * @fileOverview 队列
- */
- define('widgets/queue',[
- 'base',
- 'uploader',
- 'queue',
- 'file',
- 'lib/file',
- 'runtime/client',
- 'widgets/widget'
- ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
-
- var $ = Base.$,
- rExt = /\.\w+$/,
- Status = WUFile.Status;
-
- return Uploader.register({
- name: 'queue',
-
- init: function( opts ) {
- var me = this,
- deferred, len, i, item, arr, accept, runtime;
-
- if ( $.isPlainObject( opts.accept ) ) {
- opts.accept = [ opts.accept ];
- }
-
- // accept中的中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
-
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].extensions;
- item && arr.push( item );
- }
-
- if ( arr.length ) {
- accept = '\\.' + arr.join(',')
- .replace( /,/g, '$|\\.' )
- .replace( /\*/g, '.*' ) + '$';
- }
-
- me.accept = new RegExp( accept, 'i' );
- }
-
- me.queue = new Queue();
- me.stats = me.queue.stats;
-
- // 如果当前不是html5运行时,那就算了。
- // 不执行后续操作
- if ( this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- // 创建一个 html5 运行时的 placeholder
- // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
- deferred = Base.Deferred();
- this.placeholder = runtime = new RuntimeClient('Placeholder');
- runtime.connectRuntime({
- runtimeOrder: 'html5'
- }, function() {
- me._ruid = runtime.getRuid();
- deferred.resolve();
- });
- return deferred.promise();
- },
-
-
- // 为了支持外部直接添加一个原生File对象。
- _wrapFile: function( file ) {
- if ( !(file instanceof WUFile) ) {
-
- if ( !(file instanceof File) ) {
- if ( !this._ruid ) {
- throw new Error('Can\'t add external files.');
- }
- file = new File( this._ruid, file );
- }
-
- file = new WUFile( file );
- }
-
- return file;
- },
-
- // 判断文件是否可以被加入队列
- acceptFile: function( file ) {
- var invalid = !file || !file.size || this.accept &&
-
- // 如果名字中有后缀,才做后缀白名单处理。
- rExt.exec( file.name ) && !this.accept.test( file.name );
-
- return !invalid;
- },
-
-
- /**
- * @event beforeFileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
- * @for Uploader
- */
-
- /**
- * @event fileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列以后触发。
- * @for Uploader
- */
-
- _addFile: function( file ) {
- var me = this;
-
- file = me._wrapFile( file );
-
- // 不过类型判断允许不允许,先派送 `beforeFileQueued`
- if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
- return;
- }
-
- // 类型不匹配,则派送错误事件,并返回。
- if ( !me.acceptFile( file ) ) {
- me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
- return;
- }
-
- me.queue.append( file );
- me.owner.trigger( 'fileQueued', file );
- return file;
- },
-
- getFile: function( fileId ) {
- return this.queue.getFile( fileId );
- },
-
- /**
- * @event filesQueued
- * @param {File} files 数组,内容为原始File(lib/File)对象。
- * @description 当一批文件添加进队列以后触发。
- * @for Uploader
- */
-
- /**
- * @property {Boolean} [auto=false]
- * @namespace options
- * @for Uploader
- * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
- *
- */
-
- /**
- * @method addFiles
- * @grammar addFiles( file ) => undefined
- * @grammar addFiles( [file1, file2 ...] ) => undefined
- * @param {Array of File or File} [files] Files 对象 数组
- * @description 添加文件到队列
- * @for Uploader
- */
- addFile: function( files ) {
- var me = this;
-
- if ( !files.length ) {
- files = [ files ];
- }
-
- files = $.map( files, function( file ) {
- return me._addFile( file );
- });
-
- if ( files.length ) {
-
- me.owner.trigger( 'filesQueued', files );
-
- if ( me.options.auto ) {
- setTimeout(function() {
- me.request('start-upload');
- }, 20 );
- }
- }
- },
-
- getStats: function() {
- return this.stats;
- },
-
- /**
- * @event fileDequeued
- * @param {File} file File对象
- * @description 当文件被移除队列后触发。
- * @for Uploader
- */
-
- /**
- * @method removeFile
- * @grammar removeFile( file ) => undefined
- * @grammar removeFile( id ) => undefined
- * @grammar removeFile( file, true ) => undefined
- * @grammar removeFile( id, true ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.removeFile( file );
- * })
- */
- removeFile: function( file, remove ) {
- var me = this;
-
- file = file.id ? file : me.queue.getFile( file );
-
- this.request( 'cancel-file', file );
-
- if ( remove ) {
- this.queue.removeFile( file );
- }
- },
-
- /**
- * @method getFiles
- * @grammar getFiles() => Array
- * @grammar getFiles( status1, status2, status... ) => Array
- * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
- * @for Uploader
- * @example
- * console.log( uploader.getFiles() ); // => all files
- * console.log( uploader.getFiles('error') ) // => all error files.
- */
- getFiles: function() {
- return this.queue.getFiles.apply( this.queue, arguments );
- },
-
- fetchFile: function() {
- return this.queue.fetch.apply( this.queue, arguments );
- },
-
- /**
- * @method retry
- * @grammar retry() => undefined
- * @grammar retry( file ) => undefined
- * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
- * @for Uploader
- * @example
- * function retry() {
- * uploader.retry();
- * }
- */
- retry: function( file, noForceStart ) {
- var me = this,
- files, i, len;
-
- if ( file ) {
- file = file.id ? file : me.queue.getFile( file );
- file.setStatus( Status.QUEUED );
- noForceStart || me.request('start-upload');
- return;
- }
-
- files = me.queue.getFiles( Status.ERROR );
- i = 0;
- len = files.length;
-
- for ( ; i < len; i++ ) {
- file = files[ i ];
- file.setStatus( Status.QUEUED );
- }
-
- me.request('start-upload');
- },
-
- /**
- * @method sort
- * @grammar sort( fn ) => undefined
- * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
- * @for Uploader
- */
- sortFiles: function() {
- return this.queue.sort.apply( this.queue, arguments );
- },
-
- /**
- * @event reset
- * @description 当 uploader 被重置的时候触发。
- * @for Uploader
- */
-
- /**
- * @method reset
- * @grammar reset() => undefined
- * @description 重置uploader。目前只重置了队列。
- * @for Uploader
- * @example
- * uploader.reset();
- */
- reset: function() {
- this.owner.trigger('reset');
- this.queue = new Queue();
- this.stats = this.queue.stats;
- },
-
- destroy: function() {
- this.reset();
- this.placeholder && this.placeholder.destroy();
- }
- });
-
- });
- /**
- * @fileOverview 添加获取Runtime相关信息的方法。
- */
- define('widgets/runtime',[
- 'uploader',
- 'runtime/runtime',
- 'widgets/widget'
- ], function( Uploader, Runtime ) {
-
- Uploader.support = function() {
- return Runtime.hasRuntime.apply( Runtime, arguments );
- };
-
- /**
- * @property {Object} [runtimeOrder=html5,flash]
- * @namespace options
- * @for Uploader
- * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
- *
- * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
- */
-
- return Uploader.register({
- name: 'runtime',
-
- init: function() {
- if ( !this.predictRuntimeType() ) {
- throw Error('Runtime Error');
- }
- },
-
- /**
- * 预测Uploader将采用哪个`Runtime`
- * @grammar predictRuntimeType() => String
- * @method predictRuntimeType
- * @for Uploader
- */
- predictRuntimeType: function() {
- var orders = this.options.runtimeOrder || Runtime.orders,
- type = this.type,
- i, len;
-
- if ( !type ) {
- orders = orders.split( /\s*,\s*/g );
-
- for ( i = 0, len = orders.length; i < len; i++ ) {
- if ( Runtime.hasRuntime( orders[ i ] ) ) {
- this.type = type = orders[ i ];
- break;
- }
- }
- }
-
- return type;
- }
- });
- });
- /**
- * @fileOverview Transport
- */
- define('lib/transport',[
- 'base',
- 'runtime/client',
- 'mediator'
- ], function( Base, RuntimeClient, Mediator ) {
-
- var $ = Base.$;
-
- function Transport( opts ) {
- var me = this;
-
- opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
- RuntimeClient.call( this, 'Transport' );
-
- this._blob = null;
- this._formData = opts.formData || {};
- this._headers = opts.headers || {};
-
- this.on( 'progress', this._timeout );
- this.on( 'load error', function() {
- me.trigger( 'progress', 1 );
- clearTimeout( me._timer );
- });
- }
-
- Transport.options = {
- server: '',
- method: 'POST',
-
- // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
- withCredentials: false,
- fileVal: 'file',
- timeout: 2 * 60 * 1000, // 2分钟
- formData: {},
- headers: {},
- sendAsBinary: false
- };
-
- $.extend( Transport.prototype, {
-
- // 添加Blob, 只能添加一次,最后一次有效。
- appendBlob: function( key, blob, filename ) {
- var me = this,
- opts = me.options;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- });
-
- me._blob = blob;
- opts.fileVal = key || opts.fileVal;
- opts.filename = filename || opts.filename;
- },
-
- // 添加其他字段
- append: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._formData, key );
- } else {
- this._formData[ key ] = value;
- }
- },
-
- setRequestHeader: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._headers, key );
- } else {
- this._headers[ key ] = value;
- }
- },
-
- send: function( method ) {
- this.exec( 'send', method );
- this._timeout();
- },
-
- abort: function() {
- clearTimeout( this._timer );
- return this.exec('abort');
- },
-
- destroy: function() {
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- },
-
- getResponseHeaders: function() {
- return this.exec('getResponseHeaders');
- },
-
- getResponse: function() {
- return this.exec('getResponse');
- },
-
- getResponseAsJson: function() {
- return this.exec('getResponseAsJson');
- },
-
- getStatus: function() {
- return this.exec('getStatus');
- },
-
- _timeout: function() {
- var me = this,
- duration = me.options.timeout;
-
- if ( !duration ) {
- return;
- }
-
- clearTimeout( me._timer );
- me._timer = setTimeout(function() {
- me.abort();
- me.trigger( 'error', 'timeout' );
- }, duration );
- }
-
- });
-
- // 让Transport具备事件功能。
- Mediator.installTo( Transport.prototype );
-
- return Transport;
+ /**
+ * @fileOverview 添加获取Runtime相关信息的方法。
+ */
+ define('widgets/runtime',[
+ 'uploader',
+ 'runtime/runtime',
+ 'widgets/widget'
+ ], function( Uploader, Runtime ) {
+
+ Uploader.support = function() {
+ return Runtime.hasRuntime.apply( Runtime, arguments );
+ };
+
+ /**
+ * @property {Object} [runtimeOrder=html5,flash]
+ * @namespace options
+ * @for Uploader
+ * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
+ *
+ * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
+ */
+
+ return Uploader.register({
+ name: 'runtime',
+
+ init: function() {
+ if ( !this.predictRuntimeType() ) {
+ throw Error('Runtime Error');
+ }
+ },
+
+ /**
+ * 预测Uploader将采用哪个`Runtime`
+ * @grammar predictRuntimeType() => String
+ * @method predictRuntimeType
+ * @for Uploader
+ */
+ predictRuntimeType: function() {
+ var orders = this.options.runtimeOrder || Runtime.orders,
+ type = this.type,
+ i, len;
+
+ if ( !type ) {
+ orders = orders.split( /\s*,\s*/g );
+
+ for ( i = 0, len = orders.length; i < len; i++ ) {
+ if ( Runtime.hasRuntime( orders[ i ] ) ) {
+ this.type = type = orders[ i ];
+ break;
+ }
+ }
+ }
+
+ return type;
+ }
+ });
});
+ /**
+ * @fileOverview Transport
+ */
+ define('lib/transport',[
+ 'base',
+ 'runtime/client',
+ 'mediator'
+ ], function( Base, RuntimeClient, Mediator ) {
+
+ var $ = Base.$;
+
+ function Transport( opts ) {
+ var me = this;
+
+ opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
+ RuntimeClient.call( this, 'Transport' );
+
+ this._blob = null;
+ this._formData = opts.formData || {};
+ this._headers = opts.headers || {};
+
+ this.on( 'progress', this._timeout );
+ this.on( 'load error', function() {
+ me.trigger( 'progress', 1 );
+ clearTimeout( me._timer );
+ });
+ }
+
+ Transport.options = {
+ server: '',
+ method: 'POST',
+
+ // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
+ withCredentials: false,
+ fileVal: 'file',
+ timeout: 2 * 60 * 1000, // 2分钟
+ formData: {},
+ headers: {},
+ sendAsBinary: false
+ };
+
+ $.extend( Transport.prototype, {
+
+ // 添加Blob, 只能添加一次,最后一次有效。
+ appendBlob: function( key, blob, filename ) {
+ var me = this,
+ opts = me.options;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ });
+
+ me._blob = blob;
+ opts.fileVal = key || opts.fileVal;
+ opts.filename = filename || opts.filename;
+ },
+
+ // 添加其他字段
+ append: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._formData, key );
+ } else {
+ this._formData[ key ] = value;
+ }
+ },
+
+ setRequestHeader: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._headers, key );
+ } else {
+ this._headers[ key ] = value;
+ }
+ },
+
+ send: function( method ) {
+ this.exec( 'send', method );
+ this._timeout();
+ },
+
+ abort: function() {
+ clearTimeout( this._timer );
+ return this.exec('abort');
+ },
+
+ destroy: function() {
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ },
+
+ getResponseHeaders: function() {
+ return this.exec('getResponseHeaders');
+ },
+
+ getResponse: function() {
+ return this.exec('getResponse');
+ },
+
+ getResponseAsJson: function() {
+ return this.exec('getResponseAsJson');
+ },
+
+ getStatus: function() {
+ return this.exec('getStatus');
+ },
+
+ _timeout: function() {
+ var me = this,
+ duration = me.options.timeout;
+
+ if ( !duration ) {
+ return;
+ }
+
+ clearTimeout( me._timer );
+ me._timer = setTimeout(function() {
+ me.abort();
+ me.trigger( 'error', 'timeout' );
+ }, duration );
+ }
+
+ });
+
+ // 让Transport具备事件功能。
+ Mediator.installTo( Transport.prototype );
+
+ return Transport;
+ });
- /**
- * @fileOverview 负责文件上传相关。
- */
- define('widgets/upload',[
- 'base',
- 'uploader',
- 'file',
- 'lib/transport',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile, Transport ) {
-
- var $ = Base.$,
- isPromise = Base.isPromise,
- Status = WUFile.Status;
-
- // 添加默认配置项
- $.extend( Uploader.options, {
-
-
- /**
- * @property {Boolean} [prepareNextFile=false]
- * @namespace options
- * @for Uploader
- * @description 是否允许在文件传输时提前把下一个文件准备好。
- * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
- * 如果能提前在当前文件传输期处理,可以节省总体耗时。
- */
- prepareNextFile: false,
-
- /**
- * @property {Boolean} [chunked=false]
- * @namespace options
- * @for Uploader
- * @description 是否要分片处理大文件上传。
- */
- chunked: false,
-
- /**
- * @property {Boolean} [chunkSize=5242880]
- * @namespace options
- * @for Uploader
- * @description 如果要分片,分多大一片? 默认大小为5M.
- */
- chunkSize: 5 * 1024 * 1024,
-
- /**
- * @property {Boolean} [chunkRetry=2]
- * @namespace options
- * @for Uploader
- * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
- */
- chunkRetry: 2,
-
- /**
- * @property {Number} [chunkRetryDelay=1000]
- * @namespace options
- * @for Uploader
- * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
- */
- chunkRetryDelay: 1000,
-
- /**
- * @property {Boolean} [threads=3]
- * @namespace options
- * @for Uploader
- * @description 上传并发数。允许同时最大上传进程数。
- */
- threads: 3,
-
-
- /**
- * @property {Object} [formData={}]
- * @namespace options
- * @for Uploader
- * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
- */
- formData: {}
-
- /**
- * @property {Object} [fileVal='file']
- * @namespace options
- * @for Uploader
- * @description 设置文件上传域的name。
- */
-
- /**
- * @property {Object} [method=POST]
- * @namespace options
- * @for Uploader
- * @description 文件上传方式,`POST` 或者 `GET`。
- */
-
- /**
- * @property {Object} [sendAsBinary=false]
- * @namespace options
- * @for Uploader
- * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
- * 其他参数在$_GET数组中。
- */
- });
-
- // 负责将文件切片。
- function CuteFile( file, chunkSize ) {
- var pending = [],
- blob = file.source,
- total = blob.size,
- chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
- start = 0,
- index = 0,
- len, api;
-
- api = {
- file: file,
-
- has: function() {
- return !!pending.length;
- },
-
- shift: function() {
- return pending.shift();
- },
-
- unshift: function( block ) {
- pending.unshift( block );
- }
- };
-
- while ( index < chunks ) {
- len = Math.min( chunkSize, total - start );
-
- pending.push({
- file: file,
- start: start,
- end: chunkSize ? (start + len) : total,
- total: total,
- chunks: chunks,
- chunk: index++,
- cuted: api
- });
- start += len;
- }
-
- file.blocks = pending.concat();
- file.remaning = pending.length;
-
- return api;
- }
-
- Uploader.register({
- name: 'upload',
-
- init: function() {
- var owner = this.owner,
- me = this;
-
- this.runing = false;
- this.progress = false;
-
- owner
- .on( 'startUpload', function() {
- me.progress = true;
- })
- .on( 'uploadFinished', function() {
- me.progress = false;
- });
-
- // 记录当前正在传的数据,跟threads相关
- this.pool = [];
-
- // 缓存分好片的文件。
- this.stack = [];
-
- // 缓存即将上传的文件。
- this.pending = [];
-
- // 跟踪还有多少分片在上传中但是没有完成上传。
- this.remaning = 0;
- this.__tick = Base.bindFn( this._tick, this );
-
- // 销毁上传相关的属性。
- owner.on( 'uploadComplete', function( file ) {
-
- // 把其他块取消了。
- file.blocks && $.each( file.blocks, function( _, v ) {
- v.transport && (v.transport.abort(), v.transport.destroy());
- delete v.transport;
- });
-
- delete file.blocks;
- delete file.remaning;
- });
- },
-
- reset: function() {
- this.request( 'stop-upload', true );
- this.runing = false;
- this.pool = [];
- this.stack = [];
- this.pending = [];
- this.remaning = 0;
- this._trigged = false;
- this._promise = null;
- },
-
- /**
- * @event startUpload
- * @description 当开始上传流程时触发。
- * @for Uploader
- */
-
- /**
- * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
- *
- * 可以指定开始某一个文件。
- * @grammar upload() => undefined
- * @grammar upload( file | fileId) => undefined
- * @method upload
- * @for Uploader
- */
- startUpload: function(file) {
- var me = this;
-
- // 移出invalid的文件
- $.each( me.request( 'get-files', Status.INVALID ), function() {
- me.request( 'remove-file', this );
- });
-
- // 如果指定了开始某个文件,则只开始指定的文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if (file.getStatus() === Status.INTERRUPT) {
- file.setStatus( Status.QUEUED );
-
- $.each( me.pool, function( _, v ) {
-
- // 之前暂停过。
- if (v.file !== file) {
- return;
- }
-
- v.transport && v.transport.send();
- file.setStatus( Status.PROGRESS );
- });
-
-
- } else if (file.getStatus() !== Status.PROGRESS) {
- file.setStatus( Status.QUEUED );
- }
- } else {
- $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
- this.setStatus( Status.QUEUED );
- });
- }
-
- if ( me.runing ) {
- me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
- return Base.nextTick( me.__tick );
- }
-
- me.runing = true;
- var files = [];
-
- // 如果有暂停的,则续传
- file || $.each( me.pool, function( _, v ) {
- var file = v.file;
-
- if ( file.getStatus() === Status.INTERRUPT ) {
- me._trigged = false;
- files.push(file);
-
- if (v.waiting) {
- return;
- }
-
- // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
- v.transport ? v.transport.send() : me._doSend(v);
- }
- });
-
- $.each(files, function() {
- this.setStatus( Status.PROGRESS );
- });
-
- file || $.each( me.request( 'get-files',
- Status.INTERRUPT ), function() {
- this.setStatus( Status.PROGRESS );
- });
-
- me._trigged = false;
- Base.nextTick( me.__tick );
- me.owner.trigger('startUpload');
- },
-
- /**
- * @event stopUpload
- * @description 当开始上传流程暂停时触发。
- * @for Uploader
- */
-
- /**
- * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
- *
- * 如果第一个参数是文件,则只暂停指定文件。
- * @grammar stop() => undefined
- * @grammar stop( true ) => undefined
- * @grammar stop( file ) => undefined
- * @method stop
- * @for Uploader
- */
- stopUpload: function( file, interrupt ) {
- var me = this;
-
- if (file === true) {
- interrupt = file;
- file = null;
- }
-
- if ( me.runing === false ) {
- return;
- }
-
- // 如果只是暂停某个文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if ( file.getStatus() !== Status.PROGRESS &&
- file.getStatus() !== Status.QUEUED ) {
- return;
- }
-
- file.setStatus( Status.INTERRUPT );
-
-
- $.each( me.pool, function( _, v ) {
-
- // 只 abort 指定的文件,每一个分片。
- if (v.file === file) {
- v.transport && v.transport.abort();
-
- if (interrupt) {
- me._putback(v);
- me._popBlock(v);
- }
- }
- });
-
- me.owner.trigger('stopUpload', file);// 暂停,trigger event
-
- return Base.nextTick( me.__tick );
- }
-
- me.runing = false;
-
- // 正在准备中的文件。
- if (this._promise && this._promise.file) {
- this._promise.file.setStatus( Status.INTERRUPT );
- }
-
- interrupt && $.each( me.pool, function( _, v ) {
- v.transport && v.transport.abort();
- v.file.setStatus( Status.INTERRUPT );
- });
-
- me.owner.trigger('stopUpload');
- },
-
- /**
- * @method cancelFile
- * @grammar cancelFile( file ) => undefined
- * @grammar cancelFile( id ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 标记文件状态为已取消, 同时将中断文件传输。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.cancelFile( file );
- * })
- */
- cancelFile: function( file ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- file.setStatus( Status.CANCELLED );
- this.owner.trigger( 'fileDequeued', file );
- },
-
- /**
- * 判断`Uploader`是否正在上传中。
- * @grammar isInProgress() => Boolean
- * @method isInProgress
- * @for Uploader
- */
- isInProgress: function() {
- return !!this.progress;
- },
-
- _getStats: function() {
- return this.request('get-stats');
- },
-
- /**
- * 跳过一个文件上传,直接标记指定文件为已上传状态。
- * @grammar skipFile( file ) => undefined
- * @method skipFile
- * @for Uploader
- */
- skipFile: function( file, status ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- file.setStatus( status || Status.COMPLETE );
- file.skipped = true;
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- this.owner.trigger( 'uploadSkip', file );
- },
-
- /**
- * @event uploadFinished
- * @description 当所有文件上传结束时触发。
- * @for Uploader
- */
- _tick: function() {
- var me = this,
- opts = me.options,
- fn, val;
-
- // 上一个promise还没有结束,则等待完成后再执行。
- if ( me._promise ) {
- return me._promise.always( me.__tick );
- }
-
- // 还有位置,且还有文件要处理的话。
- if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
- me._trigged = false;
-
- fn = function( val ) {
- me._promise = null;
-
- // 有可能是reject过来的,所以要检测val的类型。
- val && val.file && me._startSend( val );
- Base.nextTick( me.__tick );
- };
-
- me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
-
- // 没有要上传的了,且没有正在传输的了。
- } else if ( !me.remaning && !me._getStats().numOfQueue &&
- !me._getStats().numOfInterrupt ) {
- me.runing = false;
-
- me._trigged || Base.nextTick(function() {
- me.owner.trigger('uploadFinished');
- });
- me._trigged = true;
- }
- },
-
- _putback: function(block) {
- var idx;
-
- block.cuted.unshift(block);
- idx = this.stack.indexOf(block.cuted);
-
- if (!~idx) {
- // 如果不在里面,说明移除过,需要把计数还原回去。
- this.remaning++;
- block.file.remaning++;
- this.stack.unshift(block.cuted);
- }
- },
-
- _getStack: function() {
- var i = 0,
- act;
-
- while ( (act = this.stack[ i++ ]) ) {
- if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
- return act;
- } else if (!act.has() ||
- act.file.getStatus() !== Status.PROGRESS &&
- act.file.getStatus() !== Status.INTERRUPT ) {
-
- // 把已经处理完了的,或者,状态为非 progress(上传中)、
- // interupt(暂停中) 的移除。
- this.stack.splice( --i, 1 );
- }
- }
-
- return null;
- },
-
- _nextBlock: function() {
- var me = this,
- opts = me.options,
- act, next, done, preparing;
-
- // 如果当前文件还有没有需要传输的,则直接返回剩下的。
- if ( (act = this._getStack()) ) {
-
- // 是否提前准备下一个文件
- if ( opts.prepareNextFile && !me.pending.length ) {
- me._prepareNextFile();
- }
-
- return act.shift();
-
- // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
- } else if ( me.runing ) {
-
- // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
- if ( !me.pending.length && me._getStats().numOfQueue ) {
- me._prepareNextFile();
- }
-
- next = me.pending.shift();
- done = function( file ) {
- if ( !file ) {
- return null;
- }
-
- act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
- me.stack.push(act);
- return act.shift();
- };
-
- // 文件可能还在prepare中,也有可能已经完全准备好了。
- if ( isPromise( next) ) {
- preparing = next.file;
- next = next[ next.pipe ? 'pipe' : 'then' ]( done );
- next.file = preparing;
- return next;
- }
-
- return done( next );
- }
- },
-
-
- /**
- * @event uploadStart
- * @param {File} file File对象
- * @description 某个文件开始上传前触发,一个文件只会触发一次。
- * @for Uploader
- */
- _prepareNextFile: function() {
- var me = this,
- file = me.request('fetch-file'),
- pending = me.pending,
- promise;
-
- if ( file ) {
- promise = me.request( 'before-send-file', file, function() {
-
- // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
- if ( file.getStatus() === Status.PROGRESS ||
- file.getStatus() === Status.INTERRUPT ) {
- return file;
- }
-
- return me._finishFile( file );
- });
-
- me.owner.trigger( 'uploadStart', file );
- file.setStatus( Status.PROGRESS );
-
- promise.file = file;
-
- // 如果还在pending中,则替换成文件本身。
- promise.done(function() {
- var idx = $.inArray( promise, pending );
-
- ~idx && pending.splice( idx, 1, file );
- });
-
- // befeore-send-file的钩子就有错误发生。
- promise.fail(function( reason ) {
- file.setStatus( Status.ERROR, reason );
- me.owner.trigger( 'uploadError', file, reason );
- me.owner.trigger( 'uploadComplete', file );
- });
-
- pending.push( promise );
- }
- },
-
- // 让出位置了,可以让其他分片开始上传
- _popBlock: function( block ) {
- var idx = $.inArray( block, this.pool );
-
- this.pool.splice( idx, 1 );
- block.file.remaning--;
- this.remaning--;
- },
-
- // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
- _startSend: function( block ) {
- var me = this,
- file = block.file,
- promise;
-
- // 有可能在 before-send-file 的 promise 期间改变了文件状态。
- // 如:暂停,取消
- // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
- if ( file.getStatus() !== Status.PROGRESS ) {
-
- // 如果是中断,则还需要放回去。
- if (file.getStatus() === Status.INTERRUPT) {
- me._putback(block);
- }
-
- return;
- }
-
- me.pool.push( block );
- me.remaning++;
-
- // 如果没有分片,则直接使用原始的。
- // 不会丢失content-type信息。
- block.blob = block.chunks === 1 ? file.source :
- file.source.slice( block.start, block.end );
-
- // hook, 每个分片发送之前可能要做些异步的事情。
- block.waiting = promise = me.request( 'before-send', block, function() {
- delete block.waiting;
-
- // 有可能文件已经上传出错了,所以不需要再传输了。
- if ( file.getStatus() === Status.PROGRESS ) {
- me._doSend( block );
- } else if (block.file.getStatus() !== Status.INTERRUPT) {
- me._popBlock(block);
- }
-
- Base.nextTick(me.__tick);
- });
-
- // 如果为fail了,则跳过此分片。
- promise.fail(function() {
- delete block.waiting;
-
- if ( file.remaning === 1 ) {
- me._finishFile( file ).always(function() {
- block.percentage = 1;
- me._popBlock( block );
- me.owner.trigger( 'uploadComplete', file );
- Base.nextTick( me.__tick );
- });
- } else {
- block.percentage = 1;
- me.updateFileProgress( file );
- me._popBlock( block );
- Base.nextTick( me.__tick );
- }
- });
- },
-
-
- /**
- * @event uploadBeforeSend
- * @param {Object} object
- * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
- * @param {Object} headers 可以扩展此对象来控制上传头部。
- * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
- * @for Uploader
- */
-
- /**
- * @event uploadAccept
- * @param {Object} object
- * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
- * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
- * @for Uploader
- */
-
- /**
- * @event uploadProgress
- * @param {File} file File对象
- * @param {Number} percentage 上传进度
- * @description 上传过程中触发,携带上传进度。
- * @for Uploader
- */
-
-
- /**
- * @event uploadError
- * @param {File} file File对象
- * @param {String} reason 出错的code
- * @description 当文件上传出错时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadSuccess
- * @param {File} file File对象
- * @param {Object} response 服务端返回的数据
- * @description 当文件上传成功时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadComplete
- * @param {File} [file] File对象
- * @description 不管成功或者失败,文件上传完成时触发。
- * @for Uploader
- */
-
- // 做上传操作。
- _doSend: function( block ) {
- var me = this,
- owner = me.owner,
- opts = $.extend({}, me.options, block.options),
- file = block.file,
- tr = new Transport( opts ),
- data = $.extend({}, opts.formData ),
- headers = $.extend({}, opts.headers ),
- requestAccept, ret;
-
- block.transport = tr;
-
- tr.on( 'destroy', function() {
- delete block.transport;
- me._popBlock( block );
- Base.nextTick( me.__tick );
- });
-
- // 广播上传进度。以文件为单位。
- tr.on( 'progress', function( percentage ) {
- block.percentage = percentage;
- me.updateFileProgress( file );
- });
-
- // 用来询问,是否返回的结果是有错误的。
- requestAccept = function( reject ) {
- var fn;
-
- ret = tr.getResponseAsJson() || {};
- ret._raw = tr.getResponse();
- ret._headers = tr.getResponseHeaders();
- block.response = ret;
- fn = function( value ) {
- reject = value;
- };
-
- // 服务端响应了,不代表成功了,询问是否响应正确。
- if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
- reject = reject || 'server';
- }
-
- return reject;
- };
-
- // 尝试重试,然后广播文件上传出错。
- tr.on( 'error', function( type, flag ) {
- // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
- // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
- var typeArr = type.split( '|' ), status, statusText;
- type = typeArr[0];
- status = parseFloat( typeArr[1] ),
- statusText = typeArr[2];
-
- block.retried = block.retried || 0;
-
- // 自动重试
- if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
- block.retried < opts.chunkRetry ) {
-
- block.retried++;
-
- me.retryTimer = setTimeout(function() {
- tr.send();
- }, opts.chunkRetryDelay || 1000);
-
- } else {
-
- // http status 500 ~ 600
- if ( !flag && type === 'server' ) {
- type = requestAccept( type );
- }
-
- file.setStatus( Status.ERROR, type );
- owner.trigger( 'uploadError', file, type, status, statusText );
- owner.trigger( 'uploadComplete', file );
- }
- });
-
- // 上传成功
- tr.on( 'load', function() {
- var reason;
-
- // 如果非预期,转向上传出错。
- if ( (reason = requestAccept()) ) {
- tr.trigger( 'error', reason, true );
- return;
- }
-
- // 全部上传完成。
- if ( file.remaning === 1 ) {
- me._finishFile( file, ret );
- } else {
- tr.destroy();
- }
- });
-
- // 配置默认的上传字段。
- data = $.extend( data, {
- id: file.id,
- name: file.name,
- type: file.type,
- lastModifiedDate: file.lastModifiedDate,
- size: file.size
- });
-
- block.chunks > 1 && $.extend( data, {
- chunks: block.chunks,
- chunk: block.chunk
- });
-
- // 在发送之间可以添加字段什么的。。。
- // 如果默认的字段不够使用,可以通过监听此事件来扩展
- owner.trigger( 'uploadBeforeSend', block, data, headers );
-
- // 开始发送。
- tr.appendBlob( opts.fileVal, block.blob, file.name );
- tr.append( data );
- tr.setRequestHeader( headers );
- tr.send();
- },
-
- // 完成上传。
- _finishFile: function( file, ret, hds ) {
- var owner = this.owner;
-
- return owner
- .request( 'after-send-file', arguments, function() {
- file.setStatus( Status.COMPLETE );
- owner.trigger( 'uploadSuccess', file, ret, hds );
- })
- .fail(function( reason ) {
-
- // 如果外部已经标记为invalid什么的,不再改状态。
- if ( file.getStatus() === Status.PROGRESS ) {
- file.setStatus( Status.ERROR, reason );
- }
-
- owner.trigger( 'uploadError', file, reason );
- })
- .always(function() {
- owner.trigger( 'uploadComplete', file );
- });
- },
-
- updateFileProgress: function(file) {
- var totalPercent = 0,
- uploaded = 0;
-
- if (!file.blocks) {
- return;
- }
-
- $.each( file.blocks, function( _, v ) {
- uploaded += (v.percentage || 0) * (v.end - v.start);
- });
-
- totalPercent = uploaded / file.size;
- this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
- },
-
- destroy: function() {
- clearTimeout(this.retryTimer);
- }
-
- });
- });
-
- /**
- * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
- */
-
- define('widgets/validator',[
- 'base',
- 'uploader',
- 'file',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile ) {
-
- var $ = Base.$,
- validators = {},
- api;
-
- /**
- * @event error
- * @param {String} type 错误类型。
- * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
- *
- * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
- * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
- * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
- * @for Uploader
- */
-
- // 暴露给外面的api
- api = {
-
- // 添加验证器
- addValidator: function( type, cb ) {
- validators[ type ] = cb;
- },
-
- // 移除验证器
- removeValidator: function( type ) {
- delete validators[ type ];
- }
- };
-
- // 在Uploader初始化的时候启动Validators的初始化
- Uploader.register({
- name: 'validator',
-
- init: function() {
- var me = this;
- Base.nextTick(function() {
- $.each( validators, function() {
- this.call( me.owner );
- });
- });
- }
- });
-
- /**
- * @property {int} [fileNumLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总数量, 超出则不允许加入队列。
- */
- api.addValidator( 'fileNumLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileNumLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
- if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
- return false;
- }
- if ( count >= max && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return count >= max ? false : true;
- });
-
- uploader.on( 'fileQueued', function() {
- count++;
- });
-
- uploader.on( 'fileDequeued', function() {
- count--;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
-
- /**
- * @property {int} [fileSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileSizeLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var invalid = count + file.size > max;
-
- if ( invalid && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return invalid ? false : true;
- });
-
- uploader.on( 'fileQueued', function( file ) {
- count += file.size;
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- count -= file.size;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
- /**
- * @property {int} [fileSingleSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSingleSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- max = opts.fileSingleSizeLimit;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
-
- if ( file.size > max ) {
- file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
- this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
- return false;
- }
-
- });
-
- });
-
- /**
- * @property {Boolean} [duplicate=undefined]
- * @namespace options
- * @for Uploader
- * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
- */
- api.addValidator( 'duplicate', function() {
- var uploader = this,
- opts = uploader.options,
- mapping = {};
-
- if ( opts.duplicate ) {
- return;
- }
-
- function hashString( str ) {
- var hash = 0,
- i = 0,
- len = str.length,
- _char;
-
- for ( ; i < len; i++ ) {
- _char = str.charCodeAt( i );
- hash = _char + (hash << 6) + (hash << 16) - hash;
- }
-
- return hash;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var hash = file.__hash || (file.__hash = hashString( file.name +
- file.size + file.lastModifiedDate ));
-
- // 已经重复了
- if ( mapping[ hash ] ) {
- this.trigger( 'error', 'F_DUPLICATE', file );
- return false;
- }
- });
-
- uploader.on( 'fileQueued', function( file ) {
- var hash = file.__hash;
-
- hash && (mapping[ hash ] = true);
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- var hash = file.__hash;
-
- hash && (delete mapping[ hash ]);
- });
-
- uploader.on( 'reset', function() {
- mapping = {};
- });
- });
-
- return api;
- });
-
- /**
- * @fileOverview Md5
- */
- define('lib/md5',[
- 'runtime/client',
- 'mediator'
- ], function( RuntimeClient, Mediator ) {
-
- function Md5() {
- RuntimeClient.call( this, 'Md5' );
- }
-
- // 让 Md5 具备事件功能。
- Mediator.installTo( Md5.prototype );
-
- Md5.prototype.loadFromBlob = function( blob ) {
- var me = this;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- me.exec( 'loadFromBlob', blob );
- });
- };
-
- Md5.prototype.getResult = function() {
- return this.exec('getResult');
- };
-
- return Md5;
- });
- /**
- * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
- */
- define('widgets/md5',[
- 'base',
- 'uploader',
- 'lib/md5',
- 'lib/blob',
- 'widgets/widget'
- ], function( Base, Uploader, Md5, Blob ) {
-
- return Uploader.register({
- name: 'md5',
-
-
- /**
- * 计算文件 md5 值,返回一个 promise 对象,可以监听 progress 进度。
- *
- *
- * @method md5File
- * @grammar md5File( file[, start[, end]] ) => promise
- * @for Uploader
- * @example
- *
- * uploader.on( 'fileQueued', function( file ) {
- * var $li = ...;
- *
- * uploader.md5File( file )
- *
- * // 及时显示进度
- * .progress(function(percentage) {
- * console.log('Percentage:', percentage);
- * })
- *
- * // 完成
- * .then(function(val) {
- * console.log('md5 result:', val);
- * });
- *
- * });
- */
- md5File: function( file, start, end ) {
- var md5 = new Md5(),
- deferred = Base.Deferred(),
- blob = (file instanceof Blob) ? file :
- this.request( 'get-file', file ).source;
-
- md5.on( 'progress load', function( e ) {
- e = e || {};
- deferred.notify( e.total ? e.loaded / e.total : 1 );
- });
-
- md5.on( 'complete', function() {
- deferred.resolve( md5.getResult() );
- });
-
- md5.on( 'error', function( reason ) {
- deferred.reject( reason );
- });
-
- if ( arguments.length > 1 ) {
- start = start || 0;
- end = end || 0;
- start < 0 && (start = blob.size + start);
- end < 0 && (end = blob.size + end);
- end = Math.min( end, blob.size );
- blob = blob.slice( start, end );
- }
-
- md5.loadFromBlob( blob );
-
- return deferred.promise();
- }
- });
- });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/compbase',[],function() {
-
- function CompBase( owner, runtime ) {
-
- this.owner = owner;
- this.options = owner.options;
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.getRuid = function() {
- return runtime.uid;
- };
-
- this.trigger = function() {
- return owner.trigger.apply( owner, arguments );
- };
- }
-
- return CompBase;
- });
- /**
- * @fileOverview Html5Runtime
- */
- define('runtime/html5/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var type = 'html5',
- components = {};
-
- function Html5Runtime() {
- var pool = {},
- me = this,
- destroy = this.destroy;
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- if ( components[ comp ] ) {
- instance = pool[ uid ] = pool[ uid ] ||
- new components[ comp ]( client, me );
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
- };
-
- me.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
- }
-
- Base.inherits( Runtime, {
- constructor: Html5Runtime,
-
- // 不需要连接其他程序,直接执行callback
- init: function() {
- var me = this;
- setTimeout(function() {
- me.trigger('ready');
- }, 1 );
- }
-
- });
-
- // 注册Components
- Html5Runtime.register = function( name, component ) {
- var klass = components[ name ] = Base.inherits( CompBase, component );
- return klass;
- };
-
- // 注册html5运行时。
- // 只有在支持的前提下注册。
- if ( window.Blob && window.FileReader && window.DataView ) {
- Runtime.addRuntime( type, Html5Runtime );
- }
-
- return Html5Runtime;
- });
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/html5/blob',[
- 'runtime/html5/runtime',
- 'lib/blob'
- ], function( Html5Runtime, Blob ) {
-
- return Html5Runtime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.owner.source,
- slice = blob.slice || blob.webkitSlice || blob.mozSlice;
-
- blob = slice.call( blob, start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
- });
/**
- * @fileOverview FilePaste
+ * @fileOverview 负责文件上传相关。
*/
- define('runtime/html5/dnd',[
+ define('widgets/upload',[
'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ 'uploader',
+ 'file',
+ 'lib/transport',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile, Transport ) {
var $ = Base.$,
- prefix = 'webuploader-dnd-';
+ isPromise = Base.isPromise,
+ Status = WUFile.Status;
- return Html5Runtime.register( 'DragAndDrop', {
- init: function() {
- var elem = this.elem = this.options.container;
+ // 添加默认配置项
+ $.extend( Uploader.options, {
- this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
- this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
- this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
- this.dropHandler = Base.bindFn( this._dropHandler, this );
- this.dndOver = false;
- elem.on( 'dragenter', this.dragEnterHandler );
- elem.on( 'dragover', this.dragOverHandler );
- elem.on( 'dragleave', this.dragLeaveHandler );
- elem.on( 'drop', this.dropHandler );
+ /**
+ * @property {Boolean} [prepareNextFile=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否允许在文件传输时提前把下一个文件准备好。
+ * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
+ * 如果能提前在当前文件传输期处理,可以节省总体耗时。
+ */
+ prepareNextFile: false,
- if ( this.options.disableGlobalDnd ) {
- $( document ).on( 'dragover', this.dragOverHandler );
- $( document ).on( 'drop', this.dropHandler );
- }
- },
+ /**
+ * @property {Boolean} [chunked=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否要分片处理大文件上传。
+ */
+ chunked: false,
- _dragEnterHandler: function( e ) {
- var me = this,
- denied = me._denied || false,
- items;
+ /**
+ * @property {Boolean} [chunkSize=5242880]
+ * @namespace options
+ * @for Uploader
+ * @description 如果要分片,分多大一片? 默认大小为5M.
+ */
+ chunkSize: 5 * 1024 * 1024,
- e = e.originalEvent || e;
+ /**
+ * @property {Boolean} [chunkRetry=2]
+ * @namespace options
+ * @for Uploader
+ * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
+ */
+ chunkRetry: 2,
- if ( !me.dndOver ) {
- me.dndOver = true;
+ /**
+ * @property {Number} [chunkRetryDelay=1000]
+ * @namespace options
+ * @for Uploader
+ * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
+ */
+ chunkRetryDelay: 1000,
- // 注意只有 chrome 支持。
- items = e.dataTransfer.items;
+ /**
+ * @property {Boolean} [threads=3]
+ * @namespace options
+ * @for Uploader
+ * @description 上传并发数。允许同时最大上传进程数。
+ */
+ threads: 3,
- if ( items && items.length ) {
- me._denied = denied = !me.trigger( 'accept', items );
- }
- me.elem.addClass( prefix + 'over' );
- me.elem[ denied ? 'addClass' :
- 'removeClass' ]( prefix + 'denied' );
- }
+ /**
+ * @property {Object} [formData={}]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
+ */
+ formData: {}
- e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+ /**
+ * @property {Object} [fileVal='file']
+ * @namespace options
+ * @for Uploader
+ * @description 设置文件上传域的name。
+ */
- return false;
- },
+ /**
+ * @property {Object} [method=POST]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传方式,`POST` 或者 `GET`。
+ */
- _dragOverHandler: function( e ) {
- // 只处理框内的。
- var parentElem = this.elem.parent().get( 0 );
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
+ /**
+ * @property {Object} [sendAsBinary=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
+ * 其他参数在$_GET数组中。
+ */
+ });
+
+ // 负责将文件切片。
+ function CuteFile( file, chunkSize ) {
+ var pending = [],
+ blob = file.source,
+ total = blob.size,
+ chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
+ start = 0,
+ index = 0,
+ len, api;
+
+ api = {
+ file: file,
+
+ has: function() {
+ return !!pending.length;
+ },
+
+ shift: function() {
+ return pending.shift();
+ },
+
+ unshift: function( block ) {
+ pending.unshift( block );
}
+ };
- clearTimeout( this._leaveTimer );
- this._dragEnterHandler.call( this, e );
+ while ( index < chunks ) {
+ len = Math.min( chunkSize, total - start );
- return false;
- },
+ pending.push({
+ file: file,
+ start: start,
+ end: chunkSize ? (start + len) : total,
+ total: total,
+ chunks: chunks,
+ chunk: index++,
+ cuted: api
+ });
+ start += len;
+ }
- _dragLeaveHandler: function() {
- var me = this,
- handler;
+ file.blocks = pending.concat();
+ file.remaning = pending.length;
- handler = function() {
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
- };
+ return api;
+ }
- clearTimeout( me._leaveTimer );
- me._leaveTimer = setTimeout( handler, 100 );
- return false;
- },
+ Uploader.register({
+ name: 'upload',
- _dropHandler: function( e ) {
- var me = this,
- ruid = me.getRuid(),
- parentElem = me.elem.parent().get( 0 ),
- dataTransfer, data;
+ init: function() {
+ var owner = this.owner,
+ me = this;
- // 只处理框内的。
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
- }
+ this.runing = false;
+ this.progress = false;
- e = e.originalEvent || e;
- dataTransfer = e.dataTransfer;
+ owner
+ .on( 'startUpload', function() {
+ me.progress = true;
+ })
+ .on( 'uploadFinished', function() {
+ me.progress = false;
+ });
- // 如果是页面内拖拽,还不能处理,不阻止事件。
- // 此处 ie11 下会报参数错误,
- try {
- data = dataTransfer.getData('text/html');
- } catch( err ) {
- }
+ // 记录当前正在传的数据,跟threads相关
+ this.pool = [];
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over' );
+ // 缓存分好片的文件。
+ this.stack = [];
- if ( !dataTransfer || data ) {
- return;
- }
+ // 缓存即将上传的文件。
+ this.pending = [];
- me._getTansferFiles( dataTransfer, function( results ) {
- me.trigger( 'drop', $.map( results, function( file ) {
- return new File( ruid, file );
- }) );
+ // 跟踪还有多少分片在上传中但是没有完成上传。
+ this.remaning = 0;
+ this.__tick = Base.bindFn( this._tick, this );
+
+ // 销毁上传相关的属性。
+ owner.on( 'uploadComplete', function( file ) {
+
+ // 把其他块取消了。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ v.transport && (v.transport.abort(), v.transport.destroy());
+ delete v.transport;
+ });
+
+ delete file.blocks;
+ delete file.remaning;
});
+ },
- return false;
+ reset: function() {
+ this.request( 'stop-upload', true );
+ this.runing = false;
+ this.pool = [];
+ this.stack = [];
+ this.pending = [];
+ this.remaning = 0;
+ this._trigged = false;
+ this._promise = null;
},
- // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
- _getTansferFiles: function( dataTransfer, callback ) {
- var results = [],
- promises = [],
- items, files, file, item, i, len, canAccessFolder;
+ /**
+ * @event startUpload
+ * @description 当开始上传流程时触发。
+ * @for Uploader
+ */
- items = dataTransfer.items;
- files = dataTransfer.files;
+ /**
+ * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
+ *
+ * 可以指定开始某一个文件。
+ * @grammar upload() => undefined
+ * @grammar upload( file | fileId) => undefined
+ * @method upload
+ * @for Uploader
+ */
+ startUpload: function(file) {
+ var me = this;
- canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+ // 移出invalid的文件
+ $.each( me.request( 'get-files', Status.INVALID ), function() {
+ me.request( 'remove-file', this );
+ });
- for ( i = 0, len = files.length; i < len; i++ ) {
- file = files[ i ];
- item = items && items[ i ];
+ // 如果指定了开始某个文件,则只开始指定的文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
- if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+ if (file.getStatus() === Status.INTERRUPT) {
+ file.setStatus( Status.QUEUED );
- promises.push( this._traverseDirectoryTree(
- item.webkitGetAsEntry(), results ) );
- } else {
- results.push( file );
+ $.each( me.pool, function( _, v ) {
+
+ // 之前暂停过。
+ if (v.file !== file) {
+ return;
+ }
+
+ v.transport && v.transport.send();
+ file.setStatus( Status.PROGRESS );
+ });
+
+
+ } else if (file.getStatus() !== Status.PROGRESS) {
+ file.setStatus( Status.QUEUED );
}
+ } else {
+ $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
+ this.setStatus( Status.QUEUED );
+ });
}
- Base.when.apply( Base, promises ).done(function() {
+ if ( me.runing ) {
+ me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
+ return Base.nextTick( me.__tick );
+ }
- if ( !results.length ) {
- return;
+ me.runing = true;
+ var files = [];
+
+ // 如果有暂停的,则续传
+ file || $.each( me.pool, function( _, v ) {
+ var file = v.file;
+
+ if ( file.getStatus() === Status.INTERRUPT ) {
+ me._trigged = false;
+ files.push(file);
+
+ if (v.waiting) {
+ return;
+ }
+
+ // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
+ v.transport ? v.transport.send() : me._doSend(v);
}
+ });
- callback( results );
+ $.each(files, function() {
+ this.setStatus( Status.PROGRESS );
});
+
+ file || $.each( me.request( 'get-files',
+ Status.INTERRUPT ), function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ me._trigged = false;
+ Base.nextTick( me.__tick );
+ me.owner.trigger('startUpload');
},
- _traverseDirectoryTree: function( entry, results ) {
- var deferred = Base.Deferred(),
- me = this;
+ /**
+ * @event stopUpload
+ * @description 当开始上传流程暂停时触发。
+ * @for Uploader
+ */
- if ( entry.isFile ) {
- entry.file(function( file ) {
- results.push( file );
- deferred.resolve();
- });
- } else if ( entry.isDirectory ) {
- entry.createReader().readEntries(function( entries ) {
- var len = entries.length,
- promises = [],
- arr = [], // 为了保证顺序。
- i;
+ /**
+ * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
+ *
+ * 如果第一个参数是文件,则只暂停指定文件。
+ * @grammar stop() => undefined
+ * @grammar stop( true ) => undefined
+ * @grammar stop( file ) => undefined
+ * @method stop
+ * @for Uploader
+ */
+ stopUpload: function( file, interrupt ) {
+ var me = this;
- for ( i = 0; i < len; i++ ) {
- promises.push( me._traverseDirectoryTree(
- entries[ i ], arr ) );
- }
+ if (file === true) {
+ interrupt = file;
+ file = null;
+ }
- Base.when.apply( Base, promises ).then(function() {
- results.push.apply( results, arr );
- deferred.resolve();
- }, deferred.reject );
- });
+ if ( me.runing === false ) {
+ return;
}
- return deferred.promise();
- },
+ // 如果只是暂停某个文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
- destroy: function() {
- var elem = this.elem;
+ if ( file.getStatus() !== Status.PROGRESS &&
+ file.getStatus() !== Status.QUEUED ) {
+ return;
+ }
- // 还没 init 就调用 destroy
- if (!elem) {
- return;
- }
+ file.setStatus( Status.INTERRUPT );
- elem.off( 'dragenter', this.dragEnterHandler );
- elem.off( 'dragover', this.dragOverHandler );
- elem.off( 'dragleave', this.dragLeaveHandler );
- elem.off( 'drop', this.dropHandler );
- if ( this.options.disableGlobalDnd ) {
- $( document ).off( 'dragover', this.dragOverHandler );
- $( document ).off( 'drop', this.dropHandler );
- }
- }
- });
- });
-
- /**
- * @fileOverview FilePaste
- */
- define('runtime/html5/filepaste',[
- 'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ $.each( me.pool, function( _, v ) {
- return Html5Runtime.register( 'FilePaste', {
- init: function() {
- var opts = this.options,
- elem = this.elem = opts.container,
- accept = '.*',
- arr, i, len, item;
+ // 只 abort 指定的文件,每一个分片。
+ if (v.file === file) {
+ v.transport && v.transport.abort();
- // accetp的mimeTypes中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
+ if (interrupt) {
+ me._putback(v);
+ me._popBlock(v);
+ }
+ }
+ });
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].mimeTypes;
- item && arr.push( item );
- }
+ me.owner.trigger('stopUpload', file);// 暂停,trigger event
- if ( arr.length ) {
- accept = arr.join(',');
- accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
- }
+ return Base.nextTick( me.__tick );
}
- this.accept = accept = new RegExp( accept, 'i' );
- this.hander = Base.bindFn( this._pasteHander, this );
- elem.on( 'paste', this.hander );
- },
- _pasteHander: function( e ) {
- var allowed = [],
- ruid = this.getRuid(),
- items, item, blob, i, len;
+ me.runing = false;
- e = e.originalEvent || e;
- items = e.clipboardData.items;
+ // 正在准备中的文件。
+ if (this._promise && this._promise.file) {
+ this._promise.file.setStatus( Status.INTERRUPT );
+ }
- for ( i = 0, len = items.length; i < len; i++ ) {
- item = items[ i ];
+ interrupt && $.each( me.pool, function( _, v ) {
+ v.transport && v.transport.abort();
+ v.file.setStatus( Status.INTERRUPT );
+ });
- if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
- continue;
+ me.owner.trigger('stopUpload');
+ },
+
+ /**
+ * @method cancelFile
+ * @grammar cancelFile( file ) => undefined
+ * @grammar cancelFile( id ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 标记文件状态为已取消, 同时将中断文件传输。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.cancelFile( file );
+ * })
+ */
+ cancelFile: function( file ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
}
+ });
- allowed.push( new File( ruid, blob ) );
- }
+ file.setStatus( Status.CANCELLED );
+ this.owner.trigger( 'fileDequeued', file );
+ },
- if ( allowed.length ) {
- // 不阻止非文件粘贴(文字粘贴)的事件冒泡
- e.preventDefault();
- e.stopPropagation();
- this.trigger( 'paste', allowed );
- }
+ /**
+ * 判断`Uploader`是否正在上传中。
+ * @grammar isInProgress() => Boolean
+ * @method isInProgress
+ * @for Uploader
+ */
+ isInProgress: function() {
+ return !!this.progress;
},
- destroy: function() {
- this.elem.off( 'paste', this.hander );
- }
- });
- });
-
- /**
- * @fileOverview FilePicker
- */
- define('runtime/html5/filepicker',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
+ _getStats: function() {
+ return this.request('get-stats');
+ },
- var $ = Base.$;
+ /**
+ * 跳过一个文件上传,直接标记指定文件为已上传状态。
+ * @grammar skipFile( file ) => undefined
+ * @method skipFile
+ * @for Uploader
+ */
+ skipFile: function( file, status ) {
+ file = file.id ? file : this.request( 'get-file', file );
- return Html5Runtime.register( 'FilePicker', {
- init: function() {
- var container = this.getRuntime().getContainer(),
- me = this,
- owner = me.owner,
- opts = me.options,
- label = this.label = $( document.createElement('label') ),
- input = this.input = $( document.createElement('input') ),
- arr, i, len, mouseHandler, changeHandler;
+ file.setStatus( status || Status.COMPLETE );
+ file.skipped = true;
- input.attr( 'type', 'file' );
- input.attr( 'capture', 'camera');
- input.attr( 'name', opts.name );
- input.addClass('webuploader-element-invisible');
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
- label.on( 'click', function(e) {
- input.trigger('click');
- e.stopPropagation();
- owner.trigger('dialogopen');
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
});
- label.css({
- opacity: 0,
- width: '100%',
- height: '100%',
- display: 'block',
- cursor: 'pointer',
- background: '#ffffff'
- });
+ this.owner.trigger( 'uploadSkip', file );
+ },
- if ( opts.multiple ) {
- input.attr( 'multiple', 'multiple' );
+ /**
+ * @event uploadFinished
+ * @description 当所有文件上传结束时触发。
+ * @for Uploader
+ */
+ _tick: function() {
+ var me = this,
+ opts = me.options,
+ fn, val;
+
+ // 上一个promise还没有结束,则等待完成后再执行。
+ if ( me._promise ) {
+ return me._promise.always( me.__tick );
}
- // @todo Firefox不支持单独指定后缀
- if ( opts.accept && opts.accept.length > 0 ) {
- arr = [];
+ // 还有位置,且还有文件要处理的话。
+ if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
+ me._trigged = false;
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- arr.push( opts.accept[ i ].mimeTypes );
- }
+ fn = function( val ) {
+ me._promise = null;
- input.attr( 'accept', arr.join(',') );
- }
+ // 有可能是reject过来的,所以要检测val的类型。
+ val && val.file && me._startSend( val );
+ Base.nextTick( me.__tick );
+ };
- container.append( input );
- container.append( label );
+ me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
- mouseHandler = function( e ) {
- owner.trigger( e.type );
- };
+ // 没有要上传的了,且没有正在传输的了。
+ } else if ( !me.remaning && !me._getStats().numOfQueue &&
+ !me._getStats().numOfInterrupt ) {
+ me.runing = false;
- changeHandler = function( e ) {
- var clone;
+ me._trigged || Base.nextTick(function() {
+ me.owner.trigger('uploadFinished');
+ });
+ me._trigged = true;
+ }
+ },
- // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
- if (e.target.files.length === 0){
- return false;
+ _putback: function(block) {
+ var idx;
+
+ block.cuted.unshift(block);
+ idx = this.stack.indexOf(block.cuted);
+
+ if (!~idx) {
+ // 如果不在里面,说明移除过,需要把计数还原回去。
+ this.remaning++;
+ block.file.remaning++;
+ this.stack.unshift(block.cuted);
+ }
+ },
+
+ _getStack: function() {
+ var i = 0,
+ act;
+
+ while ( (act = this.stack[ i++ ]) ) {
+ if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
+ return act;
+ } else if (!act.has() ||
+ act.file.getStatus() !== Status.PROGRESS &&
+ act.file.getStatus() !== Status.INTERRUPT ) {
+
+ // 把已经处理完了的,或者,状态为非 progress(上传中)、
+ // interupt(暂停中) 的移除。
+ this.stack.splice( --i, 1 );
}
+ }
- // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
- me.files = e.target.files;
+ return null;
+ },
+ _nextBlock: function() {
+ var me = this,
+ opts = me.options,
+ act, next, done, preparing;
- // reset input
- clone = this.cloneNode( true );
- clone.value = null;
- this.parentNode.replaceChild( clone, this );
+ // 如果当前文件还有没有需要传输的,则直接返回剩下的。
+ if ( (act = this._getStack()) ) {
- input.off();
- input = $( clone ).on( 'change', changeHandler )
- .on( 'mouseenter mouseleave', mouseHandler );
+ // 是否提前准备下一个文件
+ if ( opts.prepareNextFile && !me.pending.length ) {
+ me._prepareNextFile();
+ }
- owner.trigger('change');
+ return act.shift();
+
+ // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
+ } else if ( me.runing ) {
+
+ // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
+ if ( !me.pending.length && me._getStats().numOfQueue ) {
+ me._prepareNextFile();
+ }
+
+ next = me.pending.shift();
+ done = function( file ) {
+ if ( !file ) {
+ return null;
+ }
+
+ act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
+ me.stack.push(act);
+ return act.shift();
+ };
+
+ // 文件可能还在prepare中,也有可能已经完全准备好了。
+ if ( isPromise( next) ) {
+ preparing = next.file;
+ next = next[ next.pipe ? 'pipe' : 'then' ]( done );
+ next.file = preparing;
+ return next;
+ }
+
+ return done( next );
}
- input.on( 'change', changeHandler);
- label.on( 'mouseenter mouseleave', mouseHandler );
+ },
+
+
+ /**
+ * @event uploadStart
+ * @param {File} file File对象
+ * @description 某个文件开始上传前触发,一个文件只会触发一次。
+ * @for Uploader
+ */
+ _prepareNextFile: function() {
+ var me = this,
+ file = me.request('fetch-file'),
+ pending = me.pending,
+ promise;
+
+ if ( file ) {
+ promise = me.request( 'before-send-file', file, function() {
+ // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
+ if ( file.getStatus() === Status.PROGRESS ||
+ file.getStatus() === Status.INTERRUPT ) {
+ return file;
+ }
+
+ return me._finishFile( file );
+ });
+
+ me.owner.trigger( 'uploadStart', file );
+ file.setStatus( Status.PROGRESS );
+
+ promise.file = file;
+
+ // 如果还在pending中,则替换成文件本身。
+ promise.done(function() {
+ var idx = $.inArray( promise, pending );
+
+ ~idx && pending.splice( idx, 1, file );
+ });
+
+ // befeore-send-file的钩子就有错误发生。
+ promise.fail(function( reason ) {
+ file.setStatus( Status.ERROR, reason );
+ me.owner.trigger( 'uploadError', file, reason );
+ me.owner.trigger( 'uploadComplete', file );
+ });
+
+ pending.push( promise );
+ }
},
+ // 让出位置了,可以让其他分片开始上传
+ _popBlock: function( block ) {
+ var idx = $.inArray( block, this.pool );
- getFiles: function() {
- return this.files;
+ this.pool.splice( idx, 1 );
+ block.file.remaning--;
+ this.remaning--;
+ },
+
+ // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
+ _startSend: function( block ) {
+ var me = this,
+ file = block.file,
+ promise;
+
+ // 有可能在 before-send-file 的 promise 期间改变了文件状态。
+ // 如:暂停,取消
+ // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
+ if ( file.getStatus() !== Status.PROGRESS ) {
+
+ // 如果是中断,则还需要放回去。
+ if (file.getStatus() === Status.INTERRUPT) {
+ me._putback(block);
+ }
+
+ return;
+ }
+
+ me.pool.push( block );
+ me.remaning++;
+
+ // 如果没有分片,则直接使用原始的。
+ // 不会丢失content-type信息。
+ block.blob = block.chunks === 1 ? file.source :
+ file.source.slice( block.start, block.end );
+
+ // hook, 每个分片发送之前可能要做些异步的事情。
+ block.waiting = promise = me.request( 'before-send', block, function() {
+ delete block.waiting;
+
+ // 有可能文件已经上传出错了,所以不需要再传输了。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ me._doSend( block );
+ } else if (block.file.getStatus() !== Status.INTERRUPT) {
+ me._popBlock(block);
+ }
+
+ Base.nextTick(me.__tick);
+ });
+
+ // 如果为fail了,则跳过此分片。
+ promise.fail(function() {
+ delete block.waiting;
+
+ if ( file.remaning === 1 ) {
+ me._finishFile( file ).always(function() {
+ block.percentage = 1;
+ me._popBlock( block );
+ me.owner.trigger( 'uploadComplete', file );
+ Base.nextTick( me.__tick );
+ });
+ } else {
+ block.percentage = 1;
+ me.updateFileProgress( file );
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ }
+ });
+ },
+
+
+ /**
+ * @event uploadBeforeSend
+ * @param {Object} object
+ * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
+ * @param {Object} headers 可以扩展此对象来控制上传头部。
+ * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadAccept
+ * @param {Object} object
+ * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
+ * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadProgress
+ * @param {File} file File对象
+ * @param {Number} percentage 上传进度
+ * @description 上传过程中触发,携带上传进度。
+ * @for Uploader
+ */
+
+
+ /**
+ * @event uploadError
+ * @param {File} file File对象
+ * @param {String} reason 出错的code
+ * @description 当文件上传出错时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadSuccess
+ * @param {File} file File对象
+ * @param {Object} response 服务端返回的数据
+ * @description 当文件上传成功时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadComplete
+ * @param {File} [file] File对象
+ * @description 不管成功或者失败,文件上传完成时触发。
+ * @for Uploader
+ */
+
+ // 做上传操作。
+ _doSend: function( block ) {
+ var me = this,
+ owner = me.owner,
+ opts = $.extend({}, me.options, block.options),
+ file = block.file,
+ tr = new Transport( opts ),
+ data = $.extend({}, opts.formData ),
+ headers = $.extend({}, opts.headers ),
+ requestAccept, ret;
+
+ block.transport = tr;
+
+ tr.on( 'destroy', function() {
+ delete block.transport;
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ });
+
+ // 广播上传进度。以文件为单位。
+ tr.on( 'progress', function( percentage ) {
+ block.percentage = percentage;
+ me.updateFileProgress( file );
+ });
+
+ // 用来询问,是否返回的结果是有错误的。
+ requestAccept = function( reject ) {
+ var fn;
+
+ ret = tr.getResponseAsJson() || {};
+ ret._raw = tr.getResponse();
+ ret._headers = tr.getResponseHeaders();
+ block.response = ret;
+ fn = function( value ) {
+ reject = value;
+ };
+
+ // 服务端响应了,不代表成功了,询问是否响应正确。
+ if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
+ reject = reject || 'server';
+ }
+
+ return reject;
+ };
+
+ // 尝试重试,然后广播文件上传出错。
+ tr.on( 'error', function( type, flag ) {
+ // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
+ // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
+ var typeArr = type.split( '|' ), status, statusText;
+ type = typeArr[0];
+ status = parseFloat( typeArr[1] ),
+ statusText = typeArr[2];
+
+ block.retried = block.retried || 0;
+
+ // 自动重试
+ if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
+ block.retried < opts.chunkRetry ) {
+
+ block.retried++;
+
+ me.retryTimer = setTimeout(function() {
+ tr.send();
+ }, opts.chunkRetryDelay || 1000);
+
+ } else {
+
+ // http status 500 ~ 600
+ if ( !flag && type === 'server' ) {
+ type = requestAccept( type );
+ }
+
+ file.setStatus( Status.ERROR, type );
+ owner.trigger( 'uploadError', file, type, status, statusText );
+ owner.trigger( 'uploadComplete', file );
+ }
+ });
+
+ // 上传成功
+ tr.on( 'load', function() {
+ var reason;
+
+ // 如果非预期,转向上传出错。
+ if ( (reason = requestAccept()) ) {
+ tr.trigger( 'error', reason, true );
+ return;
+ }
+
+ // 全部上传完成。
+ if ( file.remaning === 1 ) {
+ me._finishFile( file, ret );
+ } else {
+ tr.destroy();
+ }
+ });
+
+ // 配置默认的上传字段。
+ data = $.extend( data, {
+ id: file.id,
+ name: file.name,
+ type: file.type,
+ lastModifiedDate: file.lastModifiedDate,
+ size: file.size
+ });
+
+ block.chunks > 1 && $.extend( data, {
+ chunks: block.chunks,
+ chunk: block.chunk
+ });
+
+ // 在发送之间可以添加字段什么的。。。
+ // 如果默认的字段不够使用,可以通过监听此事件来扩展
+ owner.trigger( 'uploadBeforeSend', block, data, headers );
+
+ // 开始发送。
+ tr.appendBlob( opts.fileVal, block.blob, file.name );
+ tr.append( data );
+ tr.setRequestHeader( headers );
+ tr.send();
+ },
+
+ // 完成上传。
+ _finishFile: function( file, ret, hds ) {
+ var owner = this.owner;
+
+ return owner
+ .request( 'after-send-file', arguments, function() {
+ file.setStatus( Status.COMPLETE );
+ owner.trigger( 'uploadSuccess', file, ret, hds );
+ })
+ .fail(function( reason ) {
+
+ // 如果外部已经标记为invalid什么的,不再改状态。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ file.setStatus( Status.ERROR, reason );
+ }
+
+ owner.trigger( 'uploadError', file, reason );
+ })
+ .always(function() {
+ owner.trigger( 'uploadComplete', file );
+ });
+ },
+
+ updateFileProgress: function(file) {
+ var totalPercent = 0,
+ uploaded = 0;
+
+ if (!file.blocks) {
+ return;
+ }
+
+ $.each( file.blocks, function( _, v ) {
+ uploaded += (v.percentage || 0) * (v.end - v.start);
+ });
+
+ totalPercent = uploaded / file.size;
+ this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
},
destroy: function() {
- this.input.off();
- this.label.off();
+ clearTimeout(this.retryTimer);
}
+
});
});
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/util',[
- 'base'
- ], function( Base ) {
-
- var urlAPI = window.createObjectURL && window ||
- window.URL && URL.revokeObjectURL && URL ||
- window.webkitURL,
- createObjectURL = Base.noop,
- revokeObjectURL = createObjectURL;
-
- if ( urlAPI ) {
-
- // 更安全的方式调用,比如android里面就能把context改成其他的对象。
- createObjectURL = function() {
- return urlAPI.createObjectURL.apply( urlAPI, arguments );
- };
-
- revokeObjectURL = function() {
- return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
- };
- }
-
- return {
- createObjectURL: createObjectURL,
- revokeObjectURL: revokeObjectURL,
-
- dataURL2Blob: function( dataURI ) {
- var byteStr, intArray, ab, i, mimetype, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- ab = new ArrayBuffer( byteStr.length );
- intArray = new Uint8Array( ab );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
-
- return this.arrayBufferToBlob( ab, mimetype );
- },
-
- dataURL2ArrayBuffer: function( dataURI ) {
- var byteStr, intArray, i, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- intArray = new Uint8Array( byteStr.length );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- return intArray.buffer;
- },
-
- arrayBufferToBlob: function( buffer, type ) {
- var builder = window.BlobBuilder || window.WebKitBlobBuilder,
- bb;
-
- // android不支持直接new Blob, 只能借助blobbuilder.
- if ( builder ) {
- bb = new builder();
- bb.append( buffer );
- return bb.getBlob( type );
- }
-
- return new Blob([ buffer ], type ? { type: type } : {} );
- },
-
- // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
- // 你得到的结果是png.
- canvasToDataUrl: function( canvas, type, quality ) {
- return canvas.toDataURL( type, quality / 100 );
- },
-
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- parseMeta: function( blob, callback ) {
- callback( false, {});
- },
+ /**
+ * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
+ */
+
+ define('widgets/validator',[
+ 'base',
+ 'uploader',
+ 'file',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile ) {
+
+ var $ = Base.$,
+ validators = {},
+ api;
+
+ /**
+ * @event error
+ * @param {String} type 错误类型。
+ * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
+ *
+ * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
+ * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
+ * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
+ * @for Uploader
+ */
+
+ // 暴露给外面的api
+ api = {
+
+ // 添加验证器
+ addValidator: function( type, cb ) {
+ validators[ type ] = cb;
+ },
+
+ // 移除验证器
+ removeValidator: function( type ) {
+ delete validators[ type ];
+ }
+ };
+
+ // 在Uploader初始化的时候启动Validators的初始化
+ Uploader.register({
+ name: 'validator',
+
+ init: function() {
+ var me = this;
+ Base.nextTick(function() {
+ $.each( validators, function() {
+ this.call( me.owner );
+ });
+ });
+ }
+ });
+
+ /**
+ * @property {int} [fileNumLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总数量, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileNumLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileNumLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
+ if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
+ return false;
+ }
+ if ( count >= max && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return count >= max ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function() {
+ count++;
+ });
+
+ uploader.on( 'fileDequeued', function() {
+ count--;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+
+ /**
+ * @property {int} [fileSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileSizeLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var invalid = count + file.size > max;
+
+ if ( invalid && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return invalid ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ count += file.size;
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ count -= file.size;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+ /**
+ * @property {int} [fileSingleSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSingleSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ max = opts.fileSingleSizeLimit;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+
+ if ( file.size > max ) {
+ file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
+ this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
+ return false;
+ }
+
+ });
+
+ });
+
+ /**
+ * @property {Boolean} [duplicate=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
+ */
+ api.addValidator( 'duplicate', function() {
+ var uploader = this,
+ opts = uploader.options,
+ mapping = {};
+
+ if ( opts.duplicate ) {
+ return;
+ }
+
+ function hashString( str ) {
+ var hash = 0,
+ i = 0,
+ len = str.length,
+ _char;
+
+ for ( ; i < len; i++ ) {
+ _char = str.charCodeAt( i );
+ hash = _char + (hash << 6) + (hash << 16) - hash;
+ }
+
+ return hash;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var hash = file.__hash || (file.__hash = hashString( file.name +
+ file.size + file.lastModifiedDate ));
+
+ // 已经重复了
+ if ( mapping[ hash ] ) {
+ this.trigger( 'error', 'F_DUPLICATE', file );
+ return false;
+ }
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (mapping[ hash ] = true);
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (delete mapping[ hash ]);
+ });
+
+ uploader.on( 'reset', function() {
+ mapping = {};
+ });
+ });
+
+ return api;
+ });
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- updateImageHead: function( data ) {
- return data;
- }
- };
+ /**
+ * @fileOverview Md5
+ */
+ define('lib/md5',[
+ 'runtime/client',
+ 'mediator'
+ ], function( RuntimeClient, Mediator ) {
+
+ function Md5() {
+ RuntimeClient.call( this, 'Md5' );
+ }
+
+ // 让 Md5 具备事件功能。
+ Mediator.installTo( Md5.prototype );
+
+ Md5.prototype.loadFromBlob = function( blob ) {
+ var me = this;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ me.exec( 'loadFromBlob', blob );
+ });
+ };
+
+ Md5.prototype.getResult = function() {
+ return this.exec('getResult');
+ };
+
+ return Md5;
});
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/imagemeta',[
- 'runtime/html5/util'
- ], function( Util ) {
-
- var api;
-
- api = {
- parsers: {
- 0xffe1: []
- },
-
- maxMetaDataSize: 262144,
-
- parse: function( blob, cb ) {
- var me = this,
- fr = new FileReader();
-
- fr.onload = function() {
- cb( false, me._parse( this.result ) );
- fr = fr.onload = fr.onerror = null;
- };
-
- fr.onerror = function( e ) {
- cb( e.message );
- fr = fr.onload = fr.onerror = null;
- };
-
- blob = blob.slice( 0, me.maxMetaDataSize );
- fr.readAsArrayBuffer( blob.getSource() );
- },
-
- _parse: function( buffer, noParse ) {
- if ( buffer.byteLength < 6 ) {
- return;
- }
-
- var dataview = new DataView( buffer ),
- offset = 2,
- maxOffset = dataview.byteLength - 4,
- headLength = offset,
- ret = {},
- markerBytes, markerLength, parsers, i;
-
- if ( dataview.getUint16( 0 ) === 0xffd8 ) {
-
- while ( offset < maxOffset ) {
- markerBytes = dataview.getUint16( offset );
-
- if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
- markerBytes === 0xfffe ) {
-
- markerLength = dataview.getUint16( offset + 2 ) + 2;
-
- if ( offset + markerLength > dataview.byteLength ) {
- break;
- }
-
- parsers = api.parsers[ markerBytes ];
-
- if ( !noParse && parsers ) {
- for ( i = 0; i < parsers.length; i += 1 ) {
- parsers[ i ].call( api, dataview, offset,
- markerLength, ret );
- }
- }
-
- offset += markerLength;
- headLength = offset;
- } else {
- break;
- }
- }
-
- if ( headLength > 6 ) {
- if ( buffer.slice ) {
- ret.imageHead = buffer.slice( 2, headLength );
- } else {
- // Workaround for IE10, which does not yet
- // support ArrayBuffer.slice:
- ret.imageHead = new Uint8Array( buffer )
- .subarray( 2, headLength );
- }
- }
- }
-
- return ret;
- },
-
- updateImageHead: function( buffer, head ) {
- var data = this._parse( buffer, true ),
- buf1, buf2, bodyoffset;
-
-
- bodyoffset = 2;
- if ( data.imageHead ) {
- bodyoffset = 2 + data.imageHead.byteLength;
- }
-
- if ( buffer.slice ) {
- buf2 = buffer.slice( bodyoffset );
- } else {
- buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
- }
-
- buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
-
- buf1[ 0 ] = 0xFF;
- buf1[ 1 ] = 0xD8;
- buf1.set( new Uint8Array( head ), 2 );
- buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
-
- return buf1.buffer;
- }
- };
-
- Util.parseMeta = function() {
- return api.parse.apply( api, arguments );
- };
-
- Util.updateImageHead = function() {
- return api.updateImageHead.apply( api, arguments );
- };
-
- return api;
+ /**
+ * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
+ */
+ define('widgets/md5',[
+ 'base',
+ 'uploader',
+ 'lib/md5',
+ 'lib/blob',
+ 'widgets/widget'
+ ], function( Base, Uploader, Md5, Blob ) {
+
+ return Uploader.register({
+ name: 'md5',
+
+
+ /**
+ * 计算文件 md5 值,返回一个 promise 对象,可以监听 progress 进度。
+ *
+ *
+ * @method md5File
+ * @grammar md5File( file[, start[, end]] ) => promise
+ * @for Uploader
+ * @example
+ *
+ * uploader.on( 'fileQueued', function( file ) {
+ * var $li = ...;
+ *
+ * uploader.md5File( file )
+ *
+ * // 及时显示进度
+ * .progress(function(percentage) {
+ * console.log('Percentage:', percentage);
+ * })
+ *
+ * // 完成
+ * .then(function(val) {
+ * console.log('md5 result:', val);
+ * });
+ *
+ * });
+ */
+ md5File: function( file, start, end ) {
+ var md5 = new Md5(),
+ deferred = Base.Deferred(),
+ blob = (file instanceof Blob) ? file :
+ this.request( 'get-file', file ).source;
+
+ md5.on( 'progress load', function( e ) {
+ e = e || {};
+ deferred.notify( e.total ? e.loaded / e.total : 1 );
+ });
+
+ md5.on( 'complete', function() {
+ deferred.resolve( md5.getResult() );
+ });
+
+ md5.on( 'error', function( reason ) {
+ deferred.reject( reason );
+ });
+
+ if ( arguments.length > 1 ) {
+ start = start || 0;
+ end = end || 0;
+ start < 0 && (start = blob.size + start);
+ end < 0 && (end = blob.size + end);
+ end = Math.min( end, blob.size );
+ blob = blob.slice( start, end );
+ }
+
+ md5.loadFromBlob( blob );
+
+ return deferred.promise();
+ }
+ });
});
- /**
- * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
- * 暂时项目中只用了orientation.
- *
- * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
- * @fileOverview EXIF解析
- */
-
- // Sample
- // ====================================
- // Make : Apple
- // Model : iPhone 4S
- // Orientation : 1
- // XResolution : 72 [72/1]
- // YResolution : 72 [72/1]
- // ResolutionUnit : 2
- // Software : QuickTime 7.7.1
- // DateTime : 2013:09:01 22:53:55
- // ExifIFDPointer : 190
- // ExposureTime : 0.058823529411764705 [1/17]
- // FNumber : 2.4 [12/5]
- // ExposureProgram : Normal program
- // ISOSpeedRatings : 800
- // ExifVersion : 0220
- // DateTimeOriginal : 2013:09:01 22:52:51
- // DateTimeDigitized : 2013:09:01 22:52:51
- // ComponentsConfiguration : YCbCr
- // ShutterSpeedValue : 4.058893515764426
- // ApertureValue : 2.5260688216892597 [4845/1918]
- // BrightnessValue : -0.3126686601998395
- // MeteringMode : Pattern
- // Flash : Flash did not fire, compulsory flash mode
- // FocalLength : 4.28 [107/25]
- // SubjectArea : [4 values]
- // FlashpixVersion : 0100
- // ColorSpace : 1
- // PixelXDimension : 2448
- // PixelYDimension : 3264
- // SensingMethod : One-chip color area sensor
- // ExposureMode : 0
- // WhiteBalance : Auto white balance
- // FocalLengthIn35mmFilm : 35
- // SceneCaptureType : Standard
- define('runtime/html5/imagemeta/exif',[
- 'base',
- 'runtime/html5/imagemeta'
- ], function( Base, ImageMeta ) {
-
- var EXIF = {};
-
- EXIF.ExifMap = function() {
- return this;
- };
-
- EXIF.ExifMap.prototype.map = {
- 'Orientation': 0x0112
- };
-
- EXIF.ExifMap.prototype.get = function( id ) {
- return this[ id ] || this[ this.map[ id ] ];
- };
-
- EXIF.exifTagTypes = {
- // byte, 8-bit unsigned int:
- 1: {
- getValue: function( dataView, dataOffset ) {
- return dataView.getUint8( dataOffset );
- },
- size: 1
- },
-
- // ascii, 8-bit byte:
- 2: {
- getValue: function( dataView, dataOffset ) {
- return String.fromCharCode( dataView.getUint8( dataOffset ) );
- },
- size: 1,
- ascii: true
- },
-
- // short, 16 bit int:
- 3: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint16( dataOffset, littleEndian );
- },
- size: 2
- },
-
- // long, 32 bit int:
- 4: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // rational = two long values,
- // first is numerator, second is denominator:
- 5: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian ) /
- dataView.getUint32( dataOffset + 4, littleEndian );
- },
- size: 8
- },
-
- // slong, 32 bit signed int:
- 9: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // srational, two slongs, first is numerator, second is denominator:
- 10: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian ) /
- dataView.getInt32( dataOffset + 4, littleEndian );
- },
- size: 8
- }
- };
-
- // undefined, 8-bit byte, value depending on field:
- EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
-
- EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
- littleEndian ) {
-
- var tagType = EXIF.exifTagTypes[ type ],
- tagSize, dataOffset, values, i, str, c;
-
- if ( !tagType ) {
- Base.log('Invalid Exif data: Invalid tag type.');
- return;
- }
-
- tagSize = tagType.size * length;
-
- // Determine if the value is contained in the dataOffset bytes,
- // or if the value at the dataOffset is a pointer to the actual data:
- dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
- littleEndian ) : (offset + 8);
-
- if ( dataOffset + tagSize > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid data offset.');
- return;
- }
-
- if ( length === 1 ) {
- return tagType.getValue( dataView, dataOffset, littleEndian );
- }
-
- values = [];
-
- for ( i = 0; i < length; i += 1 ) {
- values[ i ] = tagType.getValue( dataView,
- dataOffset + i * tagType.size, littleEndian );
- }
-
- if ( tagType.ascii ) {
- str = '';
-
- // Concatenate the chars:
- for ( i = 0; i < values.length; i += 1 ) {
- c = values[ i ];
-
- // Ignore the terminating NULL byte(s):
- if ( c === '\u0000' ) {
- break;
- }
- str += c;
- }
-
- return str;
- }
- return values;
- };
-
- EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
- data ) {
-
- var tag = dataView.getUint16( offset, littleEndian );
- data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
- dataView.getUint16( offset + 2, littleEndian ), // tag type
- dataView.getUint32( offset + 4, littleEndian ), // tag length
- littleEndian );
- };
-
- EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
- littleEndian, data ) {
-
- var tagsNumber, dirEndOffset, i;
-
- if ( dirOffset + 6 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory offset.');
- return;
- }
-
- tagsNumber = dataView.getUint16( dirOffset, littleEndian );
- dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
-
- if ( dirEndOffset + 4 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory size.');
- return;
- }
-
- for ( i = 0; i < tagsNumber; i += 1 ) {
- this.parseExifTag( dataView, tiffOffset,
- dirOffset + 2 + 12 * i, // tag offset
- littleEndian, data );
- }
-
- // Return the offset to the next directory:
- return dataView.getUint32( dirEndOffset, littleEndian );
- };
-
- // EXIF.getExifThumbnail = function(dataView, offset, length) {
- // var hexData,
- // i,
- // b;
- // if (!length || offset + length > dataView.byteLength) {
- // Base.log('Invalid Exif data: Invalid thumbnail data.');
- // return;
- // }
- // hexData = [];
- // for (i = 0; i < length; i += 1) {
- // b = dataView.getUint8(offset + i);
- // hexData.push((b < 16 ? '0' : '') + b.toString(16));
- // }
- // return 'data:image/jpeg,%' + hexData.join('%');
- // };
-
- EXIF.parseExifData = function( dataView, offset, length, data ) {
-
- var tiffOffset = offset + 10,
- littleEndian, dirOffset;
-
- // Check for the ASCII code for "Exif" (0x45786966):
- if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
- // No Exif data, might be XMP data instead
- return;
- }
- if ( tiffOffset + 8 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid segment size.');
- return;
- }
-
- // Check for the two null bytes:
- if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
- Base.log('Invalid Exif data: Missing byte alignment offset.');
- return;
- }
-
- // Check the byte alignment:
- switch ( dataView.getUint16( tiffOffset ) ) {
- case 0x4949:
- littleEndian = true;
- break;
-
- case 0x4D4D:
- littleEndian = false;
- break;
-
- default:
- Base.log('Invalid Exif data: Invalid byte alignment marker.');
- return;
- }
-
- // Check for the TIFF tag marker (0x002A):
- if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
- Base.log('Invalid Exif data: Missing TIFF marker.');
- return;
- }
-
- // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
- dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
- // Create the exif object to store the tags:
- data.exif = new EXIF.ExifMap();
- // Parse the tags of the main image directory and retrieve the
- // offset to the next directory, usually the thumbnail directory:
- dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
- tiffOffset + dirOffset, littleEndian, data );
-
- // 尝试读取缩略图
- // if ( dirOffset ) {
- // thumbnailData = {exif: {}};
- // dirOffset = EXIF.parseExifTags(
- // dataView,
- // tiffOffset,
- // tiffOffset + dirOffset,
- // littleEndian,
- // thumbnailData
- // );
-
- // // Check for JPEG Thumbnail offset:
- // if (thumbnailData.exif[0x0201]) {
- // data.exif.Thumbnail = EXIF.getExifThumbnail(
- // dataView,
- // tiffOffset + thumbnailData.exif[0x0201],
- // thumbnailData.exif[0x0202] // Thumbnail data length
- // );
- // }
- // }
- };
-
- ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
- return EXIF;
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/compbase',[],function() {
+
+ function CompBase( owner, runtime ) {
+
+ this.owner = owner;
+ this.options = owner.options;
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.getRuid = function() {
+ return runtime.uid;
+ };
+
+ this.trigger = function() {
+ return owner.trigger.apply( owner, arguments );
+ };
+ }
+
+ return CompBase;
});
- /**
- * 这个方式性能不行,但是可以解决android里面的toDataUrl的bug
- * android里面toDataUrl('image/jpege')得到的结果却是png.
- *
- * 所以这里没辙,只能借助这个工具
- * @fileOverview jpeg encoder
- */
- define('runtime/html5/jpegencoder',[], function( require, exports, module ) {
-
- /*
- Copyright (c) 2008, Adobe Systems Incorporated
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
- * Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- * Neither the name of Adobe Systems Incorporated nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /*
- JPEG encoder ported to JavaScript and optimized by Andreas Ritter, www.bytestrom.eu, 11/2009
-
- Basic GUI blocking jpeg encoder
- */
-
- function JPEGEncoder(quality) {
- var self = this;
- var fround = Math.round;
- var ffloor = Math.floor;
- var YTable = new Array(64);
- var UVTable = new Array(64);
- var fdtbl_Y = new Array(64);
- var fdtbl_UV = new Array(64);
- var YDC_HT;
- var UVDC_HT;
- var YAC_HT;
- var UVAC_HT;
-
- var bitcode = new Array(65535);
- var category = new Array(65535);
- var outputfDCTQuant = new Array(64);
- var DU = new Array(64);
- var byteout = [];
- var bytenew = 0;
- var bytepos = 7;
-
- var YDU = new Array(64);
- var UDU = new Array(64);
- var VDU = new Array(64);
- var clt = new Array(256);
- var RGB_YUV_TABLE = new Array(2048);
- var currentQuality;
-
- var ZigZag = [
- 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
- ];
-
- var std_dc_luminance_nrcodes = [0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0];
- var std_dc_luminance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
- var std_ac_luminance_nrcodes = [0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d];
- var std_ac_luminance_values = [
- 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,
- 0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,
- 0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08,
- 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,
- 0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,
- 0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28,
- 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,
- 0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,
- 0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,
- 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,
- 0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,
- 0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89,
- 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,
- 0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,
- 0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,
- 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,
- 0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,
- 0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2,
- 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,
- 0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
- 0xf9,0xfa
- ];
-
- var std_dc_chrominance_nrcodes = [0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0];
- var std_dc_chrominance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
- var std_ac_chrominance_nrcodes = [0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77];
- var std_ac_chrominance_values = [
- 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,
- 0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,
- 0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91,
- 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,
- 0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,
- 0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,
- 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,
- 0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,
- 0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,
- 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,
- 0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,
- 0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,
- 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,
- 0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
- 0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,
- 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
- 0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,
- 0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
- 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,
- 0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
- 0xf9,0xfa
- ];
-
- function initQuantTables(sf){
- var YQT = [
- 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
- ];
-
- for (var i = 0; i < 64; i++) {
- var t = ffloor((YQT[i]*sf+50)/100);
- if (t < 1) {
- t = 1;
- } else if (t > 255) {
- t = 255;
- }
- YTable[ZigZag[i]] = t;
- }
- var UVQT = [
- 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
- ];
- for (var j = 0; j < 64; j++) {
- var u = ffloor((UVQT[j]*sf+50)/100);
- if (u < 1) {
- u = 1;
- } else if (u > 255) {
- u = 255;
- }
- UVTable[ZigZag[j]] = u;
- }
- var aasf = [
- 1.0, 1.387039845, 1.306562965, 1.175875602,
- 1.0, 0.785694958, 0.541196100, 0.275899379
- ];
- var k = 0;
- for (var row = 0; row < 8; row++)
- {
- for (var col = 0; col < 8; col++)
- {
- fdtbl_Y[k] = (1.0 / (YTable [ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
- fdtbl_UV[k] = (1.0 / (UVTable[ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
- k++;
- }
- }
- }
-
- function computeHuffmanTbl(nrcodes, std_table){
- var codevalue = 0;
- var pos_in_table = 0;
- var HT = new Array();
- for (var k = 1; k <= 16; k++) {
- for (var j = 1; j <= nrcodes[k]; j++) {
- HT[std_table[pos_in_table]] = [];
- HT[std_table[pos_in_table]][0] = codevalue;
- HT[std_table[pos_in_table]][1] = k;
- pos_in_table++;
- codevalue++;
- }
- codevalue*=2;
- }
- return HT;
- }
-
- function initHuffmanTbl()
- {
- YDC_HT = computeHuffmanTbl(std_dc_luminance_nrcodes,std_dc_luminance_values);
- UVDC_HT = computeHuffmanTbl(std_dc_chrominance_nrcodes,std_dc_chrominance_values);
- YAC_HT = computeHuffmanTbl(std_ac_luminance_nrcodes,std_ac_luminance_values);
- UVAC_HT = computeHuffmanTbl(std_ac_chrominance_nrcodes,std_ac_chrominance_values);
- }
-
- function initCategoryNumber()
- {
- var nrlower = 1;
- var nrupper = 2;
- for (var cat = 1; cat <= 15; cat++) {
- //Positive numbers
- for (var nr = nrlower; nr>0] = 38470 * i;
- RGB_YUV_TABLE[(i+ 512)>>0] = 7471 * i + 0x8000;
- RGB_YUV_TABLE[(i+ 768)>>0] = -11059 * i;
- RGB_YUV_TABLE[(i+1024)>>0] = -21709 * i;
- RGB_YUV_TABLE[(i+1280)>>0] = 32768 * i + 0x807FFF;
- RGB_YUV_TABLE[(i+1536)>>0] = -27439 * i;
- RGB_YUV_TABLE[(i+1792)>>0] = - 5329 * i;
- }
- }
-
- // IO functions
- function writeBits(bs)
- {
- var value = bs[0];
- var posval = bs[1]-1;
- while ( posval >= 0 ) {
- if (value & (1 << posval) ) {
- bytenew |= (1 << bytepos);
- }
- posval--;
- bytepos--;
- if (bytepos < 0) {
- if (bytenew == 0xFF) {
- writeByte(0xFF);
- writeByte(0);
- }
- else {
- writeByte(bytenew);
- }
- bytepos=7;
- bytenew=0;
- }
- }
- }
-
- function writeByte(value)
- {
- byteout.push(clt[value]); // write char directly instead of converting later
- }
-
- function writeWord(value)
- {
- writeByte((value>>8)&0xFF);
- writeByte((value )&0xFF);
- }
-
- // DCT & quantization core
- function fDCTQuant(data, fdtbl)
- {
- var d0, d1, d2, d3, d4, d5, d6, d7;
- /* Pass 1: process rows. */
- var dataOff=0;
- var i;
- var I8 = 8;
- var I64 = 64;
- for (i=0; i 0.0) ? ((fDCTQuant + 0.5)|0) : ((fDCTQuant - 0.5)|0);
- //outputfDCTQuant[i] = fround(fDCTQuant);
-
- }
- return outputfDCTQuant;
- }
-
- function writeAPP0()
- {
- writeWord(0xFFE0); // marker
- writeWord(16); // length
- writeByte(0x4A); // J
- writeByte(0x46); // F
- writeByte(0x49); // I
- writeByte(0x46); // F
- writeByte(0); // = "JFIF",'\0'
- writeByte(1); // versionhi
- writeByte(1); // versionlo
- writeByte(0); // xyunits
- writeWord(1); // xdensity
- writeWord(1); // ydensity
- writeByte(0); // thumbnwidth
- writeByte(0); // thumbnheight
- }
-
- function writeSOF0(width, height)
- {
- writeWord(0xFFC0); // marker
- writeWord(17); // length, truecolor YUV JPG
- writeByte(8); // precision
- writeWord(height);
- writeWord(width);
- writeByte(3); // nrofcomponents
- writeByte(1); // IdY
- writeByte(0x11); // HVY
- writeByte(0); // QTY
- writeByte(2); // IdU
- writeByte(0x11); // HVU
- writeByte(1); // QTU
- writeByte(3); // IdV
- writeByte(0x11); // HVV
- writeByte(1); // QTV
- }
-
- function writeDQT()
- {
- writeWord(0xFFDB); // marker
- writeWord(132); // length
- writeByte(0);
- for (var i=0; i<64; i++) {
- writeByte(YTable[i]);
- }
- writeByte(1);
- for (var j=0; j<64; j++) {
- writeByte(UVTable[j]);
- }
- }
-
- function writeDHT()
- {
- writeWord(0xFFC4); // marker
- writeWord(0x01A2); // length
-
- writeByte(0); // HTYDCinfo
- for (var i=0; i<16; i++) {
- writeByte(std_dc_luminance_nrcodes[i+1]);
- }
- for (var j=0; j<=11; j++) {
- writeByte(std_dc_luminance_values[j]);
- }
-
- writeByte(0x10); // HTYACinfo
- for (var k=0; k<16; k++) {
- writeByte(std_ac_luminance_nrcodes[k+1]);
- }
- for (var l=0; l<=161; l++) {
- writeByte(std_ac_luminance_values[l]);
- }
-
- writeByte(1); // HTUDCinfo
- for (var m=0; m<16; m++) {
- writeByte(std_dc_chrominance_nrcodes[m+1]);
- }
- for (var n=0; n<=11; n++) {
- writeByte(std_dc_chrominance_values[n]);
- }
-
- writeByte(0x11); // HTUACinfo
- for (var o=0; o<16; o++) {
- writeByte(std_ac_chrominance_nrcodes[o+1]);
- }
- for (var p=0; p<=161; p++) {
- writeByte(std_ac_chrominance_values[p]);
- }
- }
-
- function writeSOS()
- {
- writeWord(0xFFDA); // marker
- writeWord(12); // length
- writeByte(3); // nrofcomponents
- writeByte(1); // IdY
- writeByte(0); // HTY
- writeByte(2); // IdU
- writeByte(0x11); // HTU
- writeByte(3); // IdV
- writeByte(0x11); // HTV
- writeByte(0); // Ss
- writeByte(0x3f); // Se
- writeByte(0); // Bf
- }
-
- function processDU(CDU, fdtbl, DC, HTDC, HTAC){
- var EOB = HTAC[0x00];
- var M16zeroes = HTAC[0xF0];
- var pos;
- var I16 = 16;
- var I63 = 63;
- var I64 = 64;
- var DU_DCT = fDCTQuant(CDU, fdtbl);
- //ZigZag reorder
- for (var j=0;j0)&&(DU[end0pos]==0); end0pos--) {};
- //end0pos = first element in reverse order !=0
- if ( end0pos == 0) {
- writeBits(EOB);
- return DC;
- }
- var i = 1;
- var lng;
- while ( i <= end0pos ) {
- var startpos = i;
- for (; (DU[i]==0) && (i<=end0pos); ++i) {}
- var nrzeroes = i-startpos;
- if ( nrzeroes >= I16 ) {
- lng = nrzeroes>>4;
- for (var nrmarker=1; nrmarker <= lng; ++nrmarker)
- writeBits(M16zeroes);
- nrzeroes = nrzeroes&0xF;
- }
- pos = 32767+DU[i];
- writeBits(HTAC[(nrzeroes<<4)+category[pos]]);
- writeBits(bitcode[pos]);
- i++;
- }
- if ( end0pos != I63 ) {
- writeBits(EOB);
- }
- return DC;
- }
-
- function initCharLookupTable(){
- var sfcc = String.fromCharCode;
- for(var i=0; i < 256; i++){ ///// ACHTUNG // 255
- clt[i] = sfcc(i);
- }
- }
-
- this.encode = function(image,quality) // image data object
- {
- // var time_start = new Date().getTime();
-
- if(quality) setQuality(quality);
-
- // Initialize bit writer
- byteout = new Array();
- bytenew=0;
- bytepos=7;
-
- // Add JPEG headers
- writeWord(0xFFD8); // SOI
- writeAPP0();
- writeDQT();
- writeSOF0(image.width,image.height);
- writeDHT();
- writeSOS();
-
-
- // Encode 8x8 macroblocks
- var DCY=0;
- var DCU=0;
- var DCV=0;
-
- bytenew=0;
- bytepos=7;
-
-
- this.encode.displayName = "_encode_";
-
- var imageData = image.data;
- var width = image.width;
- var height = image.height;
-
- var quadWidth = width*4;
- var tripleWidth = width*3;
-
- var x, y = 0;
- var r, g, b;
- var start,p, col,row,pos;
- while(y < height){
- x = 0;
- while(x < quadWidth){
- start = quadWidth * y + x;
- p = start;
- col = -1;
- row = 0;
-
- for(pos=0; pos < 64; pos++){
- row = pos >> 3;// /8
- col = ( pos & 7 ) * 4; // %8
- p = start + ( row * quadWidth ) + col;
-
- if(y+row >= height){ // padding bottom
- p-= (quadWidth*(y+1+row-height));
- }
-
- if(x+col >= quadWidth){ // padding right
- p-= ((x+col) - quadWidth +4)
- }
-
- r = imageData[ p++ ];
- g = imageData[ p++ ];
- b = imageData[ p++ ];
-
-
- /* // calculate YUV values dynamically
- YDU[pos]=((( 0.29900)*r+( 0.58700)*g+( 0.11400)*b))-128; //-0x80
- UDU[pos]=(((-0.16874)*r+(-0.33126)*g+( 0.50000)*b));
- VDU[pos]=((( 0.50000)*r+(-0.41869)*g+(-0.08131)*b));
- */
-
- // use lookup table (slightly faster)
- YDU[pos] = ((RGB_YUV_TABLE[r] + RGB_YUV_TABLE[(g + 256)>>0] + RGB_YUV_TABLE[(b + 512)>>0]) >> 16)-128;
- UDU[pos] = ((RGB_YUV_TABLE[(r + 768)>>0] + RGB_YUV_TABLE[(g + 1024)>>0] + RGB_YUV_TABLE[(b + 1280)>>0]) >> 16)-128;
- VDU[pos] = ((RGB_YUV_TABLE[(r + 1280)>>0] + RGB_YUV_TABLE[(g + 1536)>>0] + RGB_YUV_TABLE[(b + 1792)>>0]) >> 16)-128;
-
- }
-
- DCY = processDU(YDU, fdtbl_Y, DCY, YDC_HT, YAC_HT);
- DCU = processDU(UDU, fdtbl_UV, DCU, UVDC_HT, UVAC_HT);
- DCV = processDU(VDU, fdtbl_UV, DCV, UVDC_HT, UVAC_HT);
- x+=32;
- }
- y+=8;
- }
-
-
- ////////////////////////////////////////////////////////////////
-
- // Do the bit alignment of the EOI marker
- if ( bytepos >= 0 ) {
- var fillbits = [];
- fillbits[1] = bytepos+1;
- fillbits[0] = (1<<(bytepos+1))-1;
- writeBits(fillbits);
- }
-
- writeWord(0xFFD9); //EOI
-
- var jpegDataUri = 'data:image/jpeg;base64,' + btoa(byteout.join(''));
-
- byteout = [];
-
- // benchmarking
- // var duration = new Date().getTime() - time_start;
- // console.log('Encoding time: '+ currentQuality + 'ms');
- //
-
- return jpegDataUri
- }
-
- function setQuality(quality){
- if (quality <= 0) {
- quality = 1;
- }
- if (quality > 100) {
- quality = 100;
- }
-
- if(currentQuality == quality) return // don't recalc if unchanged
-
- var sf = 0;
- if (quality < 50) {
- sf = Math.floor(5000 / quality);
- } else {
- sf = Math.floor(200 - quality*2);
- }
-
- initQuantTables(sf);
- currentQuality = quality;
- // console.log('Quality set to: '+quality +'%');
- }
-
- function init(){
- // var time_start = new Date().getTime();
- if(!quality) quality = 50;
- // Create tables
- initCharLookupTable()
- initHuffmanTbl();
- initCategoryNumber();
- initRGBYUVTable();
-
- setQuality(quality);
- // var duration = new Date().getTime() - time_start;
- // console.log('Initialization '+ duration + 'ms');
- }
-
- init();
-
- };
-
- JPEGEncoder.encode = function( data, quality ) {
- var encoder = new JPEGEncoder( quality );
-
- return encoder.encode( data );
- }
-
- return JPEGEncoder;
+ /**
+ * @fileOverview Html5Runtime
+ */
+ define('runtime/html5/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var type = 'html5',
+ components = {};
+
+ function Html5Runtime() {
+ var pool = {},
+ me = this,
+ destroy = this.destroy;
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ if ( components[ comp ] ) {
+ instance = pool[ uid ] = pool[ uid ] ||
+ new components[ comp ]( client, me );
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+ };
+
+ me.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+ }
+
+ Base.inherits( Runtime, {
+ constructor: Html5Runtime,
+
+ // 不需要连接其他程序,直接执行callback
+ init: function() {
+ var me = this;
+ setTimeout(function() {
+ me.trigger('ready');
+ }, 1 );
+ }
+
+ });
+
+ // 注册Components
+ Html5Runtime.register = function( name, component ) {
+ var klass = components[ name ] = Base.inherits( CompBase, component );
+ return klass;
+ };
+
+ // 注册html5运行时。
+ // 只有在支持的前提下注册。
+ if ( window.Blob && window.FileReader && window.DataView ) {
+ Runtime.addRuntime( type, Html5Runtime );
+ }
+
+ return Html5Runtime;
});
- /**
- * @fileOverview Fix android canvas.toDataUrl bug.
- */
- define('runtime/html5/androidpatch',[
- 'runtime/html5/util',
- 'runtime/html5/jpegencoder',
- 'base'
- ], function( Util, encoder, Base ) {
- var origin = Util.canvasToDataUrl,
- supportJpeg;
-
- Util.canvasToDataUrl = function( canvas, type, quality ) {
- var ctx, w, h, fragement, parts;
-
- // 非android手机直接跳过。
- if ( !Base.os.android ) {
- return origin.apply( null, arguments );
- }
-
- // 检测是否canvas支持jpeg导出,根据数据格式来判断。
- // JPEG 前两位分别是:255, 216
- if ( type === 'image/jpeg' && typeof supportJpeg === 'undefined' ) {
- fragement = origin.apply( null, arguments );
-
- parts = fragement.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- fragement = atob( parts[ 1 ] );
- } else {
- fragement = decodeURIComponent( parts[ 1 ] );
- }
-
- fragement = fragement.substring( 0, 2 );
-
- supportJpeg = fragement.charCodeAt( 0 ) === 255 &&
- fragement.charCodeAt( 1 ) === 216;
- }
-
- // 只有在android环境下才修复
- if ( type === 'image/jpeg' && !supportJpeg ) {
- w = canvas.width;
- h = canvas.height;
- ctx = canvas.getContext('2d');
-
- return encoder.encode( ctx.getImageData( 0, 0, w, h ), quality );
- }
-
- return origin.apply( null, arguments );
- };
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/html5/blob',[
+ 'runtime/html5/runtime',
+ 'lib/blob'
+ ], function( Html5Runtime, Blob ) {
+
+ return Html5Runtime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.owner.source,
+ slice = blob.slice || blob.webkitSlice || blob.mozSlice;
+
+ blob = slice.call( blob, start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
});
- /**
- * @fileOverview Image
- */
- define('runtime/html5/image',[
- 'base',
- 'runtime/html5/runtime',
- 'runtime/html5/util'
- ], function( Base, Html5Runtime, Util ) {
-
- var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
-
- return Html5Runtime.register( 'Image', {
-
- // flag: 标记是否被修改过。
- modified: false,
-
- init: function() {
- var me = this,
- img = new Image();
-
- img.onload = function() {
-
- me._info = {
- type: me.type,
- width: this.width,
- height: this.height
- };
-
- //debugger;
-
- // 读取meta信息。
- if ( !me._metas && 'image/jpeg' === me.type ) {
- Util.parseMeta( me._blob, function( error, ret ) {
- me._metas = ret;
- me.owner.trigger('load');
- });
- } else {
- me.owner.trigger('load');
- }
- };
-
- img.onerror = function() {
- me.owner.trigger('error');
- };
-
- me._img = img;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- img = me._img;
-
- me._blob = blob;
- me.type = blob.type;
- img.src = Util.createObjectURL( blob.getSource() );
- me.owner.once( 'load', function() {
- Util.revokeObjectURL( img.src );
- });
- },
-
- resize: function( width, height ) {
- var canvas = this._canvas ||
- (this._canvas = document.createElement('canvas'));
-
- this._resize( this._img, canvas, width, height );
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'resize' );
- },
-
- crop: function( x, y, w, h, s ) {
- var cvs = this._canvas ||
- (this._canvas = document.createElement('canvas')),
- opts = this.options,
- img = this._img,
- iw = img.naturalWidth,
- ih = img.naturalHeight,
- orientation = this.getOrientation();
-
- s = s || 1;
-
- // todo 解决 orientation 的问题。
- // values that require 90 degree rotation
- // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // switch ( orientation ) {
- // case 6:
- // tmp = x;
- // x = y;
- // y = iw * s - tmp - w;
- // console.log(ih * s, tmp, w)
- // break;
- // }
-
- // (w ^= h, h ^= w, w ^= h);
- // }
-
- cvs.width = w;
- cvs.height = h;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
- this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
-
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'crop' );
- },
-
- getAsBlob: function( type ) {
- var blob = this._blob,
- opts = this.options,
- canvas;
-
- type = type || this.type;
-
- // blob需要重新生成。
- if ( this.modified || this.type !== type ) {
- canvas = this._canvas;
-
- if ( type === 'image/jpeg' ) {
-
- blob = Util.canvasToDataUrl( canvas, type, opts.quality );
-
- if ( opts.preserveHeaders && this._metas &&
- this._metas.imageHead ) {
-
- blob = Util.dataURL2ArrayBuffer( blob );
- blob = Util.updateImageHead( blob,
- this._metas.imageHead );
- blob = Util.arrayBufferToBlob( blob, type );
- return blob;
- }
- } else {
- blob = Util.canvasToDataUrl( canvas, type );
- }
-
- blob = Util.dataURL2Blob( blob );
- }
-
- return blob;
- },
-
- getAsDataUrl: function( type ) {
- var opts = this.options;
-
- type = type || this.type;
-
- if ( type === 'image/jpeg' ) {
- return Util.canvasToDataUrl( this._canvas, type, opts.quality );
- } else {
- return this._canvas.toDataURL( type );
- }
- },
-
- getOrientation: function() {
- return this._metas && this._metas.exif &&
- this._metas.exif.get('Orientation') || 1;
- },
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._metas = val;
- return this;
- }
-
- // getter
- return this._metas;
- },
-
- destroy: function() {
- var canvas = this._canvas;
- this._img.onload = null;
-
- if ( canvas ) {
- canvas.getContext('2d')
- .clearRect( 0, 0, canvas.width, canvas.height );
- canvas.width = canvas.height = 0;
- this._canvas = null;
- }
-
- // 释放内存。非常重要,否则释放不了image的内存。
- this._img.src = BLANK;
- this._img = this._blob = null;
- },
-
- _resize: function( img, cvs, width, height ) {
- var opts = this.options,
- naturalWidth = img.width,
- naturalHeight = img.height,
- orientation = this.getOrientation(),
- scale, w, h, x, y;
-
- // values that require 90 degree rotation
- if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // 交换width, height的值。
- width ^= height;
- height ^= width;
- width ^= height;
- }
-
- scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
- height / naturalHeight );
-
- // 不允许放大。
- opts.allowMagnify || (scale = Math.min( 1, scale ));
-
- w = naturalWidth * scale;
- h = naturalHeight * scale;
-
- if ( opts.crop ) {
- cvs.width = width;
- cvs.height = height;
- } else {
- cvs.width = w;
- cvs.height = h;
- }
-
- x = (cvs.width - w) / 2;
- y = (cvs.height - h) / 2;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
-
- this._renderImageToCanvas( cvs, img, x, y, w, h );
- },
-
- _rotate2Orientaion: function( canvas, orientation ) {
- var width = canvas.width,
- height = canvas.height,
- ctx = canvas.getContext('2d');
-
- switch ( orientation ) {
- case 5:
- case 6:
- case 7:
- case 8:
- canvas.width = height;
- canvas.height = width;
- break;
- }
-
- switch ( orientation ) {
- case 2: // horizontal flip
- ctx.translate( width, 0 );
- ctx.scale( -1, 1 );
- break;
-
- case 3: // 180 rotate left
- ctx.translate( width, height );
- ctx.rotate( Math.PI );
- break;
-
- case 4: // vertical flip
- ctx.translate( 0, height );
- ctx.scale( 1, -1 );
- break;
-
- case 5: // vertical flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.scale( 1, -1 );
- break;
-
- case 6: // 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( 0, -height );
- break;
-
- case 7: // horizontal flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( width, -height );
- ctx.scale( -1, 1 );
- break;
-
- case 8: // 90 rotate left
- ctx.rotate( -0.5 * Math.PI );
- ctx.translate( -width, 0 );
- break;
- }
- },
-
- // https://github.com/stomita/ios-imagefile-megapixel/
- // blob/master/src/megapix-image.js
- _renderImageToCanvas: (function() {
-
- // 如果不是ios, 不需要这么复杂!
- if ( !Base.os.ios ) {
- return function( canvas ) {
- var args = Base.slice( arguments, 1 ),
- ctx = canvas.getContext('2d');
-
- ctx.drawImage.apply( ctx, args );
- };
- }
-
- /**
- * Detecting vertical squash in loaded image.
- * Fixes a bug which squash image vertically while drawing into
- * canvas for some images.
- */
- function detectVerticalSquash( img, iw, ih ) {
- var canvas = document.createElement('canvas'),
- ctx = canvas.getContext('2d'),
- sy = 0,
- ey = ih,
- py = ih,
- data, alpha, ratio;
-
-
- canvas.width = 1;
- canvas.height = ih;
- ctx.drawImage( img, 0, 0 );
- data = ctx.getImageData( 0, 0, 1, ih ).data;
-
- // search image edge pixel position in case
- // it is squashed vertically.
- while ( py > sy ) {
- alpha = data[ (py - 1) * 4 + 3 ];
-
- if ( alpha === 0 ) {
- ey = py;
- } else {
- sy = py;
- }
-
- py = (ey + sy) >> 1;
- }
-
- ratio = (py / ih);
- return (ratio === 0) ? 1 : ratio;
- }
-
- // fix ie7 bug
- // http://stackoverflow.com/questions/11929099/
- // html5-canvas-drawimage-ratio-bug-ios
- if ( Base.os.ios >= 7 ) {
- return function( canvas, img, x, y, w, h ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- vertSquashRatio = detectVerticalSquash( img, iw, ih );
-
- return canvas.getContext('2d').drawImage( img, 0, 0,
- iw * vertSquashRatio, ih * vertSquashRatio,
- x, y, w, h );
- };
- }
-
- /**
- * Detect subsampling in loaded image.
- * In iOS, larger images than 2M pixels may be
- * subsampled in rendering.
- */
- function detectSubsampling( img ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- canvas, ctx;
-
- // subsampling may happen overmegapixel image
- if ( iw * ih > 1024 * 1024 ) {
- canvas = document.createElement('canvas');
- canvas.width = canvas.height = 1;
- ctx = canvas.getContext('2d');
- ctx.drawImage( img, -iw + 1, 0 );
-
- // subsampled image becomes half smaller in rendering size.
- // check alpha channel value to confirm image is covering
- // edge pixel or not. if alpha value is 0
- // image is not covering, hence subsampled.
- return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
- } else {
- return false;
- }
- }
-
-
- return function( canvas, img, x, y, width, height ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- ctx = canvas.getContext('2d'),
- subsampled = detectSubsampling( img ),
- doSquash = this.type === 'image/jpeg',
- d = 1024,
- sy = 0,
- dy = 0,
- tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
-
- if ( subsampled ) {
- iw /= 2;
- ih /= 2;
- }
-
- ctx.save();
- tmpCanvas = document.createElement('canvas');
- tmpCanvas.width = tmpCanvas.height = d;
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/dnd',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ var $ = Base.$,
+ prefix = 'webuploader-dnd-';
+
+ return Html5Runtime.register( 'DragAndDrop', {
+ init: function() {
+ var elem = this.elem = this.options.container;
+
+ this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
+ this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
+ this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
+ this.dropHandler = Base.bindFn( this._dropHandler, this );
+ this.dndOver = false;
+
+ elem.on( 'dragenter', this.dragEnterHandler );
+ elem.on( 'dragover', this.dragOverHandler );
+ elem.on( 'dragleave', this.dragLeaveHandler );
+ elem.on( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).on( 'dragover', this.dragOverHandler );
+ $( document ).on( 'drop', this.dropHandler );
+ }
+ },
+
+ _dragEnterHandler: function( e ) {
+ var me = this,
+ denied = me._denied || false,
+ items;
+
+ e = e.originalEvent || e;
+
+ if ( !me.dndOver ) {
+ me.dndOver = true;
+
+ // 注意只有 chrome 支持。
+ items = e.dataTransfer.items;
+
+ if ( items && items.length ) {
+ me._denied = denied = !me.trigger( 'accept', items );
+ }
+
+ me.elem.addClass( prefix + 'over' );
+ me.elem[ denied ? 'addClass' :
+ 'removeClass' ]( prefix + 'denied' );
+ }
+
+ e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+
+ return false;
+ },
+
+ _dragOverHandler: function( e ) {
+ // 只处理框内的。
+ var parentElem = this.elem.parent().get( 0 );
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ clearTimeout( this._leaveTimer );
+ this._dragEnterHandler.call( this, e );
+
+ return false;
+ },
+
+ _dragLeaveHandler: function() {
+ var me = this,
+ handler;
+
+ handler = function() {
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
+ };
+
+ clearTimeout( me._leaveTimer );
+ me._leaveTimer = setTimeout( handler, 100 );
+ return false;
+ },
+
+ _dropHandler: function( e ) {
+ var me = this,
+ ruid = me.getRuid(),
+ parentElem = me.elem.parent().get( 0 ),
+ dataTransfer, data;
+
+ // 只处理框内的。
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ e = e.originalEvent || e;
+ dataTransfer = e.dataTransfer;
+
+ // 如果是页面内拖拽,还不能处理,不阻止事件。
+ // 此处 ie11 下会报参数错误,
+ try {
+ data = dataTransfer.getData('text/html');
+ } catch( err ) {
+ }
+
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over' );
+
+ if ( !dataTransfer || data ) {
+ return;
+ }
+
+ me._getTansferFiles( dataTransfer, function( results ) {
+ me.trigger( 'drop', $.map( results, function( file ) {
+ return new File( ruid, file );
+ }) );
+ });
+
+ return false;
+ },
+
+ // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
+ _getTansferFiles: function( dataTransfer, callback ) {
+ var results = [],
+ promises = [],
+ items, files, file, item, i, len, canAccessFolder;
+
+ items = dataTransfer.items;
+ files = dataTransfer.files;
+
+ canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+
+ for ( i = 0, len = files.length; i < len; i++ ) {
+ file = files[ i ];
+ item = items && items[ i ];
+
+ if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+
+ promises.push( this._traverseDirectoryTree(
+ item.webkitGetAsEntry(), results ) );
+ } else {
+ results.push( file );
+ }
+ }
+
+ Base.when.apply( Base, promises ).done(function() {
+
+ if ( !results.length ) {
+ return;
+ }
+
+ callback( results );
+ });
+ },
+
+ _traverseDirectoryTree: function( entry, results ) {
+ var deferred = Base.Deferred(),
+ me = this;
+
+ if ( entry.isFile ) {
+ entry.file(function( file ) {
+ results.push( file );
+ deferred.resolve();
+ });
+ } else if ( entry.isDirectory ) {
+ entry.createReader().readEntries(function( entries ) {
+ var len = entries.length,
+ promises = [],
+ arr = [], // 为了保证顺序。
+ i;
+
+ for ( i = 0; i < len; i++ ) {
+ promises.push( me._traverseDirectoryTree(
+ entries[ i ], arr ) );
+ }
+
+ Base.when.apply( Base, promises ).then(function() {
+ results.push.apply( results, arr );
+ deferred.resolve();
+ }, deferred.reject );
+ });
+ }
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ var elem = this.elem;
+
+ // 还没 init 就调用 destroy
+ if (!elem) {
+ return;
+ }
+
+ elem.off( 'dragenter', this.dragEnterHandler );
+ elem.off( 'dragover', this.dragOverHandler );
+ elem.off( 'dragleave', this.dragLeaveHandler );
+ elem.off( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).off( 'dragover', this.dragOverHandler );
+ $( document ).off( 'drop', this.dropHandler );
+ }
+ }
+ });
+ });
- tmpCtx = tmpCanvas.getContext('2d');
- vertSquashRatio = doSquash ?
- detectVerticalSquash( img, iw, ih ) : 1;
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/filepaste',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ return Html5Runtime.register( 'FilePaste', {
+ init: function() {
+ var opts = this.options,
+ elem = this.elem = opts.container,
+ accept = '.*',
+ arr, i, len, item;
+
+ // accetp的mimeTypes中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].mimeTypes;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = arr.join(',');
+ accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
+ }
+ }
+ this.accept = accept = new RegExp( accept, 'i' );
+ this.hander = Base.bindFn( this._pasteHander, this );
+ elem.on( 'paste', this.hander );
+ },
+
+ _pasteHander: function( e ) {
+ var allowed = [],
+ ruid = this.getRuid(),
+ items, item, blob, i, len;
+
+ e = e.originalEvent || e;
+ items = e.clipboardData.items;
+
+ for ( i = 0, len = items.length; i < len; i++ ) {
+ item = items[ i ];
+
+ if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
+ continue;
+ }
+
+ allowed.push( new File( ruid, blob ) );
+ }
+
+ if ( allowed.length ) {
+ // 不阻止非文件粘贴(文字粘贴)的事件冒泡
+ e.preventDefault();
+ e.stopPropagation();
+ this.trigger( 'paste', allowed );
+ }
+ },
+
+ destroy: function() {
+ this.elem.off( 'paste', this.hander );
+ }
+ });
+ });
- dw = Math.ceil( d * width / iw );
- dh = Math.ceil( d * height / ih / vertSquashRatio );
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/html5/filepicker',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var $ = Base.$;
+
+ return Html5Runtime.register( 'FilePicker', {
+ init: function() {
+ var container = this.getRuntime().getContainer(),
+ me = this,
+ owner = me.owner,
+ opts = me.options,
+ label = this.label = $( document.createElement('label') ),
+ input = this.input = $( document.createElement('input') ),
+ arr, i, len, mouseHandler, changeHandler;
+
+ input.attr( 'type', 'file' );
+ // input.attr( 'capture', 'camera');
+ input.attr( 'name', opts.name );
+ input.addClass('webuploader-element-invisible');
+
+ label.on( 'click', function(e) {
+ input.trigger('click');
+ e.stopPropagation();
+ owner.trigger('dialogopen');
+ });
+
+ label.css({
+ opacity: 0,
+ width: '100%',
+ height: '100%',
+ display: 'block',
+ cursor: 'pointer',
+ background: '#ffffff'
+ });
+
+ if ( opts.multiple ) {
+ input.attr( 'multiple', 'multiple' );
+ }
+
+ // @todo Firefox不支持单独指定后缀
+ if ( opts.accept && opts.accept.length > 0 ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ arr.push( opts.accept[ i ].mimeTypes );
+ }
+
+ input.attr( 'accept', arr.join(',') );
+ }
+
+ container.append( input );
+ container.append( label );
+
+ mouseHandler = function( e ) {
+ owner.trigger( e.type );
+ };
+
+ changeHandler = function( e ) {
+ var clone;
+
+ // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
+ if (e.target.files.length === 0){
+ return false;
+ }
+
+ // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
+ me.files = e.target.files;
+
+
+ // reset input
+ clone = this.cloneNode( true );
+ clone.value = null;
+ this.parentNode.replaceChild( clone, this );
+
+ input.off();
+ input = $( clone ).on( 'change', changeHandler )
+ .on( 'mouseenter mouseleave', mouseHandler );
+
+ owner.trigger('change');
+ }
+ input.on( 'change', changeHandler);
+ label.on( 'mouseenter mouseleave', mouseHandler );
+
+ },
+
+
+ getFiles: function() {
+ return this.files;
+ },
+
+ destroy: function() {
+ this.input.off();
+ this.label.off();
+ }
+ });
+ });
- while ( sy < ih ) {
- sx = 0;
- dx = 0;
- while ( sx < iw ) {
- tmpCtx.clearRect( 0, 0, d, d );
- tmpCtx.drawImage( img, -sx, -sy );
- ctx.drawImage( tmpCanvas, 0, 0, d, d,
- x + dx, y + dy, dw, dh );
- sx += d;
- dx += dw;
- }
- sy += d;
- dy += dh;
- }
- ctx.restore();
- tmpCanvas = tmpCtx = null;
- };
- })()
- });
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/util',[
+ 'base'
+ ], function( Base ) {
+
+ var urlAPI = window.createObjectURL && window ||
+ window.URL && URL.revokeObjectURL && URL ||
+ window.webkitURL,
+ createObjectURL = Base.noop,
+ revokeObjectURL = createObjectURL;
+
+ if ( urlAPI ) {
+
+ // 更安全的方式调用,比如android里面就能把context改成其他的对象。
+ createObjectURL = function() {
+ return urlAPI.createObjectURL.apply( urlAPI, arguments );
+ };
+
+ revokeObjectURL = function() {
+ return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
+ };
+ }
+
+ return {
+ createObjectURL: createObjectURL,
+ revokeObjectURL: revokeObjectURL,
+
+ dataURL2Blob: function( dataURI ) {
+ var byteStr, intArray, ab, i, mimetype, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ ab = new ArrayBuffer( byteStr.length );
+ intArray = new Uint8Array( ab );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
+
+ return this.arrayBufferToBlob( ab, mimetype );
+ },
+
+ dataURL2ArrayBuffer: function( dataURI ) {
+ var byteStr, intArray, i, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ intArray = new Uint8Array( byteStr.length );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ return intArray.buffer;
+ },
+
+ arrayBufferToBlob: function( buffer, type ) {
+ var builder = window.BlobBuilder || window.WebKitBlobBuilder,
+ bb;
+
+ // android不支持直接new Blob, 只能借助blobbuilder.
+ if ( builder ) {
+ bb = new builder();
+ bb.append( buffer );
+ return bb.getBlob( type );
+ }
+
+ return new Blob([ buffer ], type ? { type: type } : {} );
+ },
+
+ // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
+ // 你得到的结果是png.
+ canvasToDataUrl: function( canvas, type, quality ) {
+ return canvas.toDataURL( type, quality / 100 );
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ parseMeta: function( blob, callback ) {
+ callback( false, {});
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ updateImageHead: function( data ) {
+ return data;
+ }
+ };
+ });
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/imagemeta',[
+ 'runtime/html5/util'
+ ], function( Util ) {
+
+ var api;
+
+ api = {
+ parsers: {
+ 0xffe1: []
+ },
+
+ maxMetaDataSize: 262144,
+
+ parse: function( blob, cb ) {
+ var me = this,
+ fr = new FileReader();
+
+ fr.onload = function() {
+ cb( false, me._parse( this.result ) );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ fr.onerror = function( e ) {
+ cb( e.message );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ blob = blob.slice( 0, me.maxMetaDataSize );
+ fr.readAsArrayBuffer( blob.getSource() );
+ },
+
+ _parse: function( buffer, noParse ) {
+ if ( buffer.byteLength < 6 ) {
+ return;
+ }
+
+ var dataview = new DataView( buffer ),
+ offset = 2,
+ maxOffset = dataview.byteLength - 4,
+ headLength = offset,
+ ret = {},
+ markerBytes, markerLength, parsers, i;
+
+ if ( dataview.getUint16( 0 ) === 0xffd8 ) {
+
+ while ( offset < maxOffset ) {
+ markerBytes = dataview.getUint16( offset );
+
+ if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
+ markerBytes === 0xfffe ) {
+
+ markerLength = dataview.getUint16( offset + 2 ) + 2;
+
+ if ( offset + markerLength > dataview.byteLength ) {
+ break;
+ }
+
+ parsers = api.parsers[ markerBytes ];
+
+ if ( !noParse && parsers ) {
+ for ( i = 0; i < parsers.length; i += 1 ) {
+ parsers[ i ].call( api, dataview, offset,
+ markerLength, ret );
+ }
+ }
+
+ offset += markerLength;
+ headLength = offset;
+ } else {
+ break;
+ }
+ }
+
+ if ( headLength > 6 ) {
+ if ( buffer.slice ) {
+ ret.imageHead = buffer.slice( 2, headLength );
+ } else {
+ // Workaround for IE10, which does not yet
+ // support ArrayBuffer.slice:
+ ret.imageHead = new Uint8Array( buffer )
+ .subarray( 2, headLength );
+ }
+ }
+ }
+
+ return ret;
+ },
+
+ updateImageHead: function( buffer, head ) {
+ var data = this._parse( buffer, true ),
+ buf1, buf2, bodyoffset;
+
+
+ bodyoffset = 2;
+ if ( data.imageHead ) {
+ bodyoffset = 2 + data.imageHead.byteLength;
+ }
+
+ if ( buffer.slice ) {
+ buf2 = buffer.slice( bodyoffset );
+ } else {
+ buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
+ }
+
+ buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
+
+ buf1[ 0 ] = 0xFF;
+ buf1[ 1 ] = 0xD8;
+ buf1.set( new Uint8Array( head ), 2 );
+ buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
+
+ return buf1.buffer;
+ }
+ };
+
+ Util.parseMeta = function() {
+ return api.parse.apply( api, arguments );
+ };
+
+ Util.updateImageHead = function() {
+ return api.updateImageHead.apply( api, arguments );
+ };
+
+ return api;
});
-
- /**
- * @fileOverview Transport
- * @todo 支持chunked传输,优势:
- * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
- * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
- */
- define('runtime/html5/transport',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
-
- var noop = Base.noop,
- $ = Base.$;
-
- return Html5Runtime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- formData, binary, fr;
-
- if ( opts.sendAsBinary ) {
- server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData )) : '';
-
- binary = blob.getSource();
- } else {
- formData = new FormData();
- $.each( owner._formData, function( k, v ) {
- formData.append( k, v );
- });
-
- formData.append( opts.fileVal, blob.getSource(),
- opts.filename || owner._formData.name || '' );
- }
-
- if ( opts.withCredentials && 'withCredentials' in xhr ) {
- xhr.open( opts.method, server, true );
- xhr.withCredentials = true;
- } else {
- xhr.open( opts.method, server );
- }
-
- this._setRequestHeader( xhr, opts.headers );
-
- if ( binary ) {
- // 强制设置成 content-type 为文件流。
- xhr.overrideMimeType &&
- xhr.overrideMimeType('application/octet-stream');
-
- // android直接发送blob会导致服务端接收到的是空文件。
- // bug详情。
- // https://code.google.com/p/android/issues/detail?id=39882
- // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
- if ( Base.os.android ) {
- fr = new FileReader();
-
- fr.onload = function() {
- xhr.send( this.result );
- fr = fr.onload = null;
- };
-
- fr.readAsArrayBuffer( binary );
- } else {
- xhr.send( binary );
- }
- } else {
- xhr.send( formData );
- }
- },
-
- getResponse: function() {
- return this._response;
- },
-
- getResponseAsJson: function() {
- return this._parseJson( this._response );
- },
-
- getResponseHeaders: function() {
- return this._headers;
- },
-
- getStatus: function() {
- return this._status;
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- xhr.abort();
-
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _parseHeader: function(raw) {
- var ret = {};
-
- raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
- ret[key.trim()] = value.trim();
- });
-
- return ret;
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new XMLHttpRequest(),
- opts = this.options;
-
- if ( opts.withCredentials && !('withCredentials' in xhr) &&
- typeof XDomainRequest !== 'undefined' ) {
- xhr = new XDomainRequest();
- }
-
- xhr.upload.onprogress = function( e ) {
- var percentage = 0;
-
- if ( e.lengthComputable ) {
- percentage = e.loaded / e.total;
- }
-
- return me.trigger( 'progress', percentage );
- };
-
- xhr.onreadystatechange = function() {
-
- if ( xhr.readyState !== 4 ) {
- return;
- }
-
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- me._xhr = null;
- me._status = xhr.status;
-
- var separator = '|', // 分隔符
- // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
- status = separator + xhr.status +
- separator + xhr.statusText;
-
- if ( xhr.status >= 200 && xhr.status < 300 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger('load');
- } else if ( xhr.status >= 500 && xhr.status < 600 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger( 'error', 'server' + status );
- }
-
-
- return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
- };
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.setRequestHeader( key, val );
- });
- },
-
- _parseJson: function( str ) {
- var json;
-
- try {
- json = JSON.parse( str );
- } catch ( ex ) {
- json = {};
- }
-
- return json;
- }
- });
+ /**
+ * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
+ * 暂时项目中只用了orientation.
+ *
+ * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
+ * @fileOverview EXIF解析
+ */
+
+ // Sample
+ // ====================================
+ // Make : Apple
+ // Model : iPhone 4S
+ // Orientation : 1
+ // XResolution : 72 [72/1]
+ // YResolution : 72 [72/1]
+ // ResolutionUnit : 2
+ // Software : QuickTime 7.7.1
+ // DateTime : 2013:09:01 22:53:55
+ // ExifIFDPointer : 190
+ // ExposureTime : 0.058823529411764705 [1/17]
+ // FNumber : 2.4 [12/5]
+ // ExposureProgram : Normal program
+ // ISOSpeedRatings : 800
+ // ExifVersion : 0220
+ // DateTimeOriginal : 2013:09:01 22:52:51
+ // DateTimeDigitized : 2013:09:01 22:52:51
+ // ComponentsConfiguration : YCbCr
+ // ShutterSpeedValue : 4.058893515764426
+ // ApertureValue : 2.5260688216892597 [4845/1918]
+ // BrightnessValue : -0.3126686601998395
+ // MeteringMode : Pattern
+ // Flash : Flash did not fire, compulsory flash mode
+ // FocalLength : 4.28 [107/25]
+ // SubjectArea : [4 values]
+ // FlashpixVersion : 0100
+ // ColorSpace : 1
+ // PixelXDimension : 2448
+ // PixelYDimension : 3264
+ // SensingMethod : One-chip color area sensor
+ // ExposureMode : 0
+ // WhiteBalance : Auto white balance
+ // FocalLengthIn35mmFilm : 35
+ // SceneCaptureType : Standard
+ define('runtime/html5/imagemeta/exif',[
+ 'base',
+ 'runtime/html5/imagemeta'
+ ], function( Base, ImageMeta ) {
+
+ var EXIF = {};
+
+ EXIF.ExifMap = function() {
+ return this;
+ };
+
+ EXIF.ExifMap.prototype.map = {
+ 'Orientation': 0x0112
+ };
+
+ EXIF.ExifMap.prototype.get = function( id ) {
+ return this[ id ] || this[ this.map[ id ] ];
+ };
+
+ EXIF.exifTagTypes = {
+ // byte, 8-bit unsigned int:
+ 1: {
+ getValue: function( dataView, dataOffset ) {
+ return dataView.getUint8( dataOffset );
+ },
+ size: 1
+ },
+
+ // ascii, 8-bit byte:
+ 2: {
+ getValue: function( dataView, dataOffset ) {
+ return String.fromCharCode( dataView.getUint8( dataOffset ) );
+ },
+ size: 1,
+ ascii: true
+ },
+
+ // short, 16 bit int:
+ 3: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint16( dataOffset, littleEndian );
+ },
+ size: 2
+ },
+
+ // long, 32 bit int:
+ 4: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // rational = two long values,
+ // first is numerator, second is denominator:
+ 5: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian ) /
+ dataView.getUint32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ },
+
+ // slong, 32 bit signed int:
+ 9: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // srational, two slongs, first is numerator, second is denominator:
+ 10: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian ) /
+ dataView.getInt32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ }
+ };
+
+ // undefined, 8-bit byte, value depending on field:
+ EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
+
+ EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
+ littleEndian ) {
+
+ var tagType = EXIF.exifTagTypes[ type ],
+ tagSize, dataOffset, values, i, str, c;
+
+ if ( !tagType ) {
+ Base.log('Invalid Exif data: Invalid tag type.');
+ return;
+ }
+
+ tagSize = tagType.size * length;
+
+ // Determine if the value is contained in the dataOffset bytes,
+ // or if the value at the dataOffset is a pointer to the actual data:
+ dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
+ littleEndian ) : (offset + 8);
+
+ if ( dataOffset + tagSize > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid data offset.');
+ return;
+ }
+
+ if ( length === 1 ) {
+ return tagType.getValue( dataView, dataOffset, littleEndian );
+ }
+
+ values = [];
+
+ for ( i = 0; i < length; i += 1 ) {
+ values[ i ] = tagType.getValue( dataView,
+ dataOffset + i * tagType.size, littleEndian );
+ }
+
+ if ( tagType.ascii ) {
+ str = '';
+
+ // Concatenate the chars:
+ for ( i = 0; i < values.length; i += 1 ) {
+ c = values[ i ];
+
+ // Ignore the terminating NULL byte(s):
+ if ( c === '\u0000' ) {
+ break;
+ }
+ str += c;
+ }
+
+ return str;
+ }
+ return values;
+ };
+
+ EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
+ data ) {
+
+ var tag = dataView.getUint16( offset, littleEndian );
+ data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
+ dataView.getUint16( offset + 2, littleEndian ), // tag type
+ dataView.getUint32( offset + 4, littleEndian ), // tag length
+ littleEndian );
+ };
+
+ EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
+ littleEndian, data ) {
+
+ var tagsNumber, dirEndOffset, i;
+
+ if ( dirOffset + 6 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory offset.');
+ return;
+ }
+
+ tagsNumber = dataView.getUint16( dirOffset, littleEndian );
+ dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
+
+ if ( dirEndOffset + 4 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory size.');
+ return;
+ }
+
+ for ( i = 0; i < tagsNumber; i += 1 ) {
+ this.parseExifTag( dataView, tiffOffset,
+ dirOffset + 2 + 12 * i, // tag offset
+ littleEndian, data );
+ }
+
+ // Return the offset to the next directory:
+ return dataView.getUint32( dirEndOffset, littleEndian );
+ };
+
+ // EXIF.getExifThumbnail = function(dataView, offset, length) {
+ // var hexData,
+ // i,
+ // b;
+ // if (!length || offset + length > dataView.byteLength) {
+ // Base.log('Invalid Exif data: Invalid thumbnail data.');
+ // return;
+ // }
+ // hexData = [];
+ // for (i = 0; i < length; i += 1) {
+ // b = dataView.getUint8(offset + i);
+ // hexData.push((b < 16 ? '0' : '') + b.toString(16));
+ // }
+ // return 'data:image/jpeg,%' + hexData.join('%');
+ // };
+
+ EXIF.parseExifData = function( dataView, offset, length, data ) {
+
+ var tiffOffset = offset + 10,
+ littleEndian, dirOffset;
+
+ // Check for the ASCII code for "Exif" (0x45786966):
+ if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
+ // No Exif data, might be XMP data instead
+ return;
+ }
+ if ( tiffOffset + 8 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid segment size.');
+ return;
+ }
+
+ // Check for the two null bytes:
+ if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
+ Base.log('Invalid Exif data: Missing byte alignment offset.');
+ return;
+ }
+
+ // Check the byte alignment:
+ switch ( dataView.getUint16( tiffOffset ) ) {
+ case 0x4949:
+ littleEndian = true;
+ break;
+
+ case 0x4D4D:
+ littleEndian = false;
+ break;
+
+ default:
+ Base.log('Invalid Exif data: Invalid byte alignment marker.');
+ return;
+ }
+
+ // Check for the TIFF tag marker (0x002A):
+ if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
+ Base.log('Invalid Exif data: Missing TIFF marker.');
+ return;
+ }
+
+ // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
+ dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
+ // Create the exif object to store the tags:
+ data.exif = new EXIF.ExifMap();
+ // Parse the tags of the main image directory and retrieve the
+ // offset to the next directory, usually the thumbnail directory:
+ dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
+ tiffOffset + dirOffset, littleEndian, data );
+
+ // 尝试读取缩略图
+ // if ( dirOffset ) {
+ // thumbnailData = {exif: {}};
+ // dirOffset = EXIF.parseExifTags(
+ // dataView,
+ // tiffOffset,
+ // tiffOffset + dirOffset,
+ // littleEndian,
+ // thumbnailData
+ // );
+
+ // // Check for JPEG Thumbnail offset:
+ // if (thumbnailData.exif[0x0201]) {
+ // data.exif.Thumbnail = EXIF.getExifThumbnail(
+ // dataView,
+ // tiffOffset + thumbnailData.exif[0x0201],
+ // thumbnailData.exif[0x0202] // Thumbnail data length
+ // );
+ // }
+ // }
+ };
+
+ ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
+ return EXIF;
+ });
+ /**
+ * 这个方式性能不行,但是可以解决android里面的toDataUrl的bug
+ * android里面toDataUrl('image/jpege')得到的结果却是png.
+ *
+ * 所以这里没辙,只能借助这个工具
+ * @fileOverview jpeg encoder
+ */
+ define('runtime/html5/jpegencoder',[], function( require, exports, module ) {
+
+ /*
+ Copyright (c) 2008, Adobe Systems Incorporated
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of Adobe Systems Incorporated nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+ /*
+ JPEG encoder ported to JavaScript and optimized by Andreas Ritter, www.bytestrom.eu, 11/2009
+
+ Basic GUI blocking jpeg encoder
+ */
+
+ function JPEGEncoder(quality) {
+ var self = this;
+ var fround = Math.round;
+ var ffloor = Math.floor;
+ var YTable = new Array(64);
+ var UVTable = new Array(64);
+ var fdtbl_Y = new Array(64);
+ var fdtbl_UV = new Array(64);
+ var YDC_HT;
+ var UVDC_HT;
+ var YAC_HT;
+ var UVAC_HT;
+
+ var bitcode = new Array(65535);
+ var category = new Array(65535);
+ var outputfDCTQuant = new Array(64);
+ var DU = new Array(64);
+ var byteout = [];
+ var bytenew = 0;
+ var bytepos = 7;
+
+ var YDU = new Array(64);
+ var UDU = new Array(64);
+ var VDU = new Array(64);
+ var clt = new Array(256);
+ var RGB_YUV_TABLE = new Array(2048);
+ var currentQuality;
+
+ var ZigZag = [
+ 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
+ ];
+
+ var std_dc_luminance_nrcodes = [0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0];
+ var std_dc_luminance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
+ var std_ac_luminance_nrcodes = [0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d];
+ var std_ac_luminance_values = [
+ 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,
+ 0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,
+ 0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08,
+ 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,
+ 0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,
+ 0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28,
+ 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,
+ 0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,
+ 0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,
+ 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,
+ 0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,
+ 0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89,
+ 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,
+ 0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,
+ 0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,
+ 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,
+ 0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,
+ 0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2,
+ 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,
+ 0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
+ 0xf9,0xfa
+ ];
+
+ var std_dc_chrominance_nrcodes = [0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0];
+ var std_dc_chrominance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
+ var std_ac_chrominance_nrcodes = [0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77];
+ var std_ac_chrominance_values = [
+ 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,
+ 0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,
+ 0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91,
+ 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,
+ 0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,
+ 0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,
+ 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,
+ 0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,
+ 0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,
+ 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,
+ 0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,
+ 0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,
+ 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,
+ 0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
+ 0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,
+ 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
+ 0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,
+ 0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
+ 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,
+ 0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
+ 0xf9,0xfa
+ ];
+
+ function initQuantTables(sf){
+ var YQT = [
+ 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
+ ];
+
+ for (var i = 0; i < 64; i++) {
+ var t = ffloor((YQT[i]*sf+50)/100);
+ if (t < 1) {
+ t = 1;
+ } else if (t > 255) {
+ t = 255;
+ }
+ YTable[ZigZag[i]] = t;
+ }
+ var UVQT = [
+ 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
+ ];
+ for (var j = 0; j < 64; j++) {
+ var u = ffloor((UVQT[j]*sf+50)/100);
+ if (u < 1) {
+ u = 1;
+ } else if (u > 255) {
+ u = 255;
+ }
+ UVTable[ZigZag[j]] = u;
+ }
+ var aasf = [
+ 1.0, 1.387039845, 1.306562965, 1.175875602,
+ 1.0, 0.785694958, 0.541196100, 0.275899379
+ ];
+ var k = 0;
+ for (var row = 0; row < 8; row++)
+ {
+ for (var col = 0; col < 8; col++)
+ {
+ fdtbl_Y[k] = (1.0 / (YTable [ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
+ fdtbl_UV[k] = (1.0 / (UVTable[ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
+ k++;
+ }
+ }
+ }
+
+ function computeHuffmanTbl(nrcodes, std_table){
+ var codevalue = 0;
+ var pos_in_table = 0;
+ var HT = new Array();
+ for (var k = 1; k <= 16; k++) {
+ for (var j = 1; j <= nrcodes[k]; j++) {
+ HT[std_table[pos_in_table]] = [];
+ HT[std_table[pos_in_table]][0] = codevalue;
+ HT[std_table[pos_in_table]][1] = k;
+ pos_in_table++;
+ codevalue++;
+ }
+ codevalue*=2;
+ }
+ return HT;
+ }
+
+ function initHuffmanTbl()
+ {
+ YDC_HT = computeHuffmanTbl(std_dc_luminance_nrcodes,std_dc_luminance_values);
+ UVDC_HT = computeHuffmanTbl(std_dc_chrominance_nrcodes,std_dc_chrominance_values);
+ YAC_HT = computeHuffmanTbl(std_ac_luminance_nrcodes,std_ac_luminance_values);
+ UVAC_HT = computeHuffmanTbl(std_ac_chrominance_nrcodes,std_ac_chrominance_values);
+ }
+
+ function initCategoryNumber()
+ {
+ var nrlower = 1;
+ var nrupper = 2;
+ for (var cat = 1; cat <= 15; cat++) {
+ //Positive numbers
+ for (var nr = nrlower; nr>0] = 38470 * i;
+ RGB_YUV_TABLE[(i+ 512)>>0] = 7471 * i + 0x8000;
+ RGB_YUV_TABLE[(i+ 768)>>0] = -11059 * i;
+ RGB_YUV_TABLE[(i+1024)>>0] = -21709 * i;
+ RGB_YUV_TABLE[(i+1280)>>0] = 32768 * i + 0x807FFF;
+ RGB_YUV_TABLE[(i+1536)>>0] = -27439 * i;
+ RGB_YUV_TABLE[(i+1792)>>0] = - 5329 * i;
+ }
+ }
+
+ // IO functions
+ function writeBits(bs)
+ {
+ var value = bs[0];
+ var posval = bs[1]-1;
+ while ( posval >= 0 ) {
+ if (value & (1 << posval) ) {
+ bytenew |= (1 << bytepos);
+ }
+ posval--;
+ bytepos--;
+ if (bytepos < 0) {
+ if (bytenew == 0xFF) {
+ writeByte(0xFF);
+ writeByte(0);
+ }
+ else {
+ writeByte(bytenew);
+ }
+ bytepos=7;
+ bytenew=0;
+ }
+ }
+ }
+
+ function writeByte(value)
+ {
+ byteout.push(clt[value]); // write char directly instead of converting later
+ }
+
+ function writeWord(value)
+ {
+ writeByte((value>>8)&0xFF);
+ writeByte((value )&0xFF);
+ }
+
+ // DCT & quantization core
+ function fDCTQuant(data, fdtbl)
+ {
+ var d0, d1, d2, d3, d4, d5, d6, d7;
+ /* Pass 1: process rows. */
+ var dataOff=0;
+ var i;
+ var I8 = 8;
+ var I64 = 64;
+ for (i=0; i 0.0) ? ((fDCTQuant + 0.5)|0) : ((fDCTQuant - 0.5)|0);
+ //outputfDCTQuant[i] = fround(fDCTQuant);
+
+ }
+ return outputfDCTQuant;
+ }
+
+ function writeAPP0()
+ {
+ writeWord(0xFFE0); // marker
+ writeWord(16); // length
+ writeByte(0x4A); // J
+ writeByte(0x46); // F
+ writeByte(0x49); // I
+ writeByte(0x46); // F
+ writeByte(0); // = "JFIF",'\0'
+ writeByte(1); // versionhi
+ writeByte(1); // versionlo
+ writeByte(0); // xyunits
+ writeWord(1); // xdensity
+ writeWord(1); // ydensity
+ writeByte(0); // thumbnwidth
+ writeByte(0); // thumbnheight
+ }
+
+ function writeSOF0(width, height)
+ {
+ writeWord(0xFFC0); // marker
+ writeWord(17); // length, truecolor YUV JPG
+ writeByte(8); // precision
+ writeWord(height);
+ writeWord(width);
+ writeByte(3); // nrofcomponents
+ writeByte(1); // IdY
+ writeByte(0x11); // HVY
+ writeByte(0); // QTY
+ writeByte(2); // IdU
+ writeByte(0x11); // HVU
+ writeByte(1); // QTU
+ writeByte(3); // IdV
+ writeByte(0x11); // HVV
+ writeByte(1); // QTV
+ }
+
+ function writeDQT()
+ {
+ writeWord(0xFFDB); // marker
+ writeWord(132); // length
+ writeByte(0);
+ for (var i=0; i<64; i++) {
+ writeByte(YTable[i]);
+ }
+ writeByte(1);
+ for (var j=0; j<64; j++) {
+ writeByte(UVTable[j]);
+ }
+ }
+
+ function writeDHT()
+ {
+ writeWord(0xFFC4); // marker
+ writeWord(0x01A2); // length
+
+ writeByte(0); // HTYDCinfo
+ for (var i=0; i<16; i++) {
+ writeByte(std_dc_luminance_nrcodes[i+1]);
+ }
+ for (var j=0; j<=11; j++) {
+ writeByte(std_dc_luminance_values[j]);
+ }
+
+ writeByte(0x10); // HTYACinfo
+ for (var k=0; k<16; k++) {
+ writeByte(std_ac_luminance_nrcodes[k+1]);
+ }
+ for (var l=0; l<=161; l++) {
+ writeByte(std_ac_luminance_values[l]);
+ }
+
+ writeByte(1); // HTUDCinfo
+ for (var m=0; m<16; m++) {
+ writeByte(std_dc_chrominance_nrcodes[m+1]);
+ }
+ for (var n=0; n<=11; n++) {
+ writeByte(std_dc_chrominance_values[n]);
+ }
+
+ writeByte(0x11); // HTUACinfo
+ for (var o=0; o<16; o++) {
+ writeByte(std_ac_chrominance_nrcodes[o+1]);
+ }
+ for (var p=0; p<=161; p++) {
+ writeByte(std_ac_chrominance_values[p]);
+ }
+ }
+
+ function writeSOS()
+ {
+ writeWord(0xFFDA); // marker
+ writeWord(12); // length
+ writeByte(3); // nrofcomponents
+ writeByte(1); // IdY
+ writeByte(0); // HTY
+ writeByte(2); // IdU
+ writeByte(0x11); // HTU
+ writeByte(3); // IdV
+ writeByte(0x11); // HTV
+ writeByte(0); // Ss
+ writeByte(0x3f); // Se
+ writeByte(0); // Bf
+ }
+
+ function processDU(CDU, fdtbl, DC, HTDC, HTAC){
+ var EOB = HTAC[0x00];
+ var M16zeroes = HTAC[0xF0];
+ var pos;
+ var I16 = 16;
+ var I63 = 63;
+ var I64 = 64;
+ var DU_DCT = fDCTQuant(CDU, fdtbl);
+ //ZigZag reorder
+ for (var j=0;j0)&&(DU[end0pos]==0); end0pos--) {};
+ //end0pos = first element in reverse order !=0
+ if ( end0pos == 0) {
+ writeBits(EOB);
+ return DC;
+ }
+ var i = 1;
+ var lng;
+ while ( i <= end0pos ) {
+ var startpos = i;
+ for (; (DU[i]==0) && (i<=end0pos); ++i) {}
+ var nrzeroes = i-startpos;
+ if ( nrzeroes >= I16 ) {
+ lng = nrzeroes>>4;
+ for (var nrmarker=1; nrmarker <= lng; ++nrmarker)
+ writeBits(M16zeroes);
+ nrzeroes = nrzeroes&0xF;
+ }
+ pos = 32767+DU[i];
+ writeBits(HTAC[(nrzeroes<<4)+category[pos]]);
+ writeBits(bitcode[pos]);
+ i++;
+ }
+ if ( end0pos != I63 ) {
+ writeBits(EOB);
+ }
+ return DC;
+ }
+
+ function initCharLookupTable(){
+ var sfcc = String.fromCharCode;
+ for(var i=0; i < 256; i++){ ///// ACHTUNG // 255
+ clt[i] = sfcc(i);
+ }
+ }
+
+ this.encode = function(image,quality) // image data object
+ {
+ // var time_start = new Date().getTime();
+
+ if(quality) setQuality(quality);
+
+ // Initialize bit writer
+ byteout = new Array();
+ bytenew=0;
+ bytepos=7;
+
+ // Add JPEG headers
+ writeWord(0xFFD8); // SOI
+ writeAPP0();
+ writeDQT();
+ writeSOF0(image.width,image.height);
+ writeDHT();
+ writeSOS();
+
+
+ // Encode 8x8 macroblocks
+ var DCY=0;
+ var DCU=0;
+ var DCV=0;
+
+ bytenew=0;
+ bytepos=7;
+
+
+ this.encode.displayName = "_encode_";
+
+ var imageData = image.data;
+ var width = image.width;
+ var height = image.height;
+
+ var quadWidth = width*4;
+ var tripleWidth = width*3;
+
+ var x, y = 0;
+ var r, g, b;
+ var start,p, col,row,pos;
+ while(y < height){
+ x = 0;
+ while(x < quadWidth){
+ start = quadWidth * y + x;
+ p = start;
+ col = -1;
+ row = 0;
+
+ for(pos=0; pos < 64; pos++){
+ row = pos >> 3;// /8
+ col = ( pos & 7 ) * 4; // %8
+ p = start + ( row * quadWidth ) + col;
+
+ if(y+row >= height){ // padding bottom
+ p-= (quadWidth*(y+1+row-height));
+ }
+
+ if(x+col >= quadWidth){ // padding right
+ p-= ((x+col) - quadWidth +4)
+ }
+
+ r = imageData[ p++ ];
+ g = imageData[ p++ ];
+ b = imageData[ p++ ];
+
+
+ /* // calculate YUV values dynamically
+ YDU[pos]=((( 0.29900)*r+( 0.58700)*g+( 0.11400)*b))-128; //-0x80
+ UDU[pos]=(((-0.16874)*r+(-0.33126)*g+( 0.50000)*b));
+ VDU[pos]=((( 0.50000)*r+(-0.41869)*g+(-0.08131)*b));
+ */
+
+ // use lookup table (slightly faster)
+ YDU[pos] = ((RGB_YUV_TABLE[r] + RGB_YUV_TABLE[(g + 256)>>0] + RGB_YUV_TABLE[(b + 512)>>0]) >> 16)-128;
+ UDU[pos] = ((RGB_YUV_TABLE[(r + 768)>>0] + RGB_YUV_TABLE[(g + 1024)>>0] + RGB_YUV_TABLE[(b + 1280)>>0]) >> 16)-128;
+ VDU[pos] = ((RGB_YUV_TABLE[(r + 1280)>>0] + RGB_YUV_TABLE[(g + 1536)>>0] + RGB_YUV_TABLE[(b + 1792)>>0]) >> 16)-128;
+
+ }
+
+ DCY = processDU(YDU, fdtbl_Y, DCY, YDC_HT, YAC_HT);
+ DCU = processDU(UDU, fdtbl_UV, DCU, UVDC_HT, UVAC_HT);
+ DCV = processDU(VDU, fdtbl_UV, DCV, UVDC_HT, UVAC_HT);
+ x+=32;
+ }
+ y+=8;
+ }
+
+
+ ////////////////////////////////////////////////////////////////
+
+ // Do the bit alignment of the EOI marker
+ if ( bytepos >= 0 ) {
+ var fillbits = [];
+ fillbits[1] = bytepos+1;
+ fillbits[0] = (1<<(bytepos+1))-1;
+ writeBits(fillbits);
+ }
+
+ writeWord(0xFFD9); //EOI
+
+ var jpegDataUri = 'data:image/jpeg;base64,' + btoa(byteout.join(''));
+
+ byteout = [];
+
+ // benchmarking
+ // var duration = new Date().getTime() - time_start;
+ // console.log('Encoding time: '+ currentQuality + 'ms');
+ //
+
+ return jpegDataUri
+ }
+
+ function setQuality(quality){
+ if (quality <= 0) {
+ quality = 1;
+ }
+ if (quality > 100) {
+ quality = 100;
+ }
+
+ if(currentQuality == quality) return // don't recalc if unchanged
+
+ var sf = 0;
+ if (quality < 50) {
+ sf = Math.floor(5000 / quality);
+ } else {
+ sf = Math.floor(200 - quality*2);
+ }
+
+ initQuantTables(sf);
+ currentQuality = quality;
+ // console.log('Quality set to: '+quality +'%');
+ }
+
+ function init(){
+ // var time_start = new Date().getTime();
+ if(!quality) quality = 50;
+ // Create tables
+ initCharLookupTable()
+ initHuffmanTbl();
+ initCategoryNumber();
+ initRGBYUVTable();
+
+ setQuality(quality);
+ // var duration = new Date().getTime() - time_start;
+ // console.log('Initialization '+ duration + 'ms');
+ }
+
+ init();
+
+ };
+
+ JPEGEncoder.encode = function( data, quality ) {
+ var encoder = new JPEGEncoder( quality );
+
+ return encoder.encode( data );
+ }
+
+ return JPEGEncoder;
});
-
- /**
- * @fileOverview Transport flash实现
- */
- define('runtime/html5/md5',[
- 'runtime/html5/runtime'
- ], function( FlashRuntime ) {
-
- /*
- * Fastest md5 implementation around (JKM md5)
- * Credits: Joseph Myers
- *
- * @see http://www.myersdaily.org/joseph/javascript/md5-text.html
- * @see http://jsperf.com/md5-shootout/7
- */
-
- /* this function is much faster,
- so if possible we use it. Some IEs
- are the only ones I know of that
- need the idiotic second function,
- generated by an if clause. */
- var add32 = function (a, b) {
- return (a + b) & 0xFFFFFFFF;
- },
-
- cmn = function (q, a, b, x, s, t) {
- a = add32(add32(a, q), add32(x, t));
- return add32((a << s) | (a >>> (32 - s)), b);
- },
-
- ff = function (a, b, c, d, x, s, t) {
- return cmn((b & c) | ((~b) & d), a, b, x, s, t);
- },
-
- gg = function (a, b, c, d, x, s, t) {
- return cmn((b & d) | (c & (~d)), a, b, x, s, t);
- },
-
- hh = function (a, b, c, d, x, s, t) {
- return cmn(b ^ c ^ d, a, b, x, s, t);
- },
-
- ii = function (a, b, c, d, x, s, t) {
- return cmn(c ^ (b | (~d)), a, b, x, s, t);
- },
-
- md5cycle = function (x, k) {
- var a = x[0],
- b = x[1],
- c = x[2],
- d = x[3];
-
- a = ff(a, b, c, d, k[0], 7, -680876936);
- d = ff(d, a, b, c, k[1], 12, -389564586);
- c = ff(c, d, a, b, k[2], 17, 606105819);
- b = ff(b, c, d, a, k[3], 22, -1044525330);
- a = ff(a, b, c, d, k[4], 7, -176418897);
- d = ff(d, a, b, c, k[5], 12, 1200080426);
- c = ff(c, d, a, b, k[6], 17, -1473231341);
- b = ff(b, c, d, a, k[7], 22, -45705983);
- a = ff(a, b, c, d, k[8], 7, 1770035416);
- d = ff(d, a, b, c, k[9], 12, -1958414417);
- c = ff(c, d, a, b, k[10], 17, -42063);
- b = ff(b, c, d, a, k[11], 22, -1990404162);
- a = ff(a, b, c, d, k[12], 7, 1804603682);
- d = ff(d, a, b, c, k[13], 12, -40341101);
- c = ff(c, d, a, b, k[14], 17, -1502002290);
- b = ff(b, c, d, a, k[15], 22, 1236535329);
-
- a = gg(a, b, c, d, k[1], 5, -165796510);
- d = gg(d, a, b, c, k[6], 9, -1069501632);
- c = gg(c, d, a, b, k[11], 14, 643717713);
- b = gg(b, c, d, a, k[0], 20, -373897302);
- a = gg(a, b, c, d, k[5], 5, -701558691);
- d = gg(d, a, b, c, k[10], 9, 38016083);
- c = gg(c, d, a, b, k[15], 14, -660478335);
- b = gg(b, c, d, a, k[4], 20, -405537848);
- a = gg(a, b, c, d, k[9], 5, 568446438);
- d = gg(d, a, b, c, k[14], 9, -1019803690);
- c = gg(c, d, a, b, k[3], 14, -187363961);
- b = gg(b, c, d, a, k[8], 20, 1163531501);
- a = gg(a, b, c, d, k[13], 5, -1444681467);
- d = gg(d, a, b, c, k[2], 9, -51403784);
- c = gg(c, d, a, b, k[7], 14, 1735328473);
- b = gg(b, c, d, a, k[12], 20, -1926607734);
-
- a = hh(a, b, c, d, k[5], 4, -378558);
- d = hh(d, a, b, c, k[8], 11, -2022574463);
- c = hh(c, d, a, b, k[11], 16, 1839030562);
- b = hh(b, c, d, a, k[14], 23, -35309556);
- a = hh(a, b, c, d, k[1], 4, -1530992060);
- d = hh(d, a, b, c, k[4], 11, 1272893353);
- c = hh(c, d, a, b, k[7], 16, -155497632);
- b = hh(b, c, d, a, k[10], 23, -1094730640);
- a = hh(a, b, c, d, k[13], 4, 681279174);
- d = hh(d, a, b, c, k[0], 11, -358537222);
- c = hh(c, d, a, b, k[3], 16, -722521979);
- b = hh(b, c, d, a, k[6], 23, 76029189);
- a = hh(a, b, c, d, k[9], 4, -640364487);
- d = hh(d, a, b, c, k[12], 11, -421815835);
- c = hh(c, d, a, b, k[15], 16, 530742520);
- b = hh(b, c, d, a, k[2], 23, -995338651);
-
- a = ii(a, b, c, d, k[0], 6, -198630844);
- d = ii(d, a, b, c, k[7], 10, 1126891415);
- c = ii(c, d, a, b, k[14], 15, -1416354905);
- b = ii(b, c, d, a, k[5], 21, -57434055);
- a = ii(a, b, c, d, k[12], 6, 1700485571);
- d = ii(d, a, b, c, k[3], 10, -1894986606);
- c = ii(c, d, a, b, k[10], 15, -1051523);
- b = ii(b, c, d, a, k[1], 21, -2054922799);
- a = ii(a, b, c, d, k[8], 6, 1873313359);
- d = ii(d, a, b, c, k[15], 10, -30611744);
- c = ii(c, d, a, b, k[6], 15, -1560198380);
- b = ii(b, c, d, a, k[13], 21, 1309151649);
- a = ii(a, b, c, d, k[4], 6, -145523070);
- d = ii(d, a, b, c, k[11], 10, -1120210379);
- c = ii(c, d, a, b, k[2], 15, 718787259);
- b = ii(b, c, d, a, k[9], 21, -343485551);
-
- x[0] = add32(a, x[0]);
- x[1] = add32(b, x[1]);
- x[2] = add32(c, x[2]);
- x[3] = add32(d, x[3]);
- },
-
- /* there needs to be support for Unicode here,
- * unless we pretend that we can redefine the MD-5
- * algorithm for multi-byte characters (perhaps
- * by adding every four 16-bit characters and
- * shortening the sum to 32 bits). Otherwise
- * I suggest performing MD-5 as if every character
- * was two bytes--e.g., 0040 0025 = @%--but then
- * how will an ordinary MD-5 sum be matched?
- * There is no way to standardize text to something
- * like UTF-8 before transformation; speed cost is
- * utterly prohibitive. The JavaScript standard
- * itself needs to look at this: it should start
- * providing access to strings as preformed UTF-8
- * 8-bit unsigned value arrays.
- */
- md5blk = function (s) {
- var md5blks = [],
- i; /* Andy King said do it this way. */
-
- for (i = 0; i < 64; i += 4) {
- md5blks[i >> 2] = s.charCodeAt(i) + (s.charCodeAt(i + 1) << 8) + (s.charCodeAt(i + 2) << 16) + (s.charCodeAt(i + 3) << 24);
- }
- return md5blks;
- },
-
- md5blk_array = function (a) {
- var md5blks = [],
- i; /* Andy King said do it this way. */
-
- for (i = 0; i < 64; i += 4) {
- md5blks[i >> 2] = a[i] + (a[i + 1] << 8) + (a[i + 2] << 16) + (a[i + 3] << 24);
- }
- return md5blks;
- },
-
- md51 = function (s) {
- var n = s.length,
- state = [1732584193, -271733879, -1732584194, 271733878],
- i,
- length,
- tail,
- tmp,
- lo,
- hi;
-
- for (i = 64; i <= n; i += 64) {
- md5cycle(state, md5blk(s.substring(i - 64, i)));
- }
- s = s.substring(i - 64);
- length = s.length;
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= s.charCodeAt(i) << ((i % 4) << 3);
- }
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Beware that the final length might not fit in 32 bits so we take care of that
- tmp = n * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
-
- md5cycle(state, tail);
- return state;
- },
-
- md51_array = function (a) {
- var n = a.length,
- state = [1732584193, -271733879, -1732584194, 271733878],
- i,
- length,
- tail,
- tmp,
- lo,
- hi;
-
- for (i = 64; i <= n; i += 64) {
- md5cycle(state, md5blk_array(a.subarray(i - 64, i)));
- }
-
- // Not sure if it is a bug, however IE10 will always produce a sub array of length 1
- // containing the last element of the parent array if the sub array specified starts
- // beyond the length of the parent array - weird.
- // https://connect.microsoft.com/IE/feedback/details/771452/typed-array-subarray-issue
- a = (i - 64) < n ? a.subarray(i - 64) : new Uint8Array(0);
-
- length = a.length;
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= a[i] << ((i % 4) << 3);
- }
-
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Beware that the final length might not fit in 32 bits so we take care of that
- tmp = n * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
-
- md5cycle(state, tail);
-
- return state;
- },
-
- hex_chr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'],
-
- rhex = function (n) {
- var s = '',
- j;
- for (j = 0; j < 4; j += 1) {
- s += hex_chr[(n >> (j * 8 + 4)) & 0x0F] + hex_chr[(n >> (j * 8)) & 0x0F];
- }
- return s;
- },
-
- hex = function (x) {
- var i;
- for (i = 0; i < x.length; i += 1) {
- x[i] = rhex(x[i]);
- }
- return x.join('');
- },
-
- md5 = function (s) {
- return hex(md51(s));
- },
-
-
-
- ////////////////////////////////////////////////////////////////////////////
-
- /**
- * SparkMD5 OOP implementation.
- *
- * Use this class to perform an incremental md5, otherwise use the
- * static methods instead.
- */
- SparkMD5 = function () {
- // call reset to init the instance
- this.reset();
- };
-
-
- // In some cases the fast add32 function cannot be used..
- if (md5('hello') !== '5d41402abc4b2a76b9719d911017c592') {
- add32 = function (x, y) {
- var lsw = (x & 0xFFFF) + (y & 0xFFFF),
- msw = (x >> 16) + (y >> 16) + (lsw >> 16);
- return (msw << 16) | (lsw & 0xFFFF);
- };
- }
-
-
- /**
- * Appends a string.
- * A conversion will be applied if an utf8 string is detected.
- *
- * @param {String} str The string to be appended
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.append = function (str) {
- // converts the string to utf8 bytes if necessary
- if (/[\u0080-\uFFFF]/.test(str)) {
- str = unescape(encodeURIComponent(str));
- }
-
- // then append as binary
- this.appendBinary(str);
-
- return this;
- };
-
- /**
- * Appends a binary string.
- *
- * @param {String} contents The binary string to be appended
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.appendBinary = function (contents) {
- this._buff += contents;
- this._length += contents.length;
-
- var length = this._buff.length,
- i;
-
- for (i = 64; i <= length; i += 64) {
- md5cycle(this._state, md5blk(this._buff.substring(i - 64, i)));
- }
-
- this._buff = this._buff.substr(i - 64);
-
- return this;
- };
-
- /**
- * Finishes the incremental computation, reseting the internal state and
- * returning the result.
- * Use the raw parameter to obtain the raw result instead of the hex one.
- *
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.prototype.end = function (raw) {
- var buff = this._buff,
- length = buff.length,
- i,
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- ret;
-
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= buff.charCodeAt(i) << ((i % 4) << 3);
- }
-
- this._finish(tail, length);
- ret = !!raw ? this._state : hex(this._state);
-
- this.reset();
-
- return ret;
- };
-
- /**
- * Finish the final calculation based on the tail.
- *
- * @param {Array} tail The tail (will be modified)
- * @param {Number} length The length of the remaining buffer
- */
- SparkMD5.prototype._finish = function (tail, length) {
- var i = length,
- tmp,
- lo,
- hi;
-
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(this._state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Do the final computation based on the tail and length
- // Beware that the final length may not fit in 32 bits so we take care of that
- tmp = this._length * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
- md5cycle(this._state, tail);
- };
-
- /**
- * Resets the internal state of the computation.
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.reset = function () {
- this._buff = "";
- this._length = 0;
- this._state = [1732584193, -271733879, -1732584194, 271733878];
-
- return this;
- };
-
- /**
- * Releases memory used by the incremental buffer and other aditional
- * resources. If you plan to use the instance again, use reset instead.
- */
- SparkMD5.prototype.destroy = function () {
- delete this._state;
- delete this._buff;
- delete this._length;
- };
-
-
- /**
- * Performs the md5 hash on a string.
- * A conversion will be applied if utf8 string is detected.
- *
- * @param {String} str The string
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.hash = function (str, raw) {
- // converts the string to utf8 bytes if necessary
- if (/[\u0080-\uFFFF]/.test(str)) {
- str = unescape(encodeURIComponent(str));
- }
-
- var hash = md51(str);
-
- return !!raw ? hash : hex(hash);
- };
-
- /**
- * Performs the md5 hash on a binary string.
- *
- * @param {String} content The binary string
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.hashBinary = function (content, raw) {
- var hash = md51(content);
-
- return !!raw ? hash : hex(hash);
- };
-
- /**
- * SparkMD5 OOP implementation for array buffers.
- *
- * Use this class to perform an incremental md5 ONLY for array buffers.
- */
- SparkMD5.ArrayBuffer = function () {
- // call reset to init the instance
- this.reset();
- };
-
- ////////////////////////////////////////////////////////////////////////////
-
- /**
- * Appends an array buffer.
- *
- * @param {ArrayBuffer} arr The array to be appended
- *
- * @return {SparkMD5.ArrayBuffer} The instance itself
- */
- SparkMD5.ArrayBuffer.prototype.append = function (arr) {
- // TODO: we could avoid the concatenation here but the algorithm would be more complex
- // if you find yourself needing extra performance, please make a PR.
- var buff = this._concatArrayBuffer(this._buff, arr),
- length = buff.length,
- i;
-
- this._length += arr.byteLength;
-
- for (i = 64; i <= length; i += 64) {
- md5cycle(this._state, md5blk_array(buff.subarray(i - 64, i)));
- }
-
- // Avoids IE10 weirdness (documented above)
- this._buff = (i - 64) < length ? buff.subarray(i - 64) : new Uint8Array(0);
-
- return this;
- };
-
- /**
- * Finishes the incremental computation, reseting the internal state and
- * returning the result.
- * Use the raw parameter to obtain the raw result instead of the hex one.
- *
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.ArrayBuffer.prototype.end = function (raw) {
- var buff = this._buff,
- length = buff.length,
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- i,
- ret;
-
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= buff[i] << ((i % 4) << 3);
- }
-
- this._finish(tail, length);
- ret = !!raw ? this._state : hex(this._state);
-
- this.reset();
-
- return ret;
- };
-
- SparkMD5.ArrayBuffer.prototype._finish = SparkMD5.prototype._finish;
-
- /**
- * Resets the internal state of the computation.
- *
- * @return {SparkMD5.ArrayBuffer} The instance itself
- */
- SparkMD5.ArrayBuffer.prototype.reset = function () {
- this._buff = new Uint8Array(0);
- this._length = 0;
- this._state = [1732584193, -271733879, -1732584194, 271733878];
-
- return this;
- };
-
- /**
- * Releases memory used by the incremental buffer and other aditional
- * resources. If you plan to use the instance again, use reset instead.
- */
- SparkMD5.ArrayBuffer.prototype.destroy = SparkMD5.prototype.destroy;
-
- /**
- * Concats two array buffers, returning a new one.
- *
- * @param {ArrayBuffer} first The first array buffer
- * @param {ArrayBuffer} second The second array buffer
- *
- * @return {ArrayBuffer} The new array buffer
- */
- SparkMD5.ArrayBuffer.prototype._concatArrayBuffer = function (first, second) {
- var firstLength = first.length,
- result = new Uint8Array(firstLength + second.byteLength);
-
- result.set(first);
- result.set(new Uint8Array(second), firstLength);
-
- return result;
- };
-
- /**
- * Performs the md5 hash on an array buffer.
- *
- * @param {ArrayBuffer} arr The array buffer
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.ArrayBuffer.hash = function (arr, raw) {
- var hash = md51_array(new Uint8Array(arr));
-
- return !!raw ? hash : hex(hash);
- };
-
- return FlashRuntime.register( 'Md5', {
- init: function() {
- // do nothing.
- },
-
- loadFromBlob: function( file ) {
- var blob = file.getSource(),
- chunkSize = 2 * 1024 * 1024,
- chunks = Math.ceil( blob.size / chunkSize ),
- chunk = 0,
- owner = this.owner,
- spark = new SparkMD5.ArrayBuffer(),
- me = this,
- blobSlice = blob.mozSlice || blob.webkitSlice || blob.slice,
- loadNext, fr;
-
- fr = new FileReader();
-
- loadNext = function() {
- var start, end;
-
- start = chunk * chunkSize;
- end = Math.min( start + chunkSize, blob.size );
-
- fr.onload = function( e ) {
- spark.append( e.target.result );
- owner.trigger( 'progress', {
- total: file.size,
- loaded: end
- });
- };
-
- fr.onloadend = function() {
- fr.onloadend = fr.onload = null;
-
- if ( ++chunk < chunks ) {
- setTimeout( loadNext, 1 );
- } else {
- setTimeout(function(){
- owner.trigger('load');
- me.result = spark.end();
- loadNext = file = blob = spark = null;
- owner.trigger('complete');
- }, 50 );
- }
- };
-
- fr.readAsArrayBuffer( blobSlice.call( blob, start, end ) );
- };
-
- loadNext();
- },
-
- getResult: function() {
- return this.result;
- }
- });
+ /**
+ * @fileOverview Fix android canvas.toDataUrl bug.
+ */
+ define('runtime/html5/androidpatch',[
+ 'runtime/html5/util',
+ 'runtime/html5/jpegencoder',
+ 'base'
+ ], function( Util, encoder, Base ) {
+ var origin = Util.canvasToDataUrl,
+ supportJpeg;
+
+ Util.canvasToDataUrl = function( canvas, type, quality ) {
+ var ctx, w, h, fragement, parts;
+
+ // 非android手机直接跳过。
+ if ( !Base.os.android ) {
+ return origin.apply( null, arguments );
+ }
+
+ // 检测是否canvas支持jpeg导出,根据数据格式来判断。
+ // JPEG 前两位分别是:255, 216
+ if ( type === 'image/jpeg' && typeof supportJpeg === 'undefined' ) {
+ fragement = origin.apply( null, arguments );
+
+ parts = fragement.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ fragement = atob( parts[ 1 ] );
+ } else {
+ fragement = decodeURIComponent( parts[ 1 ] );
+ }
+
+ fragement = fragement.substring( 0, 2 );
+
+ supportJpeg = fragement.charCodeAt( 0 ) === 255 &&
+ fragement.charCodeAt( 1 ) === 216;
+ }
+
+ // 只有在android环境下才修复
+ if ( type === 'image/jpeg' && !supportJpeg ) {
+ w = canvas.width;
+ h = canvas.height;
+ ctx = canvas.getContext('2d');
+
+ return encoder.encode( ctx.getImageData( 0, 0, w, h ), quality );
+ }
+
+ return origin.apply( null, arguments );
+ };
});
- /**
- * @fileOverview FlashRuntime
- */
- define('runtime/flash/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var $ = Base.$,
- type = 'flash',
- components = {};
-
-
- function getFlashVersion() {
- var version;
-
- try {
- version = navigator.plugins[ 'Shockwave Flash' ];
- version = version.description;
- } catch ( ex ) {
- try {
- version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash')
- .GetVariable('$version');
- } catch ( ex2 ) {
- version = '0.0';
- }
- }
- version = version.match( /\d+/g );
- return parseFloat( version[ 0 ] + '.' + version[ 1 ], 10 );
- }
-
- function FlashRuntime() {
- var pool = {},
- clients = {},
- destroy = this.destroy,
- me = this,
- jsreciver = Base.guid('webuploader_');
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/ ) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- clients[ uid ] = client;
-
- if ( components[ comp ] ) {
- if ( !pool[ uid ] ) {
- pool[ uid ] = new components[ comp ]( client, me );
- }
-
- instance = pool[ uid ];
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
-
- return me.flashExec.apply( client, arguments );
- };
-
- function handler( evt, obj ) {
- var type = evt.type || evt,
- parts, uid;
-
- parts = type.split('::');
- uid = parts[ 0 ];
- type = parts[ 1 ];
-
- // console.log.apply( console, arguments );
-
- if ( type === 'Ready' && uid === me.uid ) {
- me.trigger('ready');
- } else if ( clients[ uid ] ) {
- clients[ uid ].trigger( type.toLowerCase(), evt, obj );
- }
-
- // Base.log( evt, obj );
- }
-
- // flash的接受器。
- window[ jsreciver ] = function() {
- var args = arguments;
-
- // 为了能捕获得到。
- setTimeout(function() {
- handler.apply( null, args );
- }, 1 );
- };
-
- this.jsreciver = jsreciver;
-
- this.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
-
- this.flashExec = function( comp, fn ) {
- var flash = me.getFlash(),
- args = Base.slice( arguments, 2 );
-
- return flash.exec( this.uid, comp, fn, args );
- };
-
- // @todo
- }
-
- Base.inherits( Runtime, {
- constructor: FlashRuntime,
-
- init: function() {
- var container = this.getContainer(),
- opts = this.options,
- html;
-
- // if not the minimal height, shims are not initialized
- // in older browsers (e.g FF3.6, IE6,7,8, Safari 4.0,5.0, etc)
- container.css({
- position: 'absolute',
- top: '-8px',
- left: '-8px',
- width: '9px',
- height: '9px',
- overflow: 'hidden'
- });
-
- // insert flash object
- html = '';
-
- container.html( html );
- },
-
- getFlash: function() {
- if ( this._flash ) {
- return this._flash;
- }
-
- this._flash = $( '#' + this.uid ).get( 0 );
- return this._flash;
- }
-
- });
-
- FlashRuntime.register = function( name, component ) {
- component = components[ name ] = Base.inherits( CompBase, $.extend({
-
- // @todo fix this later
- flashExec: function() {
- var owner = this.owner,
- runtime = this.getRuntime();
-
- return runtime.flashExec.apply( owner, arguments );
- }
- }, component ) );
-
- return component;
- };
+ /**
+ * @fileOverview Image
+ */
+ define('runtime/html5/image',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'runtime/html5/util'
+ ], function( Base, Html5Runtime, Util ) {
+
+ var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
+
+ return Html5Runtime.register( 'Image', {
+
+ // flag: 标记是否被修改过。
+ modified: false,
+
+ init: function() {
+ var me = this,
+ img = new Image();
+
+ img.onload = function() {
+
+ me._info = {
+ type: me.type,
+ width: this.width,
+ height: this.height
+ };
+
+ //debugger;
+
+ // 读取meta信息。
+ if ( !me._metas && 'image/jpeg' === me.type ) {
+ Util.parseMeta( me._blob, function( error, ret ) {
+ me._metas = ret;
+ me.owner.trigger('load');
+ });
+ } else {
+ me.owner.trigger('load');
+ }
+ };
+
+ img.onerror = function() {
+ me.owner.trigger('error');
+ };
+
+ me._img = img;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ img = me._img;
+
+ me._blob = blob;
+ me.type = blob.type;
+ img.src = Util.createObjectURL( blob.getSource() );
+ me.owner.once( 'load', function() {
+ Util.revokeObjectURL( img.src );
+ });
+ },
+
+ resize: function( width, height ) {
+ var canvas = this._canvas ||
+ (this._canvas = document.createElement('canvas'));
+
+ this._resize( this._img, canvas, width, height );
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'resize' );
+ },
+
+ crop: function( x, y, w, h, s ) {
+ var cvs = this._canvas ||
+ (this._canvas = document.createElement('canvas')),
+ opts = this.options,
+ img = this._img,
+ iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ orientation = this.getOrientation();
+
+ s = s || 1;
+
+ // todo 解决 orientation 的问题。
+ // values that require 90 degree rotation
+ // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // switch ( orientation ) {
+ // case 6:
+ // tmp = x;
+ // x = y;
+ // y = iw * s - tmp - w;
+ // console.log(ih * s, tmp, w)
+ // break;
+ // }
+
+ // (w ^= h, h ^= w, w ^= h);
+ // }
+
+ cvs.width = w;
+ cvs.height = h;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+ this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
+
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'crop' );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this._blob,
+ opts = this.options,
+ canvas;
+
+ type = type || this.type;
+
+ // blob需要重新生成。
+ if ( this.modified || this.type !== type ) {
+ canvas = this._canvas;
+
+ if ( type === 'image/jpeg' ) {
+
+ blob = Util.canvasToDataUrl( canvas, type, opts.quality );
+
+ if ( opts.preserveHeaders && this._metas &&
+ this._metas.imageHead ) {
+
+ blob = Util.dataURL2ArrayBuffer( blob );
+ blob = Util.updateImageHead( blob,
+ this._metas.imageHead );
+ blob = Util.arrayBufferToBlob( blob, type );
+ return blob;
+ }
+ } else {
+ blob = Util.canvasToDataUrl( canvas, type );
+ }
+
+ blob = Util.dataURL2Blob( blob );
+ }
+
+ return blob;
+ },
+
+ getAsDataUrl: function( type ) {
+ var opts = this.options;
+
+ type = type || this.type;
+
+ if ( type === 'image/jpeg' ) {
+ return Util.canvasToDataUrl( this._canvas, type, opts.quality );
+ } else {
+ return this._canvas.toDataURL( type );
+ }
+ },
+
+ getOrientation: function() {
+ return this._metas && this._metas.exif &&
+ this._metas.exif.get('Orientation') || 1;
+ },
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._metas = val;
+ return this;
+ }
+
+ // getter
+ return this._metas;
+ },
+
+ destroy: function() {
+ var canvas = this._canvas;
+ this._img.onload = null;
+
+ if ( canvas ) {
+ canvas.getContext('2d')
+ .clearRect( 0, 0, canvas.width, canvas.height );
+ canvas.width = canvas.height = 0;
+ this._canvas = null;
+ }
+
+ // 释放内存。非常重要,否则释放不了image的内存。
+ this._img.src = BLANK;
+ this._img = this._blob = null;
+ },
+
+ _resize: function( img, cvs, width, height ) {
+ var opts = this.options,
+ naturalWidth = img.width,
+ naturalHeight = img.height,
+ orientation = this.getOrientation(),
+ scale, w, h, x, y;
+
+ // values that require 90 degree rotation
+ if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // 交换width, height的值。
+ width ^= height;
+ height ^= width;
+ width ^= height;
+ }
+
+ scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
+ height / naturalHeight );
+
+ // 不允许放大。
+ opts.allowMagnify || (scale = Math.min( 1, scale ));
+
+ w = naturalWidth * scale;
+ h = naturalHeight * scale;
+
+ if ( opts.crop ) {
+ cvs.width = width;
+ cvs.height = height;
+ } else {
+ cvs.width = w;
+ cvs.height = h;
+ }
+
+ x = (cvs.width - w) / 2;
+ y = (cvs.height - h) / 2;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+
+ this._renderImageToCanvas( cvs, img, x, y, w, h );
+ },
+
+ _rotate2Orientaion: function( canvas, orientation ) {
+ var width = canvas.width,
+ height = canvas.height,
+ ctx = canvas.getContext('2d');
+
+ switch ( orientation ) {
+ case 5:
+ case 6:
+ case 7:
+ case 8:
+ canvas.width = height;
+ canvas.height = width;
+ break;
+ }
+
+ switch ( orientation ) {
+ case 2: // horizontal flip
+ ctx.translate( width, 0 );
+ ctx.scale( -1, 1 );
+ break;
+
+ case 3: // 180 rotate left
+ ctx.translate( width, height );
+ ctx.rotate( Math.PI );
+ break;
+
+ case 4: // vertical flip
+ ctx.translate( 0, height );
+ ctx.scale( 1, -1 );
+ break;
+
+ case 5: // vertical flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.scale( 1, -1 );
+ break;
+
+ case 6: // 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( 0, -height );
+ break;
+
+ case 7: // horizontal flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( width, -height );
+ ctx.scale( -1, 1 );
+ break;
+
+ case 8: // 90 rotate left
+ ctx.rotate( -0.5 * Math.PI );
+ ctx.translate( -width, 0 );
+ break;
+ }
+ },
+
+ // https://github.com/stomita/ios-imagefile-megapixel/
+ // blob/master/src/megapix-image.js
+ _renderImageToCanvas: (function() {
+
+ // 如果不是ios, 不需要这么复杂!
+ if ( !Base.os.ios ) {
+ return function( canvas ) {
+ var args = Base.slice( arguments, 1 ),
+ ctx = canvas.getContext('2d');
+
+ ctx.drawImage.apply( ctx, args );
+ };
+ }
+
+ /**
+ * Detecting vertical squash in loaded image.
+ * Fixes a bug which squash image vertically while drawing into
+ * canvas for some images.
+ */
+ function detectVerticalSquash( img, iw, ih ) {
+ var canvas = document.createElement('canvas'),
+ ctx = canvas.getContext('2d'),
+ sy = 0,
+ ey = ih,
+ py = ih,
+ data, alpha, ratio;
+
+
+ canvas.width = 1;
+ canvas.height = ih;
+ ctx.drawImage( img, 0, 0 );
+ data = ctx.getImageData( 0, 0, 1, ih ).data;
+
+ // search image edge pixel position in case
+ // it is squashed vertically.
+ while ( py > sy ) {
+ alpha = data[ (py - 1) * 4 + 3 ];
+
+ if ( alpha === 0 ) {
+ ey = py;
+ } else {
+ sy = py;
+ }
+
+ py = (ey + sy) >> 1;
+ }
+
+ ratio = (py / ih);
+ return (ratio === 0) ? 1 : ratio;
+ }
+
+ // fix ie7 bug
+ // http://stackoverflow.com/questions/11929099/
+ // html5-canvas-drawimage-ratio-bug-ios
+ if ( Base.os.ios >= 7 ) {
+ return function( canvas, img, x, y, w, h ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ vertSquashRatio = detectVerticalSquash( img, iw, ih );
+
+ return canvas.getContext('2d').drawImage( img, 0, 0,
+ iw * vertSquashRatio, ih * vertSquashRatio,
+ x, y, w, h );
+ };
+ }
+
+ /**
+ * Detect subsampling in loaded image.
+ * In iOS, larger images than 2M pixels may be
+ * subsampled in rendering.
+ */
+ function detectSubsampling( img ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ canvas, ctx;
+
+ // subsampling may happen overmegapixel image
+ if ( iw * ih > 1024 * 1024 ) {
+ canvas = document.createElement('canvas');
+ canvas.width = canvas.height = 1;
+ ctx = canvas.getContext('2d');
+ ctx.drawImage( img, -iw + 1, 0 );
+
+ // subsampled image becomes half smaller in rendering size.
+ // check alpha channel value to confirm image is covering
+ // edge pixel or not. if alpha value is 0
+ // image is not covering, hence subsampled.
+ return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
+ } else {
+ return false;
+ }
+ }
+
+
+ return function( canvas, img, x, y, width, height ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ ctx = canvas.getContext('2d'),
+ subsampled = detectSubsampling( img ),
+ doSquash = this.type === 'image/jpeg',
+ d = 1024,
+ sy = 0,
+ dy = 0,
+ tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
+
+ if ( subsampled ) {
+ iw /= 2;
+ ih /= 2;
+ }
+
+ ctx.save();
+ tmpCanvas = document.createElement('canvas');
+ tmpCanvas.width = tmpCanvas.height = d;
+
+ tmpCtx = tmpCanvas.getContext('2d');
+ vertSquashRatio = doSquash ?
+ detectVerticalSquash( img, iw, ih ) : 1;
+
+ dw = Math.ceil( d * width / iw );
+ dh = Math.ceil( d * height / ih / vertSquashRatio );
+
+ while ( sy < ih ) {
+ sx = 0;
+ dx = 0;
+ while ( sx < iw ) {
+ tmpCtx.clearRect( 0, 0, d, d );
+ tmpCtx.drawImage( img, -sx, -sy );
+ ctx.drawImage( tmpCanvas, 0, 0, d, d,
+ x + dx, y + dy, dw, dh );
+ sx += d;
+ dx += dw;
+ }
+ sy += d;
+ dy += dh;
+ }
+ ctx.restore();
+ tmpCanvas = tmpCtx = null;
+ };
+ })()
+ });
+ });
- if ( getFlashVersion() >= 11.4 ) {
- Runtime.addRuntime( type, FlashRuntime );
- }
+ /**
+ * @fileOverview Transport
+ * @todo 支持chunked传输,优势:
+ * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
+ * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
+ */
+ define('runtime/html5/transport',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var noop = Base.noop,
+ $ = Base.$;
+
+ return Html5Runtime.register( 'Transport', {
+ init: function() {
+ this._status = 0;
+ this._response = null;
+ },
+
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ formData, binary, fr;
+
+ if ( opts.sendAsBinary ) {
+ server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData )) : '';
+
+ binary = blob.getSource();
+ } else {
+ formData = new FormData();
+ $.each( owner._formData, function( k, v ) {
+ formData.append( k, v );
+ });
+
+ formData.append( opts.fileVal, blob.getSource(),
+ opts.filename || owner._formData.name || '' );
+ }
+
+ if ( opts.withCredentials && 'withCredentials' in xhr ) {
+ xhr.open( opts.method, server, true );
+ xhr.withCredentials = true;
+ } else {
+ xhr.open( opts.method, server );
+ }
+
+ this._setRequestHeader( xhr, opts.headers );
+
+ if ( binary ) {
+ // 强制设置成 content-type 为文件流。
+ xhr.overrideMimeType &&
+ xhr.overrideMimeType('application/octet-stream');
+
+ // android直接发送blob会导致服务端接收到的是空文件。
+ // bug详情。
+ // https://code.google.com/p/android/issues/detail?id=39882
+ // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
+ if ( Base.os.android ) {
+ fr = new FileReader();
+
+ fr.onload = function() {
+ xhr.send( this.result );
+ fr = fr.onload = null;
+ };
+
+ fr.readAsArrayBuffer( binary );
+ } else {
+ xhr.send( binary );
+ }
+ } else {
+ xhr.send( formData );
+ }
+ },
+
+ getResponse: function() {
+ return this._response;
+ },
+
+ getResponseAsJson: function() {
+ return this._parseJson( this._response );
+ },
+
+ getResponseHeaders: function() {
+ return this._headers;
+ },
+
+ getStatus: function() {
+ return this._status;
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ xhr.abort();
+
+ this._xhr = xhr = null;
+ }
+ },
+
+ destroy: function() {
+ this.abort();
+ },
+
+ _parseHeader: function(raw) {
+ var ret = {};
+
+ raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
+ ret[key.trim()] = value.trim();
+ });
+
+ return ret;
+ },
+
+ _initAjax: function() {
+ var me = this,
+ xhr = new XMLHttpRequest(),
+ opts = this.options;
+
+ if ( opts.withCredentials && !('withCredentials' in xhr) &&
+ typeof XDomainRequest !== 'undefined' ) {
+ xhr = new XDomainRequest();
+ }
+
+ xhr.upload.onprogress = function( e ) {
+ var percentage = 0;
+
+ if ( e.lengthComputable ) {
+ percentage = e.loaded / e.total;
+ }
+
+ return me.trigger( 'progress', percentage );
+ };
+
+ xhr.onreadystatechange = function() {
+
+ if ( xhr.readyState !== 4 ) {
+ return;
+ }
+
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ me._xhr = null;
+ me._status = xhr.status;
+
+ var separator = '|', // 分隔符
+ // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
+ status = separator + xhr.status +
+ separator + xhr.statusText;
+
+ if ( xhr.status >= 200 && xhr.status < 300 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger('load');
+ } else if ( xhr.status >= 500 && xhr.status < 600 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger( 'error', 'server' + status );
+ }
+
+
+ return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
+ };
+
+ me._xhr = xhr;
+ return xhr;
+ },
+
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.setRequestHeader( key, val );
+ });
+ },
+
+ _parseJson: function( str ) {
+ var json;
+
+ try {
+ json = JSON.parse( str );
+ } catch ( ex ) {
+ json = {};
+ }
+
+ return json;
+ }
+ });
+ });
- return FlashRuntime;
+ /**
+ * @fileOverview Transport flash实现
+ */
+ define('runtime/html5/md5',[
+ 'runtime/html5/runtime'
+ ], function( FlashRuntime ) {
+
+ /*
+ * Fastest md5 implementation around (JKM md5)
+ * Credits: Joseph Myers
+ *
+ * @see http://www.myersdaily.org/joseph/javascript/md5-text.html
+ * @see http://jsperf.com/md5-shootout/7
+ */
+
+ /* this function is much faster,
+ so if possible we use it. Some IEs
+ are the only ones I know of that
+ need the idiotic second function,
+ generated by an if clause. */
+ var add32 = function (a, b) {
+ return (a + b) & 0xFFFFFFFF;
+ },
+
+ cmn = function (q, a, b, x, s, t) {
+ a = add32(add32(a, q), add32(x, t));
+ return add32((a << s) | (a >>> (32 - s)), b);
+ },
+
+ ff = function (a, b, c, d, x, s, t) {
+ return cmn((b & c) | ((~b) & d), a, b, x, s, t);
+ },
+
+ gg = function (a, b, c, d, x, s, t) {
+ return cmn((b & d) | (c & (~d)), a, b, x, s, t);
+ },
+
+ hh = function (a, b, c, d, x, s, t) {
+ return cmn(b ^ c ^ d, a, b, x, s, t);
+ },
+
+ ii = function (a, b, c, d, x, s, t) {
+ return cmn(c ^ (b | (~d)), a, b, x, s, t);
+ },
+
+ md5cycle = function (x, k) {
+ var a = x[0],
+ b = x[1],
+ c = x[2],
+ d = x[3];
+
+ a = ff(a, b, c, d, k[0], 7, -680876936);
+ d = ff(d, a, b, c, k[1], 12, -389564586);
+ c = ff(c, d, a, b, k[2], 17, 606105819);
+ b = ff(b, c, d, a, k[3], 22, -1044525330);
+ a = ff(a, b, c, d, k[4], 7, -176418897);
+ d = ff(d, a, b, c, k[5], 12, 1200080426);
+ c = ff(c, d, a, b, k[6], 17, -1473231341);
+ b = ff(b, c, d, a, k[7], 22, -45705983);
+ a = ff(a, b, c, d, k[8], 7, 1770035416);
+ d = ff(d, a, b, c, k[9], 12, -1958414417);
+ c = ff(c, d, a, b, k[10], 17, -42063);
+ b = ff(b, c, d, a, k[11], 22, -1990404162);
+ a = ff(a, b, c, d, k[12], 7, 1804603682);
+ d = ff(d, a, b, c, k[13], 12, -40341101);
+ c = ff(c, d, a, b, k[14], 17, -1502002290);
+ b = ff(b, c, d, a, k[15], 22, 1236535329);
+
+ a = gg(a, b, c, d, k[1], 5, -165796510);
+ d = gg(d, a, b, c, k[6], 9, -1069501632);
+ c = gg(c, d, a, b, k[11], 14, 643717713);
+ b = gg(b, c, d, a, k[0], 20, -373897302);
+ a = gg(a, b, c, d, k[5], 5, -701558691);
+ d = gg(d, a, b, c, k[10], 9, 38016083);
+ c = gg(c, d, a, b, k[15], 14, -660478335);
+ b = gg(b, c, d, a, k[4], 20, -405537848);
+ a = gg(a, b, c, d, k[9], 5, 568446438);
+ d = gg(d, a, b, c, k[14], 9, -1019803690);
+ c = gg(c, d, a, b, k[3], 14, -187363961);
+ b = gg(b, c, d, a, k[8], 20, 1163531501);
+ a = gg(a, b, c, d, k[13], 5, -1444681467);
+ d = gg(d, a, b, c, k[2], 9, -51403784);
+ c = gg(c, d, a, b, k[7], 14, 1735328473);
+ b = gg(b, c, d, a, k[12], 20, -1926607734);
+
+ a = hh(a, b, c, d, k[5], 4, -378558);
+ d = hh(d, a, b, c, k[8], 11, -2022574463);
+ c = hh(c, d, a, b, k[11], 16, 1839030562);
+ b = hh(b, c, d, a, k[14], 23, -35309556);
+ a = hh(a, b, c, d, k[1], 4, -1530992060);
+ d = hh(d, a, b, c, k[4], 11, 1272893353);
+ c = hh(c, d, a, b, k[7], 16, -155497632);
+ b = hh(b, c, d, a, k[10], 23, -1094730640);
+ a = hh(a, b, c, d, k[13], 4, 681279174);
+ d = hh(d, a, b, c, k[0], 11, -358537222);
+ c = hh(c, d, a, b, k[3], 16, -722521979);
+ b = hh(b, c, d, a, k[6], 23, 76029189);
+ a = hh(a, b, c, d, k[9], 4, -640364487);
+ d = hh(d, a, b, c, k[12], 11, -421815835);
+ c = hh(c, d, a, b, k[15], 16, 530742520);
+ b = hh(b, c, d, a, k[2], 23, -995338651);
+
+ a = ii(a, b, c, d, k[0], 6, -198630844);
+ d = ii(d, a, b, c, k[7], 10, 1126891415);
+ c = ii(c, d, a, b, k[14], 15, -1416354905);
+ b = ii(b, c, d, a, k[5], 21, -57434055);
+ a = ii(a, b, c, d, k[12], 6, 1700485571);
+ d = ii(d, a, b, c, k[3], 10, -1894986606);
+ c = ii(c, d, a, b, k[10], 15, -1051523);
+ b = ii(b, c, d, a, k[1], 21, -2054922799);
+ a = ii(a, b, c, d, k[8], 6, 1873313359);
+ d = ii(d, a, b, c, k[15], 10, -30611744);
+ c = ii(c, d, a, b, k[6], 15, -1560198380);
+ b = ii(b, c, d, a, k[13], 21, 1309151649);
+ a = ii(a, b, c, d, k[4], 6, -145523070);
+ d = ii(d, a, b, c, k[11], 10, -1120210379);
+ c = ii(c, d, a, b, k[2], 15, 718787259);
+ b = ii(b, c, d, a, k[9], 21, -343485551);
+
+ x[0] = add32(a, x[0]);
+ x[1] = add32(b, x[1]);
+ x[2] = add32(c, x[2]);
+ x[3] = add32(d, x[3]);
+ },
+
+ /* there needs to be support for Unicode here,
+ * unless we pretend that we can redefine the MD-5
+ * algorithm for multi-byte characters (perhaps
+ * by adding every four 16-bit characters and
+ * shortening the sum to 32 bits). Otherwise
+ * I suggest performing MD-5 as if every character
+ * was two bytes--e.g., 0040 0025 = @%--but then
+ * how will an ordinary MD-5 sum be matched?
+ * There is no way to standardize text to something
+ * like UTF-8 before transformation; speed cost is
+ * utterly prohibitive. The JavaScript standard
+ * itself needs to look at this: it should start
+ * providing access to strings as preformed UTF-8
+ * 8-bit unsigned value arrays.
+ */
+ md5blk = function (s) {
+ var md5blks = [],
+ i; /* Andy King said do it this way. */
+
+ for (i = 0; i < 64; i += 4) {
+ md5blks[i >> 2] = s.charCodeAt(i) + (s.charCodeAt(i + 1) << 8) + (s.charCodeAt(i + 2) << 16) + (s.charCodeAt(i + 3) << 24);
+ }
+ return md5blks;
+ },
+
+ md5blk_array = function (a) {
+ var md5blks = [],
+ i; /* Andy King said do it this way. */
+
+ for (i = 0; i < 64; i += 4) {
+ md5blks[i >> 2] = a[i] + (a[i + 1] << 8) + (a[i + 2] << 16) + (a[i + 3] << 24);
+ }
+ return md5blks;
+ },
+
+ md51 = function (s) {
+ var n = s.length,
+ state = [1732584193, -271733879, -1732584194, 271733878],
+ i,
+ length,
+ tail,
+ tmp,
+ lo,
+ hi;
+
+ for (i = 64; i <= n; i += 64) {
+ md5cycle(state, md5blk(s.substring(i - 64, i)));
+ }
+ s = s.substring(i - 64);
+ length = s.length;
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= s.charCodeAt(i) << ((i % 4) << 3);
+ }
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Beware that the final length might not fit in 32 bits so we take care of that
+ tmp = n * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+
+ md5cycle(state, tail);
+ return state;
+ },
+
+ md51_array = function (a) {
+ var n = a.length,
+ state = [1732584193, -271733879, -1732584194, 271733878],
+ i,
+ length,
+ tail,
+ tmp,
+ lo,
+ hi;
+
+ for (i = 64; i <= n; i += 64) {
+ md5cycle(state, md5blk_array(a.subarray(i - 64, i)));
+ }
+
+ // Not sure if it is a bug, however IE10 will always produce a sub array of length 1
+ // containing the last element of the parent array if the sub array specified starts
+ // beyond the length of the parent array - weird.
+ // https://connect.microsoft.com/IE/feedback/details/771452/typed-array-subarray-issue
+ a = (i - 64) < n ? a.subarray(i - 64) : new Uint8Array(0);
+
+ length = a.length;
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= a[i] << ((i % 4) << 3);
+ }
+
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Beware that the final length might not fit in 32 bits so we take care of that
+ tmp = n * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+
+ md5cycle(state, tail);
+
+ return state;
+ },
+
+ hex_chr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'],
+
+ rhex = function (n) {
+ var s = '',
+ j;
+ for (j = 0; j < 4; j += 1) {
+ s += hex_chr[(n >> (j * 8 + 4)) & 0x0F] + hex_chr[(n >> (j * 8)) & 0x0F];
+ }
+ return s;
+ },
+
+ hex = function (x) {
+ var i;
+ for (i = 0; i < x.length; i += 1) {
+ x[i] = rhex(x[i]);
+ }
+ return x.join('');
+ },
+
+ md5 = function (s) {
+ return hex(md51(s));
+ },
+
+
+
+ ////////////////////////////////////////////////////////////////////////////
+
+ /**
+ * SparkMD5 OOP implementation.
+ *
+ * Use this class to perform an incremental md5, otherwise use the
+ * static methods instead.
+ */
+ SparkMD5 = function () {
+ // call reset to init the instance
+ this.reset();
+ };
+
+
+ // In some cases the fast add32 function cannot be used..
+ if (md5('hello') !== '5d41402abc4b2a76b9719d911017c592') {
+ add32 = function (x, y) {
+ var lsw = (x & 0xFFFF) + (y & 0xFFFF),
+ msw = (x >> 16) + (y >> 16) + (lsw >> 16);
+ return (msw << 16) | (lsw & 0xFFFF);
+ };
+ }
+
+
+ /**
+ * Appends a string.
+ * A conversion will be applied if an utf8 string is detected.
+ *
+ * @param {String} str The string to be appended
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.append = function (str) {
+ // converts the string to utf8 bytes if necessary
+ if (/[\u0080-\uFFFF]/.test(str)) {
+ str = unescape(encodeURIComponent(str));
+ }
+
+ // then append as binary
+ this.appendBinary(str);
+
+ return this;
+ };
+
+ /**
+ * Appends a binary string.
+ *
+ * @param {String} contents The binary string to be appended
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.appendBinary = function (contents) {
+ this._buff += contents;
+ this._length += contents.length;
+
+ var length = this._buff.length,
+ i;
+
+ for (i = 64; i <= length; i += 64) {
+ md5cycle(this._state, md5blk(this._buff.substring(i - 64, i)));
+ }
+
+ this._buff = this._buff.substr(i - 64);
+
+ return this;
+ };
+
+ /**
+ * Finishes the incremental computation, reseting the internal state and
+ * returning the result.
+ * Use the raw parameter to obtain the raw result instead of the hex one.
+ *
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.prototype.end = function (raw) {
+ var buff = this._buff,
+ length = buff.length,
+ i,
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
+ ret;
+
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= buff.charCodeAt(i) << ((i % 4) << 3);
+ }
+
+ this._finish(tail, length);
+ ret = !!raw ? this._state : hex(this._state);
+
+ this.reset();
+
+ return ret;
+ };
+
+ /**
+ * Finish the final calculation based on the tail.
+ *
+ * @param {Array} tail The tail (will be modified)
+ * @param {Number} length The length of the remaining buffer
+ */
+ SparkMD5.prototype._finish = function (tail, length) {
+ var i = length,
+ tmp,
+ lo,
+ hi;
+
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(this._state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Do the final computation based on the tail and length
+ // Beware that the final length may not fit in 32 bits so we take care of that
+ tmp = this._length * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+ md5cycle(this._state, tail);
+ };
+
+ /**
+ * Resets the internal state of the computation.
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.reset = function () {
+ this._buff = "";
+ this._length = 0;
+ this._state = [1732584193, -271733879, -1732584194, 271733878];
+
+ return this;
+ };
+
+ /**
+ * Releases memory used by the incremental buffer and other aditional
+ * resources. If you plan to use the instance again, use reset instead.
+ */
+ SparkMD5.prototype.destroy = function () {
+ delete this._state;
+ delete this._buff;
+ delete this._length;
+ };
+
+
+ /**
+ * Performs the md5 hash on a string.
+ * A conversion will be applied if utf8 string is detected.
+ *
+ * @param {String} str The string
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.hash = function (str, raw) {
+ // converts the string to utf8 bytes if necessary
+ if (/[\u0080-\uFFFF]/.test(str)) {
+ str = unescape(encodeURIComponent(str));
+ }
+
+ var hash = md51(str);
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ /**
+ * Performs the md5 hash on a binary string.
+ *
+ * @param {String} content The binary string
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.hashBinary = function (content, raw) {
+ var hash = md51(content);
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ /**
+ * SparkMD5 OOP implementation for array buffers.
+ *
+ * Use this class to perform an incremental md5 ONLY for array buffers.
+ */
+ SparkMD5.ArrayBuffer = function () {
+ // call reset to init the instance
+ this.reset();
+ };
+
+ ////////////////////////////////////////////////////////////////////////////
+
+ /**
+ * Appends an array buffer.
+ *
+ * @param {ArrayBuffer} arr The array to be appended
+ *
+ * @return {SparkMD5.ArrayBuffer} The instance itself
+ */
+ SparkMD5.ArrayBuffer.prototype.append = function (arr) {
+ // TODO: we could avoid the concatenation here but the algorithm would be more complex
+ // if you find yourself needing extra performance, please make a PR.
+ var buff = this._concatArrayBuffer(this._buff, arr),
+ length = buff.length,
+ i;
+
+ this._length += arr.byteLength;
+
+ for (i = 64; i <= length; i += 64) {
+ md5cycle(this._state, md5blk_array(buff.subarray(i - 64, i)));
+ }
+
+ // Avoids IE10 weirdness (documented above)
+ this._buff = (i - 64) < length ? buff.subarray(i - 64) : new Uint8Array(0);
+
+ return this;
+ };
+
+ /**
+ * Finishes the incremental computation, reseting the internal state and
+ * returning the result.
+ * Use the raw parameter to obtain the raw result instead of the hex one.
+ *
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.ArrayBuffer.prototype.end = function (raw) {
+ var buff = this._buff,
+ length = buff.length,
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
+ i,
+ ret;
+
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= buff[i] << ((i % 4) << 3);
+ }
+
+ this._finish(tail, length);
+ ret = !!raw ? this._state : hex(this._state);
+
+ this.reset();
+
+ return ret;
+ };
+
+ SparkMD5.ArrayBuffer.prototype._finish = SparkMD5.prototype._finish;
+
+ /**
+ * Resets the internal state of the computation.
+ *
+ * @return {SparkMD5.ArrayBuffer} The instance itself
+ */
+ SparkMD5.ArrayBuffer.prototype.reset = function () {
+ this._buff = new Uint8Array(0);
+ this._length = 0;
+ this._state = [1732584193, -271733879, -1732584194, 271733878];
+
+ return this;
+ };
+
+ /**
+ * Releases memory used by the incremental buffer and other aditional
+ * resources. If you plan to use the instance again, use reset instead.
+ */
+ SparkMD5.ArrayBuffer.prototype.destroy = SparkMD5.prototype.destroy;
+
+ /**
+ * Concats two array buffers, returning a new one.
+ *
+ * @param {ArrayBuffer} first The first array buffer
+ * @param {ArrayBuffer} second The second array buffer
+ *
+ * @return {ArrayBuffer} The new array buffer
+ */
+ SparkMD5.ArrayBuffer.prototype._concatArrayBuffer = function (first, second) {
+ var firstLength = first.length,
+ result = new Uint8Array(firstLength + second.byteLength);
+
+ result.set(first);
+ result.set(new Uint8Array(second), firstLength);
+
+ return result;
+ };
+
+ /**
+ * Performs the md5 hash on an array buffer.
+ *
+ * @param {ArrayBuffer} arr The array buffer
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.ArrayBuffer.hash = function (arr, raw) {
+ var hash = md51_array(new Uint8Array(arr));
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ return FlashRuntime.register( 'Md5', {
+ init: function() {
+ // do nothing.
+ },
+
+ loadFromBlob: function( file ) {
+ var blob = file.getSource(),
+ chunkSize = 2 * 1024 * 1024,
+ chunks = Math.ceil( blob.size / chunkSize ),
+ chunk = 0,
+ owner = this.owner,
+ spark = new SparkMD5.ArrayBuffer(),
+ me = this,
+ blobSlice = blob.mozSlice || blob.webkitSlice || blob.slice,
+ loadNext, fr;
+
+ fr = new FileReader();
+
+ loadNext = function() {
+ var start, end;
+
+ start = chunk * chunkSize;
+ end = Math.min( start + chunkSize, blob.size );
+
+ fr.onload = function( e ) {
+ spark.append( e.target.result );
+ owner.trigger( 'progress', {
+ total: file.size,
+ loaded: end
+ });
+ };
+
+ fr.onloadend = function() {
+ fr.onloadend = fr.onload = null;
+
+ if ( ++chunk < chunks ) {
+ setTimeout( loadNext, 1 );
+ } else {
+ setTimeout(function(){
+ owner.trigger('load');
+ me.result = spark.end();
+ loadNext = file = blob = spark = null;
+ owner.trigger('complete');
+ }, 50 );
+ }
+ };
+
+ fr.readAsArrayBuffer( blobSlice.call( blob, start, end ) );
+ };
+
+ loadNext();
+ },
+
+ getResult: function() {
+ return this.result;
+ }
+ });
});
- /**
- * @fileOverview FilePicker
- */
- define('runtime/flash/filepicker',[
- 'base',
- 'runtime/flash/runtime'
- ], function( Base, FlashRuntime ) {
- var $ = Base.$;
-
- return FlashRuntime.register( 'FilePicker', {
- init: function( opts ) {
- var copy = $.extend({}, opts ),
- len, i;
-
- // 修复Flash再没有设置title的情况下无法弹出flash文件选择框的bug.
- len = copy.accept && copy.accept.length;
- for ( i = 0; i < len; i++ ) {
- if ( !copy.accept[ i ].title ) {
- copy.accept[ i ].title = 'Files';
- }
- }
-
- delete copy.button;
- delete copy.id;
- delete copy.container;
-
- this.flashExec( 'FilePicker', 'init', copy );
- },
-
- destroy: function() {
- this.flashExec( 'FilePicker', 'destroy' );
- }
- });
+ /**
+ * @fileOverview FlashRuntime
+ */
+ define('runtime/flash/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var $ = Base.$,
+ type = 'flash',
+ components = {};
+
+
+ function getFlashVersion() {
+ var version;
+
+ try {
+ version = navigator.plugins[ 'Shockwave Flash' ];
+ version = version.description;
+ } catch ( ex ) {
+ try {
+ version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash')
+ .GetVariable('$version');
+ } catch ( ex2 ) {
+ version = '0.0';
+ }
+ }
+ version = version.match( /\d+/g );
+ return parseFloat( version[ 0 ] + '.' + version[ 1 ], 10 );
+ }
+
+ function FlashRuntime() {
+ var pool = {},
+ clients = {},
+ destroy = this.destroy,
+ me = this,
+ jsreciver = Base.guid('webuploader_');
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/ ) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ clients[ uid ] = client;
+
+ if ( components[ comp ] ) {
+ if ( !pool[ uid ] ) {
+ pool[ uid ] = new components[ comp ]( client, me );
+ }
+
+ instance = pool[ uid ];
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+
+ return me.flashExec.apply( client, arguments );
+ };
+
+ function handler( evt, obj ) {
+ var type = evt.type || evt,
+ parts, uid;
+
+ parts = type.split('::');
+ uid = parts[ 0 ];
+ type = parts[ 1 ];
+
+ // console.log.apply( console, arguments );
+
+ if ( type === 'Ready' && uid === me.uid ) {
+ me.trigger('ready');
+ } else if ( clients[ uid ] ) {
+ clients[ uid ].trigger( type.toLowerCase(), evt, obj );
+ }
+
+ // Base.log( evt, obj );
+ }
+
+ // flash的接受器。
+ window[ jsreciver ] = function() {
+ var args = arguments;
+
+ // 为了能捕获得到。
+ setTimeout(function() {
+ handler.apply( null, args );
+ }, 1 );
+ };
+
+ this.jsreciver = jsreciver;
+
+ this.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+
+ this.flashExec = function( comp, fn ) {
+ var flash = me.getFlash(),
+ args = Base.slice( arguments, 2 );
+
+ return flash.exec( this.uid, comp, fn, args );
+ };
+
+ // @todo
+ }
+
+ Base.inherits( Runtime, {
+ constructor: FlashRuntime,
+
+ init: function() {
+ var container = this.getContainer(),
+ opts = this.options,
+ html;
+
+ // if not the minimal height, shims are not initialized
+ // in older browsers (e.g FF3.6, IE6,7,8, Safari 4.0,5.0, etc)
+ container.css({
+ position: 'absolute',
+ top: '-8px',
+ left: '-8px',
+ width: '9px',
+ height: '9px',
+ overflow: 'hidden'
+ });
+
+ // insert flash object
+ html = '';
+
+ container.html( html );
+ },
+
+ getFlash: function() {
+ if ( this._flash ) {
+ return this._flash;
+ }
+
+ this._flash = $( '#' + this.uid ).get( 0 );
+ return this._flash;
+ }
+
+ });
+
+ FlashRuntime.register = function( name, component ) {
+ component = components[ name ] = Base.inherits( CompBase, $.extend({
+
+ // @todo fix this later
+ flashExec: function() {
+ var owner = this.owner,
+ runtime = this.getRuntime();
+
+ return runtime.flashExec.apply( owner, arguments );
+ }
+ }, component ) );
+
+ return component;
+ };
+
+ if ( getFlashVersion() >= 11.4 ) {
+ Runtime.addRuntime( type, FlashRuntime );
+ }
+
+ return FlashRuntime;
});
- /**
- * @fileOverview 图片压缩
- */
- define('runtime/flash/image',[
- 'runtime/flash/runtime'
- ], function( FlashRuntime ) {
-
- return FlashRuntime.register( 'Image', {
- // init: function( options ) {
- // var owner = this.owner;
-
- // this.flashExec( 'Image', 'init', options );
- // owner.on( 'load', function() {
- // debugger;
- // });
- // },
-
- loadFromBlob: function( blob ) {
- var owner = this.owner;
-
- owner.info() && this.flashExec( 'Image', 'info', owner.info() );
- owner.meta() && this.flashExec( 'Image', 'meta', owner.meta() );
-
- this.flashExec( 'Image', 'loadFromBlob', blob.uid );
- }
- });
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/flash/filepicker',[
+ 'base',
+ 'runtime/flash/runtime'
+ ], function( Base, FlashRuntime ) {
+ var $ = Base.$;
+
+ return FlashRuntime.register( 'FilePicker', {
+ init: function( opts ) {
+ var copy = $.extend({}, opts ),
+ len, i;
+
+ // 修复Flash再没有设置title的情况下无法弹出flash文件选择框的bug.
+ len = copy.accept && copy.accept.length;
+ for ( i = 0; i < len; i++ ) {
+ if ( !copy.accept[ i ].title ) {
+ copy.accept[ i ].title = 'Files';
+ }
+ }
+
+ delete copy.button;
+ delete copy.id;
+ delete copy.container;
+
+ this.flashExec( 'FilePicker', 'init', copy );
+ },
+
+ destroy: function() {
+ this.flashExec( 'FilePicker', 'destroy' );
+ }
+ });
});
- /**
- * @fileOverview Transport flash实现
- */
- define('runtime/flash/transport',[
- 'base',
- 'runtime/flash/runtime',
- 'runtime/client'
- ], function( Base, FlashRuntime, RuntimeClient ) {
- var $ = Base.$;
-
- return FlashRuntime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- this._responseJson = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- binary;
-
- xhr.connectRuntime( blob.ruid );
-
- if ( opts.sendAsBinary ) {
- server += (/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData );
-
- binary = blob.uid;
- } else {
- $.each( owner._formData, function( k, v ) {
- xhr.exec( 'append', k, v );
- });
-
- xhr.exec( 'appendBlob', opts.fileVal, blob.uid,
- opts.filename || owner._formData.name || '' );
- }
-
- this._setRequestHeader( xhr, opts.headers );
- xhr.exec( 'send', {
- method: opts.method,
- url: server,
- forceURLStream: opts.forceURLStream,
- mimeType: 'application/octet-stream'
- }, binary );
- },
-
- getStatus: function() {
- return this._status;
- },
-
- getResponse: function() {
- return this._response || '';
- },
-
- getResponseAsJson: function() {
- return this._responseJson;
- },
-
- getResponseHeaders: function() {
- // flash 暂不支持
- return {};
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.exec('abort');
- xhr.destroy();
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new RuntimeClient('XMLHttpRequest');
-
- xhr.on( 'uploadprogress progress', function( e ) {
- var percent = e.loaded / e.total;
- percent = Math.min( 1, Math.max( 0, percent ) );
- return me.trigger( 'progress', percent );
- });
-
- xhr.on( 'load', function() {
- var status = xhr.exec('getStatus'),
- readBody = false,
- err = '',
- p;
-
- xhr.off();
- me._xhr = null;
-
- if ( status >= 200 && status < 300 ) {
- readBody = true;
- } else if ( status >= 500 && status < 600 ) {
- readBody = true;
- err = 'server-'+status;
- } else {
- err = 'http-'+status;
- }
-
- if ( readBody ) {
- me._response = xhr.exec('getResponse');
- me._response = decodeURIComponent( me._response );
-
- // flash 处理可能存在 bug, 没辙只能靠 js 了
- // try {
- // me._responseJson = xhr.exec('getResponseAsJson');
- // } catch ( error ) {
-
- p = function( s ) {
- try {
- if (window.JSON && window.JSON.parse) {
- return JSON.parse(s);
- }
-
- return new Function('return ' + s).call();
- } catch ( err ) {
- return {};
- }
- };
- me._responseJson = me._response ? p(me._response) : {};
-
- // }
- }
-
- xhr.destroy();
- xhr = null;
-
- return err ? me.trigger( 'error', err ) : me.trigger('load');
- });
-
- xhr.on( 'error', function() {
- var status = xhr.exec('getStatus'),err = status?'http-'+status:'http';
- xhr.off();
- me._xhr = null;
- me.trigger( 'error', err );
- });
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.exec( 'setRequestHeader', key, val );
- });
- }
- });
+ /**
+ * @fileOverview 图片压缩
+ */
+ define('runtime/flash/image',[
+ 'runtime/flash/runtime'
+ ], function( FlashRuntime ) {
+
+ return FlashRuntime.register( 'Image', {
+ // init: function( options ) {
+ // var owner = this.owner;
+
+ // this.flashExec( 'Image', 'init', options );
+ // owner.on( 'load', function() {
+ // debugger;
+ // });
+ // },
+
+ loadFromBlob: function( blob ) {
+ var owner = this.owner;
+
+ owner.info() && this.flashExec( 'Image', 'info', owner.info() );
+ owner.meta() && this.flashExec( 'Image', 'meta', owner.meta() );
+
+ this.flashExec( 'Image', 'loadFromBlob', blob.uid );
+ }
+ });
});
+ /**
+ * @fileOverview Transport flash实现
+ */
+ define('runtime/flash/transport',[
+ 'base',
+ 'runtime/flash/runtime',
+ 'runtime/client'
+ ], function( Base, FlashRuntime, RuntimeClient ) {
+ var $ = Base.$;
+
+ return FlashRuntime.register( 'Transport', {
+ init: function() {
+ this._status = 0;
+ this._response = null;
+ this._responseJson = null;
+ },
+
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ binary;
+
+ xhr.connectRuntime( blob.ruid );
+
+ if ( opts.sendAsBinary ) {
+ server += (/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData );
+
+ binary = blob.uid;
+ } else {
+ $.each( owner._formData, function( k, v ) {
+ xhr.exec( 'append', k, v );
+ });
+
+ xhr.exec( 'appendBlob', opts.fileVal, blob.uid,
+ opts.filename || owner._formData.name || '' );
+ }
+
+ this._setRequestHeader( xhr, opts.headers );
+ xhr.exec( 'send', {
+ method: opts.method,
+ url: server,
+ forceURLStream: opts.forceURLStream,
+ mimeType: 'application/octet-stream'
+ }, binary );
+ },
+
+ getStatus: function() {
+ return this._status;
+ },
+
+ getResponse: function() {
+ return this._response || '';
+ },
+
+ getResponseAsJson: function() {
+ return this._responseJson;
+ },
+
+ getResponseHeaders: function() {
+ // flash 暂不支持
+ return {};
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.exec('abort');
+ xhr.destroy();
+ this._xhr = xhr = null;
+ }
+ },
+
+ destroy: function() {
+ this.abort();
+ },
+
+ _initAjax: function() {
+ var me = this,
+ xhr = new RuntimeClient('XMLHttpRequest');
+
+ xhr.on( 'uploadprogress progress', function( e ) {
+ var percent = e.loaded / e.total;
+ percent = Math.min( 1, Math.max( 0, percent ) );
+ return me.trigger( 'progress', percent );
+ });
+
+ xhr.on( 'load', function() {
+ var status = xhr.exec('getStatus'),
+ readBody = false,
+ err = '',
+ p;
+
+ xhr.off();
+ me._xhr = null;
+
+ if ( status >= 200 && status < 300 ) {
+ readBody = true;
+ } else if ( status >= 500 && status < 600 ) {
+ readBody = true;
+ err = 'server-'+status;
+ } else {
+ err = 'http-'+status;
+ }
+
+ if ( readBody ) {
+ me._response = xhr.exec('getResponse');
+ me._response = decodeURIComponent( me._response );
+
+ // flash 处理可能存在 bug, 没辙只能靠 js 了
+ // try {
+ // me._responseJson = xhr.exec('getResponseAsJson');
+ // } catch ( error ) {
+
+ p = function( s ) {
+ try {
+ if (window.JSON && window.JSON.parse) {
+ return JSON.parse(s);
+ }
+
+ return new Function('return ' + s).call();
+ } catch ( err ) {
+ return {};
+ }
+ };
+ me._responseJson = me._response ? p(me._response) : {};
+
+ // }
+ }
+
+ xhr.destroy();
+ xhr = null;
+
+ return err ? me.trigger( 'error', err ) : me.trigger('load');
+ });
+
+ xhr.on( 'error', function() {
+ var status = xhr.exec('getStatus'),err = status?'http-'+status:'http';
+ xhr.off();
+ me._xhr = null;
+ me.trigger( 'error', err );
+ });
+
+ me._xhr = xhr;
+ return xhr;
+ },
+
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.exec( 'setRequestHeader', key, val );
+ });
+ }
+ });
+ });
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/flash/blob',[
- 'runtime/flash/runtime',
- 'lib/blob'
- ], function( FlashRuntime, Blob ) {
-
- return FlashRuntime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.flashExec( 'Blob', 'slice', start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/flash/blob',[
+ 'runtime/flash/runtime',
+ 'lib/blob'
+ ], function( FlashRuntime, Blob ) {
+
+ return FlashRuntime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.flashExec( 'Blob', 'slice', start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
});
- /**
- * @fileOverview Md5 flash实现
- */
- define('runtime/flash/md5',[
- 'runtime/flash/runtime'
- ], function( FlashRuntime ) {
-
- return FlashRuntime.register( 'Md5', {
- init: function() {
- // do nothing.
- },
-
- loadFromBlob: function( blob ) {
- return this.flashExec( 'Md5', 'loadFromBlob', blob.uid );
- }
- });
+ /**
+ * @fileOverview Md5 flash实现
+ */
+ define('runtime/flash/md5',[
+ 'runtime/flash/runtime'
+ ], function( FlashRuntime ) {
+
+ return FlashRuntime.register( 'Md5', {
+ init: function() {
+ // do nothing.
+ },
+
+ loadFromBlob: function( blob ) {
+ return this.flashExec( 'Md5', 'loadFromBlob', blob.uid );
+ }
+ });
});
- /**
- * @fileOverview 完全版本。
- */
- define('preset/all',[
- 'base',
-
- // widgets
- 'widgets/filednd',
- 'widgets/filepaste',
- 'widgets/filepicker',
- 'widgets/image',
- 'widgets/queue',
- 'widgets/runtime',
- 'widgets/upload',
- 'widgets/validator',
- 'widgets/md5',
-
- // runtimes
- // html5
- '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',
-
- // flash
- 'runtime/flash/filepicker',
- 'runtime/flash/image',
- 'runtime/flash/transport',
- 'runtime/flash/blob',
- 'runtime/flash/md5'
- ], function( Base ) {
- return Base;
+ /**
+ * @fileOverview 完全版本。
+ */
+ define('preset/all',[
+ 'base',
+
+ // widgets
+ 'widgets/filednd',
+ 'widgets/filepaste',
+ 'widgets/filepicker',
+ 'widgets/image',
+ 'widgets/queue',
+ 'widgets/runtime',
+ 'widgets/upload',
+ 'widgets/validator',
+ 'widgets/md5',
+
+ // runtimes
+ // html5
+ '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',
+
+ // flash
+ 'runtime/flash/filepicker',
+ 'runtime/flash/image',
+ 'runtime/flash/transport',
+ 'runtime/flash/blob',
+ 'runtime/flash/md5'
+ ], function( Base ) {
+ return Base;
});
define('webuploader',[
'preset/all'
], function( preset ) {
return preset;
- });
- return require('webuploader');
-});
+ });
+ return require('webuploader');
+});
diff --git a/dist/webuploader.nolog.min.js b/dist/webuploader.nolog.min.js
index e0d6a6d22..51f6ce003 100644
--- a/dist/webuploader.nolog.min.js
+++ b/dist/webuploader.nolog.min.js
@@ -1,3 +1,3 @@
/* WebUploader 0.1.8-alpha */!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.require,c=a.__dollar||a.jQuery||a.Zepto||b("jquery")||b("zepto");if(!c)throw new Error("jQuery or Zepto not found!");return c}),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.8-alpha",$: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;++e1?(d.isPlainObject(b)&&d.isPlainObject(c[a])?d.extend(c[a],b):c[a]=b,void 0):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?("name"===a&&(g.name=c.name),void 0):(g[a.replace(/[A-Z]/g,"-$&").toLowerCase()]=a,void 0)})):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||c.lastModified&&new Date(c.lastModified).toLocaleString()||(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",style:"webuploader-pick"},b.inherits(c,{constructor:e,init:function(){var c=this,e=c.options,g=e.button,h=e.style;h&&g.addClass("webuploader-pick"),c.on("all",function(a){var b;switch(a){case"mouseenter":h&&g.addClass("webuploader-pick-hover");break;case"mouseleave":h&&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[0]&&b[0].offsetWidth||b.outerWidth()||b.width(),d=b[0]&&b[0].offsetHeight||b.outerHeight()||b.height(),e=b.offset();c&&d&&a.css({bottom:"auto",right:"auto",width:c+"px",height:d+"px"}).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.on("dialogopen",function(){e.owner.trigger("dialogOpen",j.button)}),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()}),d(i,a.source.size,function(){a._info&&i.info(a._info),a._meta&&i.meta(a._meta),i.loadFromBlob(a.source)}),void 0):(b(!0),void 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=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.sizeb;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],this._delFile(a),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)}))},_delFile:function(a){for(var b=this._queue.length-1;b>=0;b--)if(this._queue[b]==a){this._queue.splice(b,1);break}},_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):(b.owner.trigger("error","Q_TYPE_DENIED",a),void 0):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)}),a.length&&(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),b||f.request("start-upload"),void 0;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()},getResponseHeaders:function(){return this.exec("getResponseHeaders")},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,chunkRetryDelay:1e3,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?(b=b.id?b:c.request("get-file",b),b.getStatus()===h.INTERRUPT?(b.setStatus(h.QUEUED),f.each(c.pool,function(a,c){c.file===b&&(c.transport&&c.transport.send(),b.setStatus(h.PROGRESS))})):b.getStatus()!==h.PROGRESS&&b.setStatus(h.QUEUED)):f.each(c.request("get-files",[h.INITED]),function(){this.setStatus(h.QUEUED)}),c.runing)return c.owner.trigger("startUpload",b),a.nextTick(c.__tick);c.runing=!0;var d=[];b||f.each(c.pool,function(a,b){var e=b.file;if(e.getStatus()===h.INTERRUPT){if(c._trigged=!1,d.push(e),b.waiting)return;b.transport?b.transport.send():c._doSend(b)}}),f.each(d,function(){this.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,e){e.file===b&&(e.transport&&e.transport.abort(),c&&(d._putback(e),d._popBlock(e)))}),d.owner.trigger("stopUpload",b),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):(d.pool.length1&&~"http,abort,server".indexOf(a.replace(/-.*/,""))&&b.retried1&&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))},destroy:function(){clearTimeout(this.retryTimer)}})}),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 this.trigger("beforeFileQueuedCheckfileNumLimit",a,c)?(c>=d&&e&&(e=!1,this.trigger("error","Q_EXCEED_NUM_LIMIT",d,a),setTimeout(function(){e=!0},1)),c>=d?!1:!0):!1}),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 g.dndOver=!1,g.elem.removeClass(e+"over"),b&&!f?(g._getTansferFiles(b,function(a){g.trigger("drop",d.map(a,function(a){return new c(h,a)}))}),!1):void 0},_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,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("capture","camera"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.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;ei&&(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;g6&&(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 a.log("Invalid Exif data: Invalid tag type."),void 0;if(i=o.size*g,j=i>4?d+b.getUint32(e+8,h):e+8,j+i>b.byteLength)return a.log("Invalid Exif data: Invalid data offset."),void 0;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;lb.byteLength)return a.log("Invalid Exif data: Invalid directory offset."),void 0;if(g=b.getUint16(d,e),h=d+2+12*g,h+4>b.byteLength)return a.log("Invalid Exif data: Invalid directory size."),void 0;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 a.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==b.getUint16(d+8))return a.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(b.getUint16(i)){case 18761:g=!0;break;case 19789:g=!1;break;default:return a.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==b.getUint16(i+2,g))return a.log("Invalid Exif data: Missing TIFF marker."),void 0;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/(8*z[P[i]]*h[j]*h[k]),C[i]=1/(8*A[P[i]]*h[j]*h[k]),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<J&&(255==I?(h(255),h(0)):h(I),J=7,I=0)}function h(a){H.push(N[a])}function i(a){h(255&a>>8),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?0|_+.5:0|_-.5;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=50>a?Math.floor(5e3/a):Math.floor(200-2*a),b(c),x=a}}function s(){a||(a=50),q(),d(),e(),f(),r(a)}Math.round;var t,u,v,w,x,y=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<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+=g.attachInfoToQuery!==!1?(/\?/.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)},getResponseHeaders:function(){return this._headers},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()},_parseHeader:function(a){var b={};return a&&a.replace(/^([^\:]+):(.*)$/gm,function(a,c,d){b[c.trim()]=d.trim()}),b},_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(){if(4===b.readyState){b.upload.onprogress=c,b.onreadystatechange=c,a._xhr=null,a._status=b.status;var d="|",e=d+b.status+d+b.statusText;return b.status>=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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 4294967295&a+b},c=function(a,c,d,e,f,g){return c=b(b(c,a),b(e,g)),b(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[15&a>>8*b+4]+m[15&a>>8*b];return c},o=function(a){var b;for(b=0;b>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'+''+''+''+"",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},getResponseHeaders:function(){return{}},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-"+e):g="http-"+e,f&&(b._response=c.exec("getResponse"),b._response=decodeURIComponent(b._response),d=function(b){try{return a.JSON&&a.JSON.parse?JSON.parse(b):new Function("return "+b).call()}catch(c){return{}}},b._responseJson=b._response?d(b._response):{}),c.destroy(),c=null,g?b.trigger("error",g):b.trigger("load")}),c.on("error",function(){var a=c.exec("getStatus"),d=a?"http-"+a:"http";c.off(),b._xhr=null,b.trigger("error",d)}),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(this.getRuid(),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("webuploader",["preset/all"],function(a){return a}),c("webuploader")});
\ No newline at end of file
+},j.chunkRetryDelay||1e3)):(d||"server"!==a||(a=c(a)),k.setStatus(h.ERROR,a),i.trigger("uploadError",k,a,e,f),i.trigger("uploadComplete",k))}),l.on("load",function(){var a;return(a=c())?(l.trigger("error",a,!0),void 0):(1===k.remaning?g._finishFile(k,e):l.destroy(),void 0)}),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))},destroy:function(){clearTimeout(this.retryTimer)}})}),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 this.trigger("beforeFileQueuedCheckfileNumLimit",a,c)?(c>=d&&e&&(e=!1,this.trigger("error","Q_EXCEED_NUM_LIMIT",d,a),setTimeout(function(){e=!0},1)),c>=d?!1:!0):!1}),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 g.dndOver=!1,g.elem.removeClass(e+"over"),b&&!f?(g._getTansferFiles(b,function(a){g.trigger("drop",d.map(a,function(a){return new c(h,a)}))}),!1):void 0},_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,g=this.getRuntime().getContainer(),h=this,i=h.owner,j=h.options,k=this.label=c(document.createElement("label")),l=this.input=c(document.createElement("input"));if(l.attr("type","file"),l.attr("name",j.name),l.addClass("webuploader-element-invisible"),k.on("click",function(a){l.trigger("click"),a.stopPropagation(),i.trigger("dialogopen")}),k.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),j.multiple&&l.attr("multiple","multiple"),j.accept&&j.accept.length>0){for(a=[],b=0,d=j.accept.length;d>b;b++)a.push(j.accept[b].mimeTypes);l.attr("accept",a.join(","))}g.append(l),g.append(k),e=function(a){i.trigger(a.type)},f=function(a){var b;return 0===a.target.files.length?!1:(h.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),l.off(),l=c(b).on("change",f).on("mouseenter mouseleave",e),i.trigger("change"),void 0)},l.on("change",f),k.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;ei&&(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;g6&&(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 a.log("Invalid Exif data: Invalid tag type."),void 0;if(i=o.size*g,j=i>4?d+b.getUint32(e+8,h):e+8,j+i>b.byteLength)return a.log("Invalid Exif data: Invalid data offset."),void 0;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;lb.byteLength)return a.log("Invalid Exif data: Invalid directory offset."),void 0;if(g=b.getUint16(d,e),h=d+2+12*g,h+4>b.byteLength)return a.log("Invalid Exif data: Invalid directory size."),void 0;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 a.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==b.getUint16(d+8))return a.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(b.getUint16(i)){case 18761:g=!0;break;case 19789:g=!1;break;default:return a.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==b.getUint16(i+2,g))return a.log("Invalid Exif data: Missing TIFF marker."),void 0;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/(8*z[P[i]]*h[j]*h[k]),C[i]=1/(8*A[P[i]]*h[j]*h[k]),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<J&&(255==I?(h(255),h(0)):h(I),J=7,I=0)}function h(a){H.push(N[a])}function i(a){h(255&a>>8),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?0|_+.5:0|_-.5;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=50>a?Math.floor(5e3/a):Math.floor(200-2*a),b(c),x=a}}function s(){a||(a=50),q(),d(),e(),f(),r(a)}Math.round;var t,u,v,w,x,y=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<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+=g.attachInfoToQuery!==!1?(/\?/.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)},getResponseHeaders:function(){return this._headers},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()},_parseHeader:function(a){var b={};return a&&a.replace(/^([^\:]+):(.*)$/gm,function(a,c,d){b[c.trim()]=d.trim()}),b},_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(){if(4===b.readyState){b.upload.onprogress=c,b.onreadystatechange=c,a._xhr=null,a._status=b.status;var d="|",e=d+b.status+d+b.statusText;return b.status>=200&&b.status<300?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a._headers=a._parseHeader(b.getAllResponseHeaders()),a.trigger("error","server"+e)):a.trigger("error",a._status?"http"+e:"abort")}},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 4294967295&a+b},c=function(a,c,d,e,f,g){return c=b(b(c,a),b(e,g)),b(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[15&a>>8*b+4]+m[15&a>>8*b];return c},o=function(a){var b;for(b=0;b>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'+''+''+''+"",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},getResponseHeaders:function(){return{}},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-"+e):g="http-"+e,f&&(b._response=c.exec("getResponse"),b._response=decodeURIComponent(b._response),d=function(b){try{return a.JSON&&a.JSON.parse?JSON.parse(b):new Function("return "+b).call()}catch(c){return{}}},b._responseJson=b._response?d(b._response):{}),c.destroy(),c=null,g?b.trigger("error",g):b.trigger("load")}),c.on("error",function(){var a=c.exec("getStatus"),d=a?"http-"+a:"http";c.off(),b._xhr=null,b.trigger("error",d)}),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(this.getRuid(),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("webuploader",["preset/all"],function(a){return a}),c("webuploader")});
\ No newline at end of file
diff --git a/jekyll/js/webuploader.js b/jekyll/js/webuploader.js
index 9a81e1a92..50d86e88b 100644
--- a/jekyll/js/webuploader.js
+++ b/jekyll/js/webuploader.js
@@ -1,8243 +1,8243 @@
-/*! WebUploader 0.1.8-alpha */
+/*! WebUploader 0.1.8-alpha */
-/**
- * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
- *
- * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
- */
-(function( root, factory ) {
- var modules = {},
-
- // 内部require, 简单不完全实现。
- // https://github.com/amdjs/amdjs-api/wiki/require
- _require = function( deps, callback ) {
- var args, len, i;
-
- // 如果deps不是数组,则直接返回指定module
- if ( typeof deps === 'string' ) {
- return getModule( deps );
- } else {
- args = [];
- for( len = deps.length, i = 0; i < len; i++ ) {
- args.push( getModule( deps[ i ] ) );
- }
-
- return callback.apply( null, args );
- }
- },
-
- // 内部define,暂时不支持不指定id.
- _define = function( id, deps, factory ) {
- if ( arguments.length === 2 ) {
- factory = deps;
- deps = null;
- }
-
- _require( deps || [], function() {
- setModule( id, factory, arguments );
- });
- },
-
- // 设置module, 兼容CommonJs写法。
- setModule = function( id, factory, args ) {
- var module = {
- exports: factory
- },
- returned;
-
- if ( typeof factory === 'function' ) {
- args.length || (args = [ _require, module.exports, module ]);
- returned = factory.apply( null, args );
- returned !== undefined && (module.exports = returned);
- }
-
- modules[ id ] = module.exports;
- },
-
- // 根据id获取module
- getModule = function( id ) {
- var module = modules[ id ] || root[ id ];
-
- if ( !module ) {
- throw new Error( '`' + id + '` is undefined' );
- }
-
- return module;
- },
-
- // 将所有modules,将路径ids装换成对象。
- exportsTo = function( obj ) {
- var key, host, parts, part, last, ucFirst;
-
- // make the first character upper case.
- ucFirst = function( str ) {
- return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
- };
-
- for ( key in modules ) {
- host = obj;
-
- if ( !modules.hasOwnProperty( key ) ) {
- continue;
- }
-
- parts = key.split('/');
- last = ucFirst( parts.pop() );
-
- while( (part = ucFirst( parts.shift() )) ) {
- host[ part ] = host[ part ] || {};
- host = host[ part ];
- }
-
- host[ last ] = modules[ key ];
- }
-
- return obj;
- },
-
- makeExport = function( dollar ) {
- root.__dollar = dollar;
-
- // exports every module.
- return exportsTo( factory( root, _define, _require ) );
- },
-
- origin;
-
- if ( typeof module === 'object' && typeof module.exports === 'object' ) {
-
- // For CommonJS and CommonJS-like environments where a proper window is present,
- module.exports = makeExport();
- } else if ( typeof define === 'function' && define.amd ) {
-
- // Allow using this built library as an AMD module
- // in another project. That other project will only
- // see this AMD call, not the internal modules in
- // the closure below.
- define([ 'jquery' ], makeExport );
- } else {
-
- // Browser globals case. Just assign the
- // result to a property on the global.
- origin = root.WebUploader;
- root.WebUploader = makeExport();
- root.WebUploader.noConflict = function() {
- root.WebUploader = origin;
- };
- }
-})( window, function( window, define, require ) {
-
+/**
+ * @fileOverview 让内部各个部件的代码可以用[amd](https://github.com/amdjs/amdjs-api/wiki/AMD)模块定义方式组织起来。
+ *
+ * AMD API 内部的简单不完全实现,请忽略。只有当WebUploader被合并成一个文件的时候才会引入。
+ */
+(function( root, factory ) {
+ var modules = {},
+
+ // 内部require, 简单不完全实现。
+ // https://github.com/amdjs/amdjs-api/wiki/require
+ _require = function( deps, callback ) {
+ var args, len, i;
+
+ // 如果deps不是数组,则直接返回指定module
+ if ( typeof deps === 'string' ) {
+ return getModule( deps );
+ } else {
+ args = [];
+ for( len = deps.length, i = 0; i < len; i++ ) {
+ args.push( getModule( deps[ i ] ) );
+ }
+
+ return callback.apply( null, args );
+ }
+ },
+
+ // 内部define,暂时不支持不指定id.
+ _define = function( id, deps, factory ) {
+ if ( arguments.length === 2 ) {
+ factory = deps;
+ deps = null;
+ }
+
+ _require( deps || [], function() {
+ setModule( id, factory, arguments );
+ });
+ },
+
+ // 设置module, 兼容CommonJs写法。
+ setModule = function( id, factory, args ) {
+ var module = {
+ exports: factory
+ },
+ returned;
+
+ if ( typeof factory === 'function' ) {
+ args.length || (args = [ _require, module.exports, module ]);
+ returned = factory.apply( null, args );
+ returned !== undefined && (module.exports = returned);
+ }
+
+ modules[ id ] = module.exports;
+ },
+
+ // 根据id获取module
+ getModule = function( id ) {
+ var module = modules[ id ] || root[ id ];
+
+ if ( !module ) {
+ throw new Error( '`' + id + '` is undefined' );
+ }
+
+ return module;
+ },
+
+ // 将所有modules,将路径ids装换成对象。
+ exportsTo = function( obj ) {
+ var key, host, parts, part, last, ucFirst;
+
+ // make the first character upper case.
+ ucFirst = function( str ) {
+ return str && (str.charAt( 0 ).toUpperCase() + str.substr( 1 ));
+ };
+
+ for ( key in modules ) {
+ host = obj;
+
+ if ( !modules.hasOwnProperty( key ) ) {
+ continue;
+ }
+
+ parts = key.split('/');
+ last = ucFirst( parts.pop() );
+
+ while( (part = ucFirst( parts.shift() )) ) {
+ host[ part ] = host[ part ] || {};
+ host = host[ part ];
+ }
+
+ host[ last ] = modules[ key ];
+ }
+
+ return obj;
+ },
+
+ makeExport = function( dollar ) {
+ root.__dollar = dollar;
+
+ // exports every module.
+ return exportsTo( factory( root, _define, _require ) );
+ },
+
+ origin;
+
+ if ( typeof module === 'object' && typeof module.exports === 'object' ) {
+
+ // For CommonJS and CommonJS-like environments where a proper window is present,
+ module.exports = makeExport();
+ } else if ( typeof define === 'function' && define.amd ) {
+
+ // Allow using this built library as an AMD module
+ // in another project. That other project will only
+ // see this AMD call, not the internal modules in
+ // the closure below.
+ define([ 'jquery' ], makeExport );
+ } else {
+
+ // Browser globals case. Just assign the
+ // result to a property on the global.
+ origin = root.WebUploader;
+ root.WebUploader = makeExport();
+ root.WebUploader.noConflict = function() {
+ root.WebUploader = origin;
+ };
+ }
+})( window, function( window, define, require ) {
+
- /**
- * @fileOverview jQuery or Zepto
- * @require "jquery"
- * @require "zepto"
- */
- define('dollar-third',[],function() {
- var req = window.require;
- var $ = window.__dollar ||
- window.jQuery ||
- window.Zepto ||
- req('jquery') ||
- req('zepto');
-
- if ( !$ ) {
- throw new Error('jQuery or Zepto not found!');
- }
+ /**
+ * @fileOverview jQuery or Zepto
+ * @require "jquery"
+ * @require "zepto"
+ */
+ define('dollar-third',[],function() {
+ var req = window.require;
+ var $ = window.__dollar ||
+ window.jQuery ||
+ window.Zepto ||
+ req('jquery') ||
+ req('zepto');
+
+ if ( !$ ) {
+ throw new Error('jQuery or Zepto not found!');
+ }
+
+ return $;
+ });
- return $;
+ /**
+ * @fileOverview Dom 操作相关
+ */
+ define('dollar',[
+ 'dollar-third'
+ ], function( _ ) {
+ return _;
});
-
- /**
- * @fileOverview Dom 操作相关
- */
- define('dollar',[
- 'dollar-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 使用jQuery的Promise
+ */
+ define('promise-third',[
+ 'dollar'
+ ], function( $ ) {
+ return {
+ Deferred: $.Deferred,
+ when: $.when,
+
+ isPromise: function( anything ) {
+ return anything && typeof anything.then === 'function';
+ }
+ };
});
- /**
- * @fileOverview 使用jQuery的Promise
- */
- define('promise-third',[
- 'dollar'
- ], function( $ ) {
- return {
- Deferred: $.Deferred,
- when: $.when,
-
- isPromise: function( anything ) {
- return anything && typeof anything.then === 'function';
- }
- };
+ /**
+ * @fileOverview Promise/A+
+ */
+ define('promise',[
+ 'promise-third'
+ ], function( _ ) {
+ return _;
});
- /**
- * @fileOverview Promise/A+
- */
- define('promise',[
- 'promise-third'
- ], function( _ ) {
- return _;
+ /**
+ * @fileOverview 基础类方法。
+ */
+
+ /**
+ * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
+ *
+ * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
+ * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
+ *
+ * * module `base`:WebUploader.Base
+ * * module `file`: WebUploader.File
+ * * module `lib/dnd`: WebUploader.Lib.Dnd
+ * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
+ *
+ *
+ * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
+ * @module WebUploader
+ * @title WebUploader API文档
+ */
+ define('base',[
+ 'dollar',
+ 'promise'
+ ], function( $, promise ) {
+
+ var noop = function() {},
+ call = Function.call;
+
+ // http://jsperf.com/uncurrythis
+ // 反科里化
+ function uncurryThis( fn ) {
+ return function() {
+ return call.apply( fn, arguments );
+ };
+ }
+
+ function bindFn( fn, context ) {
+ return function() {
+ return fn.apply( context, arguments );
+ };
+ }
+
+ function createObject( proto ) {
+ var f;
+
+ if ( Object.create ) {
+ return Object.create( proto );
+ } else {
+ f = function() {};
+ f.prototype = proto;
+ return new f();
+ }
+ }
+
+
+ /**
+ * 基础类,提供一些简单常用的方法。
+ * @class Base
+ */
+ return {
+
+ /**
+ * @property {String} version 当前版本号。
+ */
+ version: '0.1.8-alpha',
+
+ /**
+ * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
+ */
+ $: $,
+
+ Deferred: promise.Deferred,
+
+ isPromise: promise.isPromise,
+
+ when: promise.when,
+
+ /**
+ * @description 简单的浏览器检查结果。
+ *
+ * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
+ * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
+ * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
+ * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
+ * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
+ * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
+ *
+ * @property {Object} [browser]
+ */
+ browser: (function( ua ) {
+ var ret = {},
+ webkit = ua.match( /WebKit\/([\d.]+)/ ),
+ chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
+ ua.match( /CriOS\/([\d.]+)/ ),
+
+ ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
+ ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
+ firefox = ua.match( /Firefox\/([\d.]+)/ ),
+ safari = ua.match( /Safari\/([\d.]+)/ ),
+ opera = ua.match( /OPR\/([\d.]+)/ );
+
+ webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
+ chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
+ ie && (ret.ie = parseFloat( ie[ 1 ] ));
+ firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
+ safari && (ret.safari = parseFloat( safari[ 1 ] ));
+ opera && (ret.opera = parseFloat( opera[ 1 ] ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * @description 操作系统检查结果。
+ *
+ * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
+ * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
+ * @property {Object} [os]
+ */
+ os: (function( ua ) {
+ var ret = {},
+
+ // osx = !!ua.match( /\(Macintosh\; Intel / ),
+ android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
+ ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
+
+ // osx && (ret.osx = true);
+ android && (ret.android = parseFloat( android[ 1 ] ));
+ ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
+
+ return ret;
+ })( navigator.userAgent ),
+
+ /**
+ * 实现类与类之间的继承。
+ * @method inherits
+ * @grammar Base.inherits( super ) => child
+ * @grammar Base.inherits( super, protos ) => child
+ * @grammar Base.inherits( super, protos, statics ) => child
+ * @param {Class} super 父类
+ * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
+ * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
+ * @param {Object} [statics] 静态属性或方法。
+ * @return {Class} 返回子类。
+ * @example
+ * function Person() {
+ * console.log( 'Super' );
+ * }
+ * Person.prototype.hello = function() {
+ * console.log( 'hello' );
+ * };
+ *
+ * var Manager = Base.inherits( Person, {
+ * world: function() {
+ * console.log( 'World' );
+ * }
+ * });
+ *
+ * // 因为没有指定构造器,父类的构造器将会执行。
+ * var instance = new Manager(); // => Super
+ *
+ * // 继承子父类的方法
+ * instance.hello(); // => hello
+ * instance.world(); // => World
+ *
+ * // 子类的__super__属性指向父类
+ * console.log( Manager.__super__ === Person ); // => true
+ */
+ inherits: function( Super, protos, staticProtos ) {
+ var child;
+
+ if ( typeof protos === 'function' ) {
+ child = protos;
+ protos = null;
+ } else if ( protos && protos.hasOwnProperty('constructor') ) {
+ child = protos.constructor;
+ } else {
+ child = function() {
+ return Super.apply( this, arguments );
+ };
+ }
+
+ // 复制静态方法
+ $.extend( true, child, Super, staticProtos || {} );
+
+ /* jshint camelcase: false */
+
+ // 让子类的__super__属性指向父类。
+ child.__super__ = Super.prototype;
+
+ // 构建原型,添加原型方法或属性。
+ // 暂时用Object.create实现。
+ child.prototype = createObject( Super.prototype );
+ protos && $.extend( true, child.prototype, protos );
+
+ return child;
+ },
+
+ /**
+ * 一个不做任何事情的方法。可以用来赋值给默认的callback.
+ * @method noop
+ */
+ noop: noop,
+
+ /**
+ * 返回一个新的方法,此方法将已指定的`context`来执行。
+ * @grammar Base.bindFn( fn, context ) => Function
+ * @method bindFn
+ * @example
+ * var doSomething = function() {
+ * console.log( this.name );
+ * },
+ * obj = {
+ * name: 'Object Name'
+ * },
+ * aliasFn = Base.bind( doSomething, obj );
+ *
+ * aliasFn(); // => Object Name
+ *
+ */
+ bindFn: bindFn,
+
+ /**
+ * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
+ * @grammar Base.log( args... ) => undefined
+ * @method log
+ */
+ log: (function() {
+ if ( window.console ) {
+ return bindFn( console.log, console );
+ }
+ return noop;
+ })(),
+
+ nextTick: (function() {
+
+ return function( cb ) {
+ setTimeout( cb, 1 );
+ };
+
+ // @bug 当浏览器不在当前窗口时就停了。
+ // var next = window.requestAnimationFrame ||
+ // window.webkitRequestAnimationFrame ||
+ // window.mozRequestAnimationFrame ||
+ // function( cb ) {
+ // window.setTimeout( cb, 1000 / 60 );
+ // };
+
+ // // fix: Uncaught TypeError: Illegal invocation
+ // return bindFn( next, window );
+ })(),
+
+ /**
+ * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
+ * 将用来将非数组对象转化成数组对象。
+ * @grammar Base.slice( target, start[, end] ) => Array
+ * @method slice
+ * @example
+ * function doSomthing() {
+ * var args = Base.slice( arguments, 1 );
+ * console.log( args );
+ * }
+ *
+ * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
+ */
+ slice: uncurryThis( [].slice ),
+
+ /**
+ * 生成唯一的ID
+ * @method guid
+ * @grammar Base.guid() => String
+ * @grammar Base.guid( prefx ) => String
+ */
+ guid: (function() {
+ var counter = 0;
+
+ return function( prefix ) {
+ var guid = (+new Date()).toString( 32 ),
+ i = 0;
+
+ for ( ; i < 5; i++ ) {
+ guid += Math.floor( Math.random() * 65535 ).toString( 32 );
+ }
+
+ return (prefix || 'wu_') + guid + (counter++).toString( 32 );
+ };
+ })(),
+
+ /**
+ * 格式化文件大小, 输出成带单位的字符串
+ * @method formatSize
+ * @grammar Base.formatSize( size ) => String
+ * @grammar Base.formatSize( size, pointLength ) => String
+ * @grammar Base.formatSize( size, pointLength, units ) => String
+ * @param {Number} size 文件大小
+ * @param {Number} [pointLength=2] 精确到的小数点数。
+ * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
+ * @example
+ * console.log( Base.formatSize( 100 ) ); // => 100B
+ * console.log( Base.formatSize( 1024 ) ); // => 1.00K
+ * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
+ * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
+ * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
+ * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
+ */
+ formatSize: function( size, pointLength, units ) {
+ var unit;
+
+ units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
+
+ while ( (unit = units.shift()) && size > 1024 ) {
+ size = size / 1024;
+ }
+
+ return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
+ unit;
+ }
+ };
});
- /**
- * @fileOverview 基础类方法。
- */
-
- /**
- * Web Uploader内部类的详细说明,以下提及的功能类,都可以在`WebUploader`这个变量中访问到。
- *
- * As you know, Web Uploader的每个文件都是用过[AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)规范中的`define`组织起来的, 每个Module都会有个module id.
- * 默认module id为该文件的路径,而此路径将会转化成名字空间存放在WebUploader中。如:
- *
- * * module `base`:WebUploader.Base
- * * module `file`: WebUploader.File
- * * module `lib/dnd`: WebUploader.Lib.Dnd
- * * module `runtime/html5/dnd`: WebUploader.Runtime.Html5.Dnd
- *
- *
- * 以下文档中对类的使用可能省略掉了`WebUploader`前缀。
- * @module WebUploader
- * @title WebUploader API文档
- */
- define('base',[
- 'dollar',
- 'promise'
- ], function( $, promise ) {
-
- var noop = function() {},
- call = Function.call;
-
- // http://jsperf.com/uncurrythis
- // 反科里化
- function uncurryThis( fn ) {
- return function() {
- return call.apply( fn, arguments );
- };
- }
-
- function bindFn( fn, context ) {
- return function() {
- return fn.apply( context, arguments );
- };
- }
-
- function createObject( proto ) {
- var f;
-
- if ( Object.create ) {
- return Object.create( proto );
- } else {
- f = function() {};
- f.prototype = proto;
- return new f();
- }
- }
-
-
- /**
- * 基础类,提供一些简单常用的方法。
- * @class Base
- */
- return {
-
- /**
- * @property {String} version 当前版本号。
- */
- version: '0.1.8-alpha',
-
- /**
- * @property {jQuery|Zepto} $ 引用依赖的jQuery或者Zepto对象。
- */
- $: $,
-
- Deferred: promise.Deferred,
-
- isPromise: promise.isPromise,
-
- when: promise.when,
-
- /**
- * @description 简单的浏览器检查结果。
- *
- * * `webkit` webkit版本号,如果浏览器为非webkit内核,此属性为`undefined`。
- * * `chrome` chrome浏览器版本号,如果浏览器为chrome,此属性为`undefined`。
- * * `ie` ie浏览器版本号,如果浏览器为非ie,此属性为`undefined`。**暂不支持ie10+**
- * * `firefox` firefox浏览器版本号,如果浏览器为非firefox,此属性为`undefined`。
- * * `safari` safari浏览器版本号,如果浏览器为非safari,此属性为`undefined`。
- * * `opera` opera浏览器版本号,如果浏览器为非opera,此属性为`undefined`。
- *
- * @property {Object} [browser]
- */
- browser: (function( ua ) {
- var ret = {},
- webkit = ua.match( /WebKit\/([\d.]+)/ ),
- chrome = ua.match( /Chrome\/([\d.]+)/ ) ||
- ua.match( /CriOS\/([\d.]+)/ ),
-
- ie = ua.match( /MSIE\s([\d\.]+)/ ) ||
- ua.match( /(?:trident)(?:.*rv:([\w.]+))?/i ),
- firefox = ua.match( /Firefox\/([\d.]+)/ ),
- safari = ua.match( /Safari\/([\d.]+)/ ),
- opera = ua.match( /OPR\/([\d.]+)/ );
-
- webkit && (ret.webkit = parseFloat( webkit[ 1 ] ));
- chrome && (ret.chrome = parseFloat( chrome[ 1 ] ));
- ie && (ret.ie = parseFloat( ie[ 1 ] ));
- firefox && (ret.firefox = parseFloat( firefox[ 1 ] ));
- safari && (ret.safari = parseFloat( safari[ 1 ] ));
- opera && (ret.opera = parseFloat( opera[ 1 ] ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * @description 操作系统检查结果。
- *
- * * `android` 如果在android浏览器环境下,此值为对应的android版本号,否则为`undefined`。
- * * `ios` 如果在ios浏览器环境下,此值为对应的ios版本号,否则为`undefined`。
- * @property {Object} [os]
- */
- os: (function( ua ) {
- var ret = {},
-
- // osx = !!ua.match( /\(Macintosh\; Intel / ),
- android = ua.match( /(?:Android);?[\s\/]+([\d.]+)?/ ),
- ios = ua.match( /(?:iPad|iPod|iPhone).*OS\s([\d_]+)/ );
-
- // osx && (ret.osx = true);
- android && (ret.android = parseFloat( android[ 1 ] ));
- ios && (ret.ios = parseFloat( ios[ 1 ].replace( /_/g, '.' ) ));
-
- return ret;
- })( navigator.userAgent ),
-
- /**
- * 实现类与类之间的继承。
- * @method inherits
- * @grammar Base.inherits( super ) => child
- * @grammar Base.inherits( super, protos ) => child
- * @grammar Base.inherits( super, protos, statics ) => child
- * @param {Class} super 父类
- * @param {Object | Function} [protos] 子类或者对象。如果对象中包含constructor,子类将是用此属性值。
- * @param {Function} [protos.constructor] 子类构造器,不指定的话将创建个临时的直接执行父类构造器的方法。
- * @param {Object} [statics] 静态属性或方法。
- * @return {Class} 返回子类。
- * @example
- * function Person() {
- * console.log( 'Super' );
- * }
- * Person.prototype.hello = function() {
- * console.log( 'hello' );
- * };
- *
- * var Manager = Base.inherits( Person, {
- * world: function() {
- * console.log( 'World' );
- * }
- * });
- *
- * // 因为没有指定构造器,父类的构造器将会执行。
- * var instance = new Manager(); // => Super
- *
- * // 继承子父类的方法
- * instance.hello(); // => hello
- * instance.world(); // => World
- *
- * // 子类的__super__属性指向父类
- * console.log( Manager.__super__ === Person ); // => true
- */
- inherits: function( Super, protos, staticProtos ) {
- var child;
-
- if ( typeof protos === 'function' ) {
- child = protos;
- protos = null;
- } else if ( protos && protos.hasOwnProperty('constructor') ) {
- child = protos.constructor;
- } else {
- child = function() {
- return Super.apply( this, arguments );
- };
- }
-
- // 复制静态方法
- $.extend( true, child, Super, staticProtos || {} );
-
- /* jshint camelcase: false */
-
- // 让子类的__super__属性指向父类。
- child.__super__ = Super.prototype;
-
- // 构建原型,添加原型方法或属性。
- // 暂时用Object.create实现。
- child.prototype = createObject( Super.prototype );
- protos && $.extend( true, child.prototype, protos );
-
- return child;
- },
-
- /**
- * 一个不做任何事情的方法。可以用来赋值给默认的callback.
- * @method noop
- */
- noop: noop,
-
- /**
- * 返回一个新的方法,此方法将已指定的`context`来执行。
- * @grammar Base.bindFn( fn, context ) => Function
- * @method bindFn
- * @example
- * var doSomething = function() {
- * console.log( this.name );
- * },
- * obj = {
- * name: 'Object Name'
- * },
- * aliasFn = Base.bind( doSomething, obj );
- *
- * aliasFn(); // => Object Name
- *
- */
- bindFn: bindFn,
-
- /**
- * 引用Console.log如果存在的话,否则引用一个[空函数noop](#WebUploader:Base.noop)。
- * @grammar Base.log( args... ) => undefined
- * @method log
- */
- log: (function() {
- if ( window.console ) {
- return bindFn( console.log, console );
- }
- return noop;
- })(),
-
- nextTick: (function() {
-
- return function( cb ) {
- setTimeout( cb, 1 );
- };
-
- // @bug 当浏览器不在当前窗口时就停了。
- // var next = window.requestAnimationFrame ||
- // window.webkitRequestAnimationFrame ||
- // window.mozRequestAnimationFrame ||
- // function( cb ) {
- // window.setTimeout( cb, 1000 / 60 );
- // };
-
- // // fix: Uncaught TypeError: Illegal invocation
- // return bindFn( next, window );
- })(),
-
- /**
- * 被[uncurrythis](http://www.2ality.com/2011/11/uncurrying-this.html)的数组slice方法。
- * 将用来将非数组对象转化成数组对象。
- * @grammar Base.slice( target, start[, end] ) => Array
- * @method slice
- * @example
- * function doSomthing() {
- * var args = Base.slice( arguments, 1 );
- * console.log( args );
- * }
- *
- * doSomthing( 'ignored', 'arg2', 'arg3' ); // => Array ["arg2", "arg3"]
- */
- slice: uncurryThis( [].slice ),
-
- /**
- * 生成唯一的ID
- * @method guid
- * @grammar Base.guid() => String
- * @grammar Base.guid( prefx ) => String
- */
- guid: (function() {
- var counter = 0;
-
- return function( prefix ) {
- var guid = (+new Date()).toString( 32 ),
- i = 0;
-
- for ( ; i < 5; i++ ) {
- guid += Math.floor( Math.random() * 65535 ).toString( 32 );
- }
-
- return (prefix || 'wu_') + guid + (counter++).toString( 32 );
- };
- })(),
-
- /**
- * 格式化文件大小, 输出成带单位的字符串
- * @method formatSize
- * @grammar Base.formatSize( size ) => String
- * @grammar Base.formatSize( size, pointLength ) => String
- * @grammar Base.formatSize( size, pointLength, units ) => String
- * @param {Number} size 文件大小
- * @param {Number} [pointLength=2] 精确到的小数点数。
- * @param {Array} [units=[ 'B', 'K', 'M', 'G', 'TB' ]] 单位数组。从字节,到千字节,一直往上指定。如果单位数组里面只指定了到了K(千字节),同时文件大小大于M, 此方法的输出将还是显示成多少K.
- * @example
- * console.log( Base.formatSize( 100 ) ); // => 100B
- * console.log( Base.formatSize( 1024 ) ); // => 1.00K
- * console.log( Base.formatSize( 1024, 0 ) ); // => 1K
- * console.log( Base.formatSize( 1024 * 1024 ) ); // => 1.00M
- * console.log( Base.formatSize( 1024 * 1024 * 1024 ) ); // => 1.00G
- * console.log( Base.formatSize( 1024 * 1024 * 1024, 0, ['B', 'KB', 'MB'] ) ); // => 1024MB
- */
- formatSize: function( size, pointLength, units ) {
- var unit;
-
- units = units || [ 'B', 'K', 'M', 'G', 'TB' ];
-
- while ( (unit = units.shift()) && size > 1024 ) {
- size = size / 1024;
- }
-
- return (unit === 'B' ? size : size.toFixed( pointLength || 2 )) +
- unit;
- }
- };
+ /**
+ * 事件处理类,可以独立使用,也可以扩展给对象使用。
+ * @fileOverview Mediator
+ */
+ define('mediator',[
+ 'base'
+ ], function( Base ) {
+ var $ = Base.$,
+ slice = [].slice,
+ separator = /\s+/,
+ protos;
+
+ // 根据条件过滤出事件handlers.
+ function findHandlers( arr, name, callback, context ) {
+ return $.grep( arr, function( handler ) {
+ return handler &&
+ (!name || handler.e === name) &&
+ (!callback || handler.cb === callback ||
+ handler.cb._cb === callback) &&
+ (!context || handler.ctx === context);
+ });
+ }
+
+ function eachEvent( events, callback, iterator ) {
+ // 不支持对象,只支持多个event用空格隔开
+ $.each( (events || '').split( separator ), function( _, key ) {
+ iterator( key, callback );
+ });
+ }
+
+ function triggerHanders( events, args ) {
+ var stoped = false,
+ i = -1,
+ len = events.length,
+ handler;
+
+ while ( ++i < len ) {
+ handler = events[ i ];
+
+ if ( handler.cb.apply( handler.ctx2, args ) === false ) {
+ stoped = true;
+ break;
+ }
+ }
+
+ return !stoped;
+ }
+
+ protos = {
+
+ /**
+ * 绑定事件。
+ *
+ * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
+ * ```javascript
+ * var obj = {};
+ *
+ * // 使得obj有事件行为
+ * Mediator.installTo( obj );
+ *
+ * obj.on( 'testa', function( arg1, arg2 ) {
+ * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
+ * });
+ *
+ * obj.trigger( 'testa', 'arg1', 'arg2' );
+ * ```
+ *
+ * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
+ * 切会影响到`trigger`方法的返回值,为`false`。
+ *
+ * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
+ * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
+ * ```javascript
+ * obj.on( 'all', function( type, arg1, arg2 ) {
+ * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
+ * });
+ * ```
+ *
+ * @method on
+ * @grammar on( name, callback[, context] ) => self
+ * @param {String} name 事件名,支持多个事件用空格隔开
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ * @class Mediator
+ */
+ on: function( name, callback, context ) {
+ var me = this,
+ set;
+
+ if ( !callback ) {
+ return this;
+ }
+
+ set = this._events || (this._events = []);
+
+ eachEvent( name, callback, function( name, callback ) {
+ var handler = { e: name };
+
+ handler.cb = callback;
+ handler.ctx = context;
+ handler.ctx2 = context || me;
+ handler.id = set.length;
+
+ set.push( handler );
+ });
+
+ return this;
+ },
+
+ /**
+ * 绑定事件,且当handler执行完后,自动解除绑定。
+ * @method once
+ * @grammar once( name, callback[, context] ) => self
+ * @param {String} name 事件名
+ * @param {Function} callback 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ once: function( name, callback, context ) {
+ var me = this;
+
+ if ( !callback ) {
+ return me;
+ }
+
+ eachEvent( name, callback, function( name, callback ) {
+ var once = function() {
+ me.off( name, once );
+ return callback.apply( context || me, arguments );
+ };
+
+ once._cb = callback;
+ me.on( name, once, context );
+ });
+
+ return me;
+ },
+
+ /**
+ * 解除事件绑定
+ * @method off
+ * @grammar off( [name[, callback[, context] ] ] ) => self
+ * @param {String} [name] 事件名
+ * @param {Function} [callback] 事件处理器
+ * @param {Object} [context] 事件处理器的上下文。
+ * @return {self} 返回自身,方便链式
+ * @chainable
+ */
+ off: function( name, cb, ctx ) {
+ var events = this._events;
+
+ if ( !events ) {
+ return this;
+ }
+
+ if ( !name && !cb && !ctx ) {
+ this._events = [];
+ return this;
+ }
+
+ eachEvent( name, cb, function( name, cb ) {
+ $.each( findHandlers( events, name, cb, ctx ), function() {
+ delete events[ this.id ];
+ });
+ });
+
+ return this;
+ },
+
+ /**
+ * 触发事件
+ * @method trigger
+ * @grammar trigger( name[, args...] ) => self
+ * @param {String} type 事件名
+ * @param {*} [...] 任意参数
+ * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
+ */
+ trigger: function( type ) {
+ var args, events, allEvents;
+
+ if ( !this._events || !type ) {
+ return this;
+ }
+
+ args = slice.call( arguments, 1 );
+ events = findHandlers( this._events, type );
+ allEvents = findHandlers( this._events, 'all' );
+
+ return triggerHanders( events, args ) &&
+ triggerHanders( allEvents, arguments );
+ }
+ };
+
+ /**
+ * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
+ * 主要目的是负责模块与模块之间的合作,降低耦合度。
+ *
+ * @class Mediator
+ */
+ return $.extend({
+
+ /**
+ * 可以通过这个接口,使任何对象具备事件功能。
+ * @method installTo
+ * @param {Object} obj 需要具备事件行为的对象。
+ * @return {Object} 返回obj.
+ */
+ installTo: function( obj ) {
+ return $.extend( obj, protos );
+ }
+
+ }, protos );
});
- /**
- * 事件处理类,可以独立使用,也可以扩展给对象使用。
- * @fileOverview Mediator
- */
- define('mediator',[
- 'base'
- ], function( Base ) {
- var $ = Base.$,
- slice = [].slice,
- separator = /\s+/,
- protos;
-
- // 根据条件过滤出事件handlers.
- function findHandlers( arr, name, callback, context ) {
- return $.grep( arr, function( handler ) {
- return handler &&
- (!name || handler.e === name) &&
- (!callback || handler.cb === callback ||
- handler.cb._cb === callback) &&
- (!context || handler.ctx === context);
- });
- }
-
- function eachEvent( events, callback, iterator ) {
- // 不支持对象,只支持多个event用空格隔开
- $.each( (events || '').split( separator ), function( _, key ) {
- iterator( key, callback );
- });
- }
-
- function triggerHanders( events, args ) {
- var stoped = false,
- i = -1,
- len = events.length,
- handler;
-
- while ( ++i < len ) {
- handler = events[ i ];
-
- if ( handler.cb.apply( handler.ctx2, args ) === false ) {
- stoped = true;
- break;
- }
- }
-
- return !stoped;
- }
-
- protos = {
-
- /**
- * 绑定事件。
- *
- * `callback`方法在执行时,arguments将会来源于trigger的时候携带的参数。如
- * ```javascript
- * var obj = {};
- *
- * // 使得obj有事件行为
- * Mediator.installTo( obj );
- *
- * obj.on( 'testa', function( arg1, arg2 ) {
- * console.log( arg1, arg2 ); // => 'arg1', 'arg2'
- * });
- *
- * obj.trigger( 'testa', 'arg1', 'arg2' );
- * ```
- *
- * 如果`callback`中,某一个方法`return false`了,则后续的其他`callback`都不会被执行到。
- * 切会影响到`trigger`方法的返回值,为`false`。
- *
- * `on`还可以用来添加一个特殊事件`all`, 这样所有的事件触发都会响应到。同时此类`callback`中的arguments有一个不同处,
- * 就是第一个参数为`type`,记录当前是什么事件在触发。此类`callback`的优先级比脚低,会再正常`callback`执行完后触发。
- * ```javascript
- * obj.on( 'all', function( type, arg1, arg2 ) {
- * console.log( type, arg1, arg2 ); // => 'testa', 'arg1', 'arg2'
- * });
- * ```
- *
- * @method on
- * @grammar on( name, callback[, context] ) => self
- * @param {String} name 事件名,支持多个事件用空格隔开
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- * @class Mediator
- */
- on: function( name, callback, context ) {
- var me = this,
- set;
+ /**
+ * @fileOverview Uploader上传类
+ */
+ define('uploader',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$;
+
+ /**
+ * 上传入口类。
+ * @class Uploader
+ * @constructor
+ * @grammar new Uploader( opts ) => Uploader
+ * @example
+ * var uploader = WebUploader.Uploader({
+ * swf: 'path_of_swf/Uploader.swf',
+ *
+ * // 开起分片上传。
+ * chunked: true
+ * });
+ */
+ function Uploader( opts ) {
+ this.options = $.extend( true, {}, Uploader.options, opts );
+ this._init( this.options );
+ }
+
+ // default Options
+ // widgets中有相应扩展
+ Uploader.options = {};
+ Mediator.installTo( Uploader.prototype );
+
+ // 批量添加纯命令式方法。
+ $.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( fn, command ) {
+ Uploader.prototype[ fn ] = function() {
+ return this.request( command, arguments );
+ };
+ });
+
+ $.extend( Uploader.prototype, {
+ state: 'pending',
+
+ _init: function( opts ) {
+ var me = this;
+
+ me.request( 'init', opts, function() {
+ me.state = 'ready';
+ me.trigger('ready');
+ });
+ },
+
+ /**
+ * 获取或者设置Uploader配置项。
+ * @method option
+ * @grammar option( key ) => *
+ * @grammar option( key, val ) => self
+ * @example
+ *
+ * // 初始状态图片上传前不会压缩
+ * var uploader = new WebUploader.Uploader({
+ * compress: null;
+ * });
+ *
+ * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
+ * uploader.option( 'compress', {
+ * width: 1600,
+ * height: 1600
+ * });
+ */
+ option: function( key, val ) {
+ var opts = this.options;
+
+ // setter
+ if ( arguments.length > 1 ) {
+
+ if ( $.isPlainObject( val ) &&
+ $.isPlainObject( opts[ key ] ) ) {
+ $.extend( opts[ key ], val );
+ } else {
+ opts[ key ] = val;
+ }
+
+ } else { // getter
+ return key ? opts[ key ] : opts;
+ }
+ },
+
+ /**
+ * 获取文件统计信息。返回一个包含一下信息的对象。
+ * * `successNum` 上传成功的文件数
+ * * `progressNum` 上传中的文件数
+ * * `cancelNum` 被删除的文件数
+ * * `invalidNum` 无效的文件数
+ * * `uploadFailNum` 上传失败的文件数
+ * * `queueNum` 还在队列中的文件数
+ * * `interruptNum` 被暂停的文件数
+ * @method getStats
+ * @grammar getStats() => Object
+ */
+ getStats: function() {
+ // return this._mgr.getStats.apply( this._mgr, arguments );
+ var stats = this.request('get-stats');
+
+ return stats ? {
+ successNum: stats.numOfSuccess,
+ progressNum: stats.numOfProgress,
+
+ // who care?
+ // queueFailNum: 0,
+ cancelNum: stats.numOfCancel,
+ invalidNum: stats.numOfInvalid,
+ uploadFailNum: stats.numOfUploadFailed,
+ queueNum: stats.numOfQueue,
+ interruptNum: stats.numOfInterrupt
+ } : {};
+ },
+
+ // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
+ trigger: function( type/*, args...*/ ) {
+ var args = [].slice.call( arguments, 1 ),
+ opts = this.options,
+ name = 'on' + type.substring( 0, 1 ).toUpperCase() +
+ type.substring( 1 );
+
+ if (
+ // 调用通过on方法注册的handler.
+ Mediator.trigger.apply( this, arguments ) === false ||
+
+ // 调用opts.onEvent
+ $.isFunction( opts[ name ] ) &&
+ opts[ name ].apply( this, args ) === false ||
+
+ // 调用this.onEvent
+ $.isFunction( this[ name ] ) &&
+ this[ name ].apply( this, args ) === false ||
+
+ // 广播所有uploader的事件。
+ Mediator.trigger.apply( Mediator,
+ [ this, type ].concat( args ) ) === false ) {
+
+ return false;
+ }
+
+ return true;
+ },
+
+ /**
+ * 销毁 webuploader 实例
+ * @method destroy
+ * @grammar destroy() => undefined
+ */
+ destroy: function() {
+ this.request( 'destroy', arguments );
+ this.off();
+ },
+
+ // widgets/widget.js将补充此方法的详细文档。
+ request: Base.noop
+ });
+
+ /**
+ * 创建Uploader实例,等同于new Uploader( opts );
+ * @method create
+ * @class Base
+ * @static
+ * @grammar Base.create( opts ) => Uploader
+ */
+ Base.create = Uploader.create = function( opts ) {
+ return new Uploader( opts );
+ };
+
+ // 暴露Uploader,可以通过它来扩展业务逻辑。
+ Base.Uploader = Uploader;
+
+ return Uploader;
+ });
- if ( !callback ) {
- return this;
- }
-
- set = this._events || (this._events = []);
-
- eachEvent( name, callback, function( name, callback ) {
- var handler = { e: name };
-
- handler.cb = callback;
- handler.ctx = context;
- handler.ctx2 = context || me;
- handler.id = set.length;
-
- set.push( handler );
- });
-
- return this;
- },
-
- /**
- * 绑定事件,且当handler执行完后,自动解除绑定。
- * @method once
- * @grammar once( name, callback[, context] ) => self
- * @param {String} name 事件名
- * @param {Function} callback 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- once: function( name, callback, context ) {
- var me = this;
-
- if ( !callback ) {
- return me;
- }
-
- eachEvent( name, callback, function( name, callback ) {
- var once = function() {
- me.off( name, once );
- return callback.apply( context || me, arguments );
- };
-
- once._cb = callback;
- me.on( name, once, context );
- });
-
- return me;
- },
-
- /**
- * 解除事件绑定
- * @method off
- * @grammar off( [name[, callback[, context] ] ] ) => self
- * @param {String} [name] 事件名
- * @param {Function} [callback] 事件处理器
- * @param {Object} [context] 事件处理器的上下文。
- * @return {self} 返回自身,方便链式
- * @chainable
- */
- off: function( name, cb, ctx ) {
- var events = this._events;
-
- if ( !events ) {
- return this;
- }
-
- if ( !name && !cb && !ctx ) {
- this._events = [];
- return this;
- }
-
- eachEvent( name, cb, function( name, cb ) {
- $.each( findHandlers( events, name, cb, ctx ), function() {
- delete events[ this.id ];
- });
- });
-
- return this;
- },
-
- /**
- * 触发事件
- * @method trigger
- * @grammar trigger( name[, args...] ) => self
- * @param {String} type 事件名
- * @param {*} [...] 任意参数
- * @return {Boolean} 如果handler中return false了,则返回false, 否则返回true
- */
- trigger: function( type ) {
- var args, events, allEvents;
-
- if ( !this._events || !type ) {
- return this;
- }
-
- args = slice.call( arguments, 1 );
- events = findHandlers( this._events, type );
- allEvents = findHandlers( this._events, 'all' );
-
- return triggerHanders( events, args ) &&
- triggerHanders( allEvents, arguments );
- }
- };
-
- /**
- * 中介者,它本身是个单例,但可以通过[installTo](#WebUploader:Mediator:installTo)方法,使任何对象具备事件行为。
- * 主要目的是负责模块与模块之间的合作,降低耦合度。
- *
- * @class Mediator
- */
- return $.extend({
-
- /**
- * 可以通过这个接口,使任何对象具备事件功能。
- * @method installTo
- * @param {Object} obj 需要具备事件行为的对象。
- * @return {Object} 返回obj.
- */
- installTo: function( obj ) {
- return $.extend( obj, protos );
- }
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/runtime',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ factories = {},
+
+ // 获取对象的第一个key
+ getFirstKey = function( obj ) {
+ for ( var key in obj ) {
+ if ( obj.hasOwnProperty( key ) ) {
+ return key;
+ }
+ }
+ return null;
+ };
+
+ // 接口类。
+ function Runtime( options ) {
+ this.options = $.extend({
+ container: document.body
+ }, options );
+ this.uid = Base.guid('rt_');
+ }
+
+ $.extend( Runtime.prototype, {
+
+ getContainer: function() {
+ var opts = this.options,
+ parent, container;
+
+ if ( this._container ) {
+ return this._container;
+ }
+
+ parent = $( opts.container || document.body );
+ container = $( document.createElement('div') );
+
+ container.attr( 'id', 'rt_' + this.uid );
+ container.css({
+ position: 'absolute',
+ top: '0px',
+ left: '0px',
+ width: '1px',
+ height: '1px',
+ overflow: 'hidden'
+ });
+
+ parent.append( container );
+ parent.addClass('webuploader-container');
+ this._container = container;
+ this._parent = parent;
+ return container;
+ },
+
+ init: Base.noop,
+ exec: Base.noop,
+
+ destroy: function() {
+ this._container && this._container.remove();
+ this._parent && this._parent.removeClass('webuploader-container');
+ this.off();
+ }
+ });
+
+ Runtime.orders = 'html5,flash';
+
+
+ /**
+ * 添加Runtime实现。
+ * @param {String} type 类型
+ * @param {Runtime} factory 具体Runtime实现。
+ */
+ Runtime.addRuntime = function( type, factory ) {
+ factories[ type ] = factory;
+ };
+
+ Runtime.hasRuntime = function( type ) {
+ return !!(type ? factories[ type ] : getFirstKey( factories ));
+ };
+
+ Runtime.create = function( opts, orders ) {
+ var type, runtime;
+
+ orders = orders || Runtime.orders;
+ $.each( orders.split( /\s*,\s*/g ), function() {
+ if ( factories[ this ] ) {
+ type = this;
+ return false;
+ }
+ });
+
+ type = type || getFirstKey( factories );
+
+ if ( !type ) {
+ throw new Error('Runtime Error');
+ }
+
+ runtime = new factories[ type ]( opts );
+ return runtime;
+ };
+
+ Mediator.installTo( Runtime.prototype );
+ return Runtime;
+ });
- }, protos );
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/client',[
+ 'base',
+ 'mediator',
+ 'runtime/runtime'
+ ], function( Base, Mediator, Runtime ) {
+
+ var cache;
+
+ cache = (function() {
+ var obj = {};
+
+ return {
+ add: function( runtime ) {
+ obj[ runtime.uid ] = runtime;
+ },
+
+ get: function( ruid, standalone ) {
+ var i;
+
+ if ( ruid ) {
+ return obj[ ruid ];
+ }
+
+ for ( i in obj ) {
+ // 有些类型不能重用,比如filepicker.
+ if ( standalone && obj[ i ].__standalone ) {
+ continue;
+ }
+
+ return obj[ i ];
+ }
+
+ return null;
+ },
+
+ remove: function( runtime ) {
+ delete obj[ runtime.uid ];
+ }
+ };
+ })();
+
+ function RuntimeClient( component, standalone ) {
+ var deferred = Base.Deferred(),
+ runtime;
+
+ this.uid = Base.guid('client_');
+
+ // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
+ this.runtimeReady = function( cb ) {
+ return deferred.done( cb );
+ };
+
+ this.connectRuntime = function( opts, cb ) {
+
+ // already connected.
+ if ( runtime ) {
+ throw new Error('already connected!');
+ }
+
+ deferred.done( cb );
+
+ if ( typeof opts === 'string' && cache.get( opts ) ) {
+ runtime = cache.get( opts );
+ }
+
+ // 像filePicker只能独立存在,不能公用。
+ runtime = runtime || cache.get( null, standalone );
+
+ // 需要创建
+ if ( !runtime ) {
+ runtime = Runtime.create( opts, opts.runtimeOrder );
+ runtime.__promise = deferred.promise();
+ runtime.once( 'ready', deferred.resolve );
+ runtime.init();
+ cache.add( runtime );
+ runtime.__client = 1;
+ } else {
+ // 来自cache
+ Base.$.extend( runtime.options, opts );
+ runtime.__promise.then( deferred.resolve );
+ runtime.__client++;
+ }
+
+ standalone && (runtime.__standalone = standalone);
+ return runtime;
+ };
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.disconnectRuntime = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ runtime.__client--;
+
+ if ( runtime.__client <= 0 ) {
+ cache.remove( runtime );
+ delete runtime.__promise;
+ runtime.destroy();
+ }
+
+ runtime = null;
+ };
+
+ this.exec = function() {
+ if ( !runtime ) {
+ return;
+ }
+
+ var args = Base.slice( arguments );
+ component && args.unshift( component );
+
+ return runtime.exec.apply( this, args );
+ };
+
+ this.getRuid = function() {
+ return runtime && runtime.uid;
+ };
+
+ this.destroy = (function( destroy ) {
+ return function() {
+ destroy && destroy.apply( this, arguments );
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ };
+ })( this.destroy );
+ }
+
+ Mediator.installTo( RuntimeClient.prototype );
+ return RuntimeClient;
});
- /**
- * @fileOverview Uploader上传类
- */
- define('uploader',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$;
-
- /**
- * 上传入口类。
- * @class Uploader
- * @constructor
- * @grammar new Uploader( opts ) => Uploader
- * @example
- * var uploader = WebUploader.Uploader({
- * swf: 'path_of_swf/Uploader.swf',
- *
- * // 开起分片上传。
- * chunked: true
- * });
- */
- function Uploader( opts ) {
- this.options = $.extend( true, {}, Uploader.options, opts );
- this._init( this.options );
- }
-
- // default Options
- // widgets中有相应扩展
- Uploader.options = {};
- Mediator.installTo( Uploader.prototype );
-
- // 批量添加纯命令式方法。
- $.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( fn, command ) {
- Uploader.prototype[ fn ] = function() {
- return this.request( command, arguments );
- };
- });
-
- $.extend( Uploader.prototype, {
- state: 'pending',
-
- _init: function( opts ) {
- var me = this;
-
- me.request( 'init', opts, function() {
- me.state = 'ready';
- me.trigger('ready');
- });
- },
-
- /**
- * 获取或者设置Uploader配置项。
- * @method option
- * @grammar option( key ) => *
- * @grammar option( key, val ) => self
- * @example
- *
- * // 初始状态图片上传前不会压缩
- * var uploader = new WebUploader.Uploader({
- * compress: null;
- * });
- *
- * // 修改后图片上传前,尝试将图片压缩到1600 * 1600
- * uploader.option( 'compress', {
- * width: 1600,
- * height: 1600
- * });
- */
- option: function( key, val ) {
- var opts = this.options;
-
- // setter
- if ( arguments.length > 1 ) {
-
- if ( $.isPlainObject( val ) &&
- $.isPlainObject( opts[ key ] ) ) {
- $.extend( opts[ key ], val );
- } else {
- opts[ key ] = val;
- }
-
- } else { // getter
- return key ? opts[ key ] : opts;
- }
- },
-
- /**
- * 获取文件统计信息。返回一个包含一下信息的对象。
- * * `successNum` 上传成功的文件数
- * * `progressNum` 上传中的文件数
- * * `cancelNum` 被删除的文件数
- * * `invalidNum` 无效的文件数
- * * `uploadFailNum` 上传失败的文件数
- * * `queueNum` 还在队列中的文件数
- * * `interruptNum` 被暂停的文件数
- * @method getStats
- * @grammar getStats() => Object
- */
- getStats: function() {
- // return this._mgr.getStats.apply( this._mgr, arguments );
- var stats = this.request('get-stats');
-
- return stats ? {
- successNum: stats.numOfSuccess,
- progressNum: stats.numOfProgress,
-
- // who care?
- // queueFailNum: 0,
- cancelNum: stats.numOfCancel,
- invalidNum: stats.numOfInvalid,
- uploadFailNum: stats.numOfUploadFailed,
- queueNum: stats.numOfQueue,
- interruptNum: stats.numOfInterrupt
- } : {};
- },
-
- // 需要重写此方法来来支持opts.onEvent和instance.onEvent的处理器
- trigger: function( type/*, args...*/ ) {
- var args = [].slice.call( arguments, 1 ),
- opts = this.options,
- name = 'on' + type.substring( 0, 1 ).toUpperCase() +
- type.substring( 1 );
-
- if (
- // 调用通过on方法注册的handler.
- Mediator.trigger.apply( this, arguments ) === false ||
-
- // 调用opts.onEvent
- $.isFunction( opts[ name ] ) &&
- opts[ name ].apply( this, args ) === false ||
-
- // 调用this.onEvent
- $.isFunction( this[ name ] ) &&
- this[ name ].apply( this, args ) === false ||
-
- // 广播所有uploader的事件。
- Mediator.trigger.apply( Mediator,
- [ this, type ].concat( args ) ) === false ) {
-
- return false;
- }
-
- return true;
- },
-
- /**
- * 销毁 webuploader 实例
- * @method destroy
- * @grammar destroy() => undefined
- */
- destroy: function() {
- this.request( 'destroy', arguments );
- this.off();
- },
-
- // widgets/widget.js将补充此方法的详细文档。
- request: Base.noop
- });
-
- /**
- * 创建Uploader实例,等同于new Uploader( opts );
- * @method create
- * @class Base
- * @static
- * @grammar Base.create( opts ) => Uploader
- */
- Base.create = Uploader.create = function( opts ) {
- return new Uploader( opts );
- };
-
- // 暴露Uploader,可以通过它来扩展业务逻辑。
- Base.Uploader = Uploader;
-
- return Uploader;
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/dnd',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function DragAndDrop( opts ) {
+ opts = this.options = $.extend({}, DragAndDrop.options, opts );
+
+ opts.container = $( opts.container );
+
+ if ( !opts.container.length ) {
+ return;
+ }
+
+ RuntimeClent.call( this, 'DragAndDrop' );
+ }
+
+ DragAndDrop.options = {
+ accept: null,
+ disableGlobalDnd: false
+ };
+
+ Base.inherits( RuntimeClent, {
+ constructor: DragAndDrop,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( DragAndDrop.prototype );
+
+ return DragAndDrop;
});
-
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/runtime',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- factories = {},
-
- // 获取对象的第一个key
- getFirstKey = function( obj ) {
- for ( var key in obj ) {
- if ( obj.hasOwnProperty( key ) ) {
- return key;
- }
- }
- return null;
- };
-
- // 接口类。
- function Runtime( options ) {
- this.options = $.extend({
- container: document.body
- }, options );
- this.uid = Base.guid('rt_');
- }
-
- $.extend( Runtime.prototype, {
-
- getContainer: function() {
- var opts = this.options,
- parent, container;
-
- if ( this._container ) {
- return this._container;
- }
-
- parent = $( opts.container || document.body );
- container = $( document.createElement('div') );
-
- container.attr( 'id', 'rt_' + this.uid );
- container.css({
- position: 'absolute',
- top: '0px',
- left: '0px',
- width: '1px',
- height: '1px',
- overflow: 'hidden'
- });
-
- parent.append( container );
- parent.addClass('webuploader-container');
- this._container = container;
- this._parent = parent;
- return container;
- },
-
- init: Base.noop,
- exec: Base.noop,
-
- destroy: function() {
- this._container && this._container.remove();
- this._parent && this._parent.removeClass('webuploader-container');
- this.off();
- }
- });
-
- Runtime.orders = 'html5,flash';
-
-
- /**
- * 添加Runtime实现。
- * @param {String} type 类型
- * @param {Runtime} factory 具体Runtime实现。
- */
- Runtime.addRuntime = function( type, factory ) {
- factories[ type ] = factory;
- };
-
- Runtime.hasRuntime = function( type ) {
- return !!(type ? factories[ type ] : getFirstKey( factories ));
- };
-
- Runtime.create = function( opts, orders ) {
- var type, runtime;
-
- orders = orders || Runtime.orders;
- $.each( orders.split( /\s*,\s*/g ), function() {
- if ( factories[ this ] ) {
- type = this;
- return false;
- }
- });
-
- type = type || getFirstKey( factories );
-
- if ( !type ) {
- throw new Error('Runtime Error');
- }
-
- runtime = new factories[ type ]( opts );
- return runtime;
- };
-
- Mediator.installTo( Runtime.prototype );
- return Runtime;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/widget',[
+ 'base',
+ 'uploader'
+ ], function( Base, Uploader ) {
+
+ var $ = Base.$,
+ _init = Uploader.prototype._init,
+ _destroy = Uploader.prototype.destroy,
+ IGNORE = {},
+ widgetClass = [];
+
+ function isArrayLike( obj ) {
+ if ( !obj ) {
+ return false;
+ }
+
+ var length = obj.length,
+ type = $.type( obj );
+
+ if ( obj.nodeType === 1 && length ) {
+ return true;
+ }
+
+ return type === 'array' || type !== 'function' && type !== 'string' &&
+ (length === 0 || typeof length === 'number' && length > 0 &&
+ (length - 1) in obj);
+ }
+
+ function Widget( uploader ) {
+ this.owner = uploader;
+ this.options = uploader.options;
+ }
+
+ $.extend( Widget.prototype, {
+
+ init: Base.noop,
+
+ // 类Backbone的事件监听声明,监听uploader实例上的事件
+ // widget直接无法监听事件,事件只能通过uploader来传递
+ invoke: function( apiName, args ) {
+
+ /*
+ {
+ 'make-thumb': 'makeThumb'
+ }
+ */
+ var map = this.responseMap;
+
+ // 如果无API响应声明则忽略
+ if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
+ !$.isFunction( this[ map[ apiName ] ] ) ) {
+
+ return IGNORE;
+ }
+
+ return this[ map[ apiName ] ].apply( this, args );
+
+ },
+
+ /**
+ * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
+ * @method request
+ * @grammar request( command, args ) => * | Promise
+ * @grammar request( command, args, callback ) => Promise
+ * @for Uploader
+ */
+ request: function() {
+ return this.owner.request.apply( this.owner, arguments );
+ }
+ });
+
+ // 扩展Uploader.
+ $.extend( Uploader.prototype, {
+
+ /**
+ * @property {String | Array} [disableWidgets=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
+ */
+
+ // 覆写_init用来初始化widgets
+ _init: function() {
+ var me = this,
+ widgets = me._widgets = [],
+ deactives = me.options.disableWidgets || '';
+
+ $.each( widgetClass, function( _, klass ) {
+ (!deactives || !~deactives.indexOf( klass._name )) &&
+ widgets.push( new klass( me ) );
+ });
+
+ return _init.apply( me, arguments );
+ },
+
+ request: function( apiName, args, callback ) {
+ var i = 0,
+ widgets = this._widgets,
+ len = widgets && widgets.length,
+ rlts = [],
+ dfds = [],
+ widget, rlt, promise, key;
+
+ args = isArrayLike( args ) ? args : [ args ];
+
+ for ( ; i < len; i++ ) {
+ widget = widgets[ i ];
+ rlt = widget.invoke( apiName, args );
+
+ if ( rlt !== IGNORE ) {
+
+ // Deferred对象
+ if ( Base.isPromise( rlt ) ) {
+ dfds.push( rlt );
+ } else {
+ rlts.push( rlt );
+ }
+ }
+ }
+
+ // 如果有callback,则用异步方式。
+ if ( callback || dfds.length ) {
+ promise = Base.when.apply( Base, dfds );
+ key = promise.pipe ? 'pipe' : 'then';
+
+ // 很重要不能删除。删除了会死循环。
+ // 保证执行顺序。让callback总是在下一个 tick 中执行。
+ return promise[ key ](function() {
+ var deferred = Base.Deferred(),
+ args = arguments;
+
+ if ( args.length === 1 ) {
+ args = args[ 0 ];
+ }
+
+ setTimeout(function() {
+ deferred.resolve( args );
+ }, 1 );
+
+ return deferred.promise();
+ })[ callback ? key : 'done' ]( callback || Base.noop );
+ } else {
+ return rlts[ 0 ];
+ }
+ },
+
+ destroy: function() {
+ _destroy.apply( this, arguments );
+ this._widgets = null;
+ }
+ });
+
+ /**
+ * 添加组件
+ * @grammar Uploader.register(proto);
+ * @grammar Uploader.register(map, proto);
+ * @param {object} responseMap API 名称与函数实现的映射
+ * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
+ * @method Uploader.register
+ * @for Uploader
+ * @example
+ * Uploader.register({
+ * 'make-thumb': 'makeThumb'
+ * }, {
+ * init: function( options ) {},
+ * makeThumb: function() {}
+ * });
+ *
+ * Uploader.register({
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ */
+ Uploader.register = Widget.register = function( responseMap, widgetProto ) {
+ var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
+ klass;
+
+ if ( arguments.length === 1 ) {
+ widgetProto = responseMap;
+
+ // 自动生成 map 表。
+ $.each(widgetProto, function(key) {
+ if ( key[0] === '_' || key === 'name' ) {
+ key === 'name' && (map.name = widgetProto.name);
+ return;
+ }
+
+ map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
+ });
+
+ } else {
+ map = $.extend( map, responseMap );
+ }
+
+ widgetProto.responseMap = map;
+ klass = Base.inherits( Widget, widgetProto );
+ klass._name = map.name;
+ widgetClass.push( klass );
+
+ return klass;
+ };
+
+ /**
+ * 删除插件,只有在注册时指定了名字的才能被删除。
+ * @grammar Uploader.unRegister(name);
+ * @param {string} name 组件名字
+ * @method Uploader.unRegister
+ * @for Uploader
+ * @example
+ *
+ * Uploader.register({
+ * name: 'custom',
+ *
+ * 'make-thumb': function() {
+ *
+ * }
+ * });
+ *
+ * Uploader.unRegister('custom');
+ */
+ Uploader.unRegister = Widget.unRegister = function( name ) {
+ if ( !name || name === 'anonymous' ) {
+ return;
+ }
+
+ // 删除指定的插件。
+ for ( var i = widgetClass.length; i--; ) {
+ if ( widgetClass[i]._name === name ) {
+ widgetClass.splice(i, 1)
+ }
+ }
+ };
+
+ return Widget;
});
+ /**
+ * @fileOverview DragAndDrop Widget。
+ */
+ define('widgets/filednd',[
+ 'base',
+ 'uploader',
+ 'lib/dnd',
+ 'widgets/widget'
+ ], function( Base, Uploader, Dnd ) {
+ var $ = Base.$;
+
+ Uploader.options.dnd = '';
+
+ /**
+ * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
+ * @namespace options
+ * @for Uploader
+ */
+
+ /**
+ * @event dndAccept
+ * @param {DataTransferItemList} items DataTransferItem
+ * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'dnd',
+
+ init: function( opts ) {
+
+ if ( !opts.dnd ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ disableGlobalDnd: opts.disableGlobalDnd,
+ container: opts.dnd,
+ accept: opts.accept
+ }),
+ dnd;
+
+ this.dnd = dnd = new Dnd( options );
+
+ dnd.once( 'ready', deferred.resolve );
+ dnd.on( 'drop', function( files ) {
+ me.request( 'add-file', [ files ]);
+ });
+
+ // 检测文件是否全部允许添加。
+ dnd.on( 'accept', function( items ) {
+ return me.owner.trigger( 'dndAccept', items );
+ });
+
+ dnd.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.dnd && this.dnd.destroy();
+ }
+ });
+ });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/client',[
- 'base',
- 'mediator',
- 'runtime/runtime'
- ], function( Base, Mediator, Runtime ) {
-
- var cache;
-
- cache = (function() {
- var obj = {};
-
- return {
- add: function( runtime ) {
- obj[ runtime.uid ] = runtime;
- },
-
- get: function( ruid, standalone ) {
- var i;
-
- if ( ruid ) {
- return obj[ ruid ];
- }
-
- for ( i in obj ) {
- // 有些类型不能重用,比如filepicker.
- if ( standalone && obj[ i ].__standalone ) {
- continue;
- }
-
- return obj[ i ];
- }
-
- return null;
- },
-
- remove: function( runtime ) {
- delete obj[ runtime.uid ];
- }
- };
- })();
-
- function RuntimeClient( component, standalone ) {
- var deferred = Base.Deferred(),
- runtime;
-
- this.uid = Base.guid('client_');
-
- // 允许runtime没有初始化之前,注册一些方法在初始化后执行。
- this.runtimeReady = function( cb ) {
- return deferred.done( cb );
- };
-
- this.connectRuntime = function( opts, cb ) {
-
- // already connected.
- if ( runtime ) {
- throw new Error('already connected!');
- }
-
- deferred.done( cb );
-
- if ( typeof opts === 'string' && cache.get( opts ) ) {
- runtime = cache.get( opts );
- }
-
- // 像filePicker只能独立存在,不能公用。
- runtime = runtime || cache.get( null, standalone );
-
- // 需要创建
- if ( !runtime ) {
- runtime = Runtime.create( opts, opts.runtimeOrder );
- runtime.__promise = deferred.promise();
- runtime.once( 'ready', deferred.resolve );
- runtime.init();
- cache.add( runtime );
- runtime.__client = 1;
- } else {
- // 来自cache
- Base.$.extend( runtime.options, opts );
- runtime.__promise.then( deferred.resolve );
- runtime.__client++;
- }
-
- standalone && (runtime.__standalone = standalone);
- return runtime;
- };
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.disconnectRuntime = function() {
- if ( !runtime ) {
- return;
- }
-
- runtime.__client--;
-
- if ( runtime.__client <= 0 ) {
- cache.remove( runtime );
- delete runtime.__promise;
- runtime.destroy();
- }
-
- runtime = null;
- };
-
- this.exec = function() {
- if ( !runtime ) {
- return;
- }
-
- var args = Base.slice( arguments );
- component && args.unshift( component );
-
- return runtime.exec.apply( this, args );
- };
-
- this.getRuid = function() {
- return runtime && runtime.uid;
- };
-
- this.destroy = (function( destroy ) {
- return function() {
- destroy && destroy.apply( this, arguments );
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- };
- })( this.destroy );
- }
-
- Mediator.installTo( RuntimeClient.prototype );
- return RuntimeClient;
- });
- /**
- * @fileOverview 错误信息
- */
- define('lib/dnd',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function DragAndDrop( opts ) {
- opts = this.options = $.extend({}, DragAndDrop.options, opts );
-
- opts.container = $( opts.container );
-
- if ( !opts.container.length ) {
- return;
- }
-
- RuntimeClent.call( this, 'DragAndDrop' );
- }
-
- DragAndDrop.options = {
- accept: null,
- disableGlobalDnd: false
- };
-
- Base.inherits( RuntimeClent, {
- constructor: DragAndDrop,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( DragAndDrop.prototype );
-
- return DragAndDrop;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/widget',[
- 'base',
- 'uploader'
- ], function( Base, Uploader ) {
-
- var $ = Base.$,
- _init = Uploader.prototype._init,
- _destroy = Uploader.prototype.destroy,
- IGNORE = {},
- widgetClass = [];
-
- function isArrayLike( obj ) {
- if ( !obj ) {
- return false;
- }
-
- var length = obj.length,
- type = $.type( obj );
-
- if ( obj.nodeType === 1 && length ) {
- return true;
- }
-
- return type === 'array' || type !== 'function' && type !== 'string' &&
- (length === 0 || typeof length === 'number' && length > 0 &&
- (length - 1) in obj);
- }
-
- function Widget( uploader ) {
- this.owner = uploader;
- this.options = uploader.options;
- }
-
- $.extend( Widget.prototype, {
-
- init: Base.noop,
-
- // 类Backbone的事件监听声明,监听uploader实例上的事件
- // widget直接无法监听事件,事件只能通过uploader来传递
- invoke: function( apiName, args ) {
-
- /*
- {
- 'make-thumb': 'makeThumb'
- }
- */
- var map = this.responseMap;
-
- // 如果无API响应声明则忽略
- if ( !map || !(apiName in map) || !(map[ apiName ] in this) ||
- !$.isFunction( this[ map[ apiName ] ] ) ) {
-
- return IGNORE;
- }
-
- return this[ map[ apiName ] ].apply( this, args );
-
- },
-
- /**
- * 发送命令。当传入`callback`或者`handler`中返回`promise`时。返回一个当所有`handler`中的promise都完成后完成的新`promise`。
- * @method request
- * @grammar request( command, args ) => * | Promise
- * @grammar request( command, args, callback ) => Promise
- * @for Uploader
- */
- request: function() {
- return this.owner.request.apply( this.owner, arguments );
- }
- });
-
- // 扩展Uploader.
- $.extend( Uploader.prototype, {
-
- /**
- * @property {String | Array} [disableWidgets=undefined]
- * @namespace options
- * @for Uploader
- * @description 默认所有 Uploader.register 了的 widget 都会被加载,如果禁用某一部分,请通过此 option 指定黑名单。
- */
-
- // 覆写_init用来初始化widgets
- _init: function() {
- var me = this,
- widgets = me._widgets = [],
- deactives = me.options.disableWidgets || '';
-
- $.each( widgetClass, function( _, klass ) {
- (!deactives || !~deactives.indexOf( klass._name )) &&
- widgets.push( new klass( me ) );
- });
-
- return _init.apply( me, arguments );
- },
-
- request: function( apiName, args, callback ) {
- var i = 0,
- widgets = this._widgets,
- len = widgets && widgets.length,
- rlts = [],
- dfds = [],
- widget, rlt, promise, key;
-
- args = isArrayLike( args ) ? args : [ args ];
-
- for ( ; i < len; i++ ) {
- widget = widgets[ i ];
- rlt = widget.invoke( apiName, args );
-
- if ( rlt !== IGNORE ) {
-
- // Deferred对象
- if ( Base.isPromise( rlt ) ) {
- dfds.push( rlt );
- } else {
- rlts.push( rlt );
- }
- }
- }
-
- // 如果有callback,则用异步方式。
- if ( callback || dfds.length ) {
- promise = Base.when.apply( Base, dfds );
- key = promise.pipe ? 'pipe' : 'then';
-
- // 很重要不能删除。删除了会死循环。
- // 保证执行顺序。让callback总是在下一个 tick 中执行。
- return promise[ key ](function() {
- var deferred = Base.Deferred(),
- args = arguments;
-
- if ( args.length === 1 ) {
- args = args[ 0 ];
- }
-
- setTimeout(function() {
- deferred.resolve( args );
- }, 1 );
-
- return deferred.promise();
- })[ callback ? key : 'done' ]( callback || Base.noop );
- } else {
- return rlts[ 0 ];
- }
- },
-
- destroy: function() {
- _destroy.apply( this, arguments );
- this._widgets = null;
- }
- });
-
- /**
- * 添加组件
- * @grammar Uploader.register(proto);
- * @grammar Uploader.register(map, proto);
- * @param {object} responseMap API 名称与函数实现的映射
- * @param {object} proto 组件原型,构造函数通过 constructor 属性定义
- * @method Uploader.register
- * @for Uploader
- * @example
- * Uploader.register({
- * 'make-thumb': 'makeThumb'
- * }, {
- * init: function( options ) {},
- * makeThumb: function() {}
- * });
- *
- * Uploader.register({
- * 'make-thumb': function() {
- *
- * }
- * });
- */
- Uploader.register = Widget.register = function( responseMap, widgetProto ) {
- var map = { init: 'init', destroy: 'destroy', name: 'anonymous' },
- klass;
-
- if ( arguments.length === 1 ) {
- widgetProto = responseMap;
-
- // 自动生成 map 表。
- $.each(widgetProto, function(key) {
- if ( key[0] === '_' || key === 'name' ) {
- key === 'name' && (map.name = widgetProto.name);
- return;
- }
-
- map[key.replace(/[A-Z]/g, '-$&').toLowerCase()] = key;
- });
-
- } else {
- map = $.extend( map, responseMap );
- }
-
- widgetProto.responseMap = map;
- klass = Base.inherits( Widget, widgetProto );
- klass._name = map.name;
- widgetClass.push( klass );
-
- return klass;
- };
-
- /**
- * 删除插件,只有在注册时指定了名字的才能被删除。
- * @grammar Uploader.unRegister(name);
- * @param {string} name 组件名字
- * @method Uploader.unRegister
- * @for Uploader
- * @example
- *
- * Uploader.register({
- * name: 'custom',
- *
- * 'make-thumb': function() {
- *
- * }
- * });
- *
- * Uploader.unRegister('custom');
- */
- Uploader.unRegister = Widget.unRegister = function( name ) {
- if ( !name || name === 'anonymous' ) {
- return;
- }
-
- // 删除指定的插件。
- for ( var i = widgetClass.length; i--; ) {
- if ( widgetClass[i]._name === name ) {
- widgetClass.splice(i, 1)
- }
- }
- };
-
- return Widget;
- });
- /**
- * @fileOverview DragAndDrop Widget。
- */
- define('widgets/filednd',[
- 'base',
- 'uploader',
- 'lib/dnd',
- 'widgets/widget'
- ], function( Base, Uploader, Dnd ) {
- var $ = Base.$;
-
- Uploader.options.dnd = '';
-
- /**
- * @property {Selector} [dnd=undefined] 指定Drag And Drop拖拽的容器,如果不指定,则不启动。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @property {Selector} [disableGlobalDnd=false] 是否禁掉整个页面的拖拽功能,如果不禁用,图片拖进来的时候会默认被浏览器打开。
- * @namespace options
- * @for Uploader
- */
-
- /**
- * @event dndAccept
- * @param {DataTransferItemList} items DataTransferItem
- * @description 阻止此事件可以拒绝某些类型的文件拖入进来。目前只有 chrome 提供这样的 API,且只能通过 mime-type 验证。
- * @for Uploader
- */
- return Uploader.register({
- name: 'dnd',
-
- init: function( opts ) {
-
- if ( !opts.dnd ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- disableGlobalDnd: opts.disableGlobalDnd,
- container: opts.dnd,
- accept: opts.accept
- }),
- dnd;
-
- this.dnd = dnd = new Dnd( options );
-
- dnd.once( 'ready', deferred.resolve );
- dnd.on( 'drop', function( files ) {
- me.request( 'add-file', [ files ]);
- });
-
- // 检测文件是否全部允许添加。
- dnd.on( 'accept', function( items ) {
- return me.owner.trigger( 'dndAccept', items );
- });
-
- dnd.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.dnd && this.dnd.destroy();
- }
- });
- });
-
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepaste',[
- 'base',
- 'mediator',
- 'runtime/client'
- ], function( Base, Mediator, RuntimeClent ) {
-
- var $ = Base.$;
-
- function FilePaste( opts ) {
- opts = this.options = $.extend({}, opts );
- opts.container = $( opts.container || document.body );
- RuntimeClent.call( this, 'FilePaste' );
- }
-
- Base.inherits( RuntimeClent, {
- constructor: FilePaste,
-
- init: function() {
- var me = this;
-
- me.connectRuntime( me.options, function() {
- me.exec('init');
- me.trigger('ready');
- });
- }
- });
-
- Mediator.installTo( FilePaste.prototype );
-
- return FilePaste;
- });
- /**
- * @fileOverview 组件基类。
- */
- define('widgets/filepaste',[
- 'base',
- 'uploader',
- 'lib/filepaste',
- 'widgets/widget'
- ], function( Base, Uploader, FilePaste ) {
- var $ = Base.$;
-
- /**
- * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
- * @namespace options
- * @for Uploader
- */
- return Uploader.register({
- name: 'paste',
-
- init: function( opts ) {
-
- if ( !opts.paste ||
- this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- var me = this,
- deferred = Base.Deferred(),
- options = $.extend({}, {
- container: opts.paste,
- accept: opts.accept
- }),
- paste;
-
- this.paste = paste = new FilePaste( options );
-
- paste.once( 'ready', deferred.resolve );
- paste.on( 'paste', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- paste.init();
-
- return deferred.promise();
- },
-
- destroy: function() {
- this.paste && this.paste.destroy();
- }
- });
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepaste',[
+ 'base',
+ 'mediator',
+ 'runtime/client'
+ ], function( Base, Mediator, RuntimeClent ) {
+
+ var $ = Base.$;
+
+ function FilePaste( opts ) {
+ opts = this.options = $.extend({}, opts );
+ opts.container = $( opts.container || document.body );
+ RuntimeClent.call( this, 'FilePaste' );
+ }
+
+ Base.inherits( RuntimeClent, {
+ constructor: FilePaste,
+
+ init: function() {
+ var me = this;
+
+ me.connectRuntime( me.options, function() {
+ me.exec('init');
+ me.trigger('ready');
+ });
+ }
+ });
+
+ Mediator.installTo( FilePaste.prototype );
+
+ return FilePaste;
});
- /**
- * @fileOverview Blob
- */
- define('lib/blob',[
- 'base',
- 'runtime/client'
- ], function( Base, RuntimeClient ) {
-
- function Blob( ruid, source ) {
- var me = this;
-
- me.source = source;
- me.ruid = ruid;
- this.size = source.size || 0;
-
- // 如果没有指定 mimetype, 但是知道文件后缀。
- if ( !source.type && this.ext &&
- ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
- this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
- } else {
- this.type = source.type || 'application/octet-stream';
- }
-
- RuntimeClient.call( me, 'Blob' );
- this.uid = source.uid || this.uid;
-
- if ( ruid ) {
- me.connectRuntime( ruid );
- }
- }
-
- Base.inherits( RuntimeClient, {
- constructor: Blob,
-
- slice: function( start, end ) {
- return this.exec( 'slice', start, end );
- },
-
- getSource: function() {
- return this.source;
- }
- });
-
- return Blob;
+ /**
+ * @fileOverview 组件基类。
+ */
+ define('widgets/filepaste',[
+ 'base',
+ 'uploader',
+ 'lib/filepaste',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePaste ) {
+ var $ = Base.$;
+
+ /**
+ * @property {Selector} [paste=undefined] 指定监听paste事件的容器,如果不指定,不启用此功能。此功能为通过粘贴来添加截屏的图片。建议设置为`document.body`.
+ * @namespace options
+ * @for Uploader
+ */
+ return Uploader.register({
+ name: 'paste',
+
+ init: function( opts ) {
+
+ if ( !opts.paste ||
+ this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ var me = this,
+ deferred = Base.Deferred(),
+ options = $.extend({}, {
+ container: opts.paste,
+ accept: opts.accept
+ }),
+ paste;
+
+ this.paste = paste = new FilePaste( options );
+
+ paste.once( 'ready', deferred.resolve );
+ paste.on( 'paste', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ paste.init();
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ this.paste && this.paste.destroy();
+ }
+ });
});
- /**
- * 为了统一化Flash的File和HTML5的File而存在。
- * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
- * @fileOverview File
- */
- define('lib/file',[
- 'base',
- 'lib/blob'
- ], function( Base, Blob ) {
-
- var uid = 1,
- rExt = /\.([^.]+)$/;
-
- function File( ruid, file ) {
- var ext;
-
- this.name = file.name || ('untitled' + uid++);
- ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
-
- // todo 支持其他类型文件的转换。
- // 如果有 mimetype, 但是文件名里面没有找出后缀规律
- if ( !ext && file.type ) {
- ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
- RegExp.$1.toLowerCase() : '';
- this.name += '.' + ext;
- }
-
- this.ext = ext;
- this.lastModifiedDate = file.lastModifiedDate ||
- file.lastModified && new Date(file.lastModified).toLocaleString() ||
- (new Date()).toLocaleString();
-
- Blob.apply( this, arguments );
- }
-
- return Base.inherits( Blob, File );
+ /**
+ * @fileOverview Blob
+ */
+ define('lib/blob',[
+ 'base',
+ 'runtime/client'
+ ], function( Base, RuntimeClient ) {
+
+ function Blob( ruid, source ) {
+ var me = this;
+
+ me.source = source;
+ me.ruid = ruid;
+ this.size = source.size || 0;
+
+ // 如果没有指定 mimetype, 但是知道文件后缀。
+ if ( !source.type && this.ext &&
+ ~'jpg,jpeg,png,gif,bmp'.indexOf( this.ext ) ) {
+ this.type = 'image/' + (this.ext === 'jpg' ? 'jpeg' : this.ext);
+ } else {
+ this.type = source.type || 'application/octet-stream';
+ }
+
+ RuntimeClient.call( me, 'Blob' );
+ this.uid = source.uid || this.uid;
+
+ if ( ruid ) {
+ me.connectRuntime( ruid );
+ }
+ }
+
+ Base.inherits( RuntimeClient, {
+ constructor: Blob,
+
+ slice: function( start, end ) {
+ return this.exec( 'slice', start, end );
+ },
+
+ getSource: function() {
+ return this.source;
+ }
+ });
+
+ return Blob;
});
+ /**
+ * 为了统一化Flash的File和HTML5的File而存在。
+ * 以至于要调用Flash里面的File,也可以像调用HTML5版本的File一下。
+ * @fileOverview File
+ */
+ define('lib/file',[
+ 'base',
+ 'lib/blob'
+ ], function( Base, Blob ) {
+
+ var uid = 1,
+ rExt = /\.([^.]+)$/;
+
+ function File( ruid, file ) {
+ var ext;
+
+ this.name = file.name || ('untitled' + uid++);
+ ext = rExt.exec( file.name ) ? RegExp.$1.toLowerCase() : '';
+
+ // todo 支持其他类型文件的转换。
+ // 如果有 mimetype, 但是文件名里面没有找出后缀规律
+ if ( !ext && file.type ) {
+ ext = /\/(jpg|jpeg|png|gif|bmp)$/i.exec( file.type ) ?
+ RegExp.$1.toLowerCase() : '';
+ this.name += '.' + ext;
+ }
+
+ this.ext = ext;
+ this.lastModifiedDate = file.lastModifiedDate ||
+ file.lastModified && new Date(file.lastModified).toLocaleString() ||
+ (new Date()).toLocaleString();
+
+ Blob.apply( this, arguments );
+ }
+
+ return Base.inherits( Blob, File );
+ });
- /**
- * @fileOverview 错误信息
- */
- define('lib/filepicker',[
- 'base',
- 'runtime/client',
- 'lib/file'
- ], function( Base, RuntimeClient, File ) {
-
- var $ = Base.$;
-
- function FilePicker( opts ) {
- opts = this.options = $.extend({}, FilePicker.options, opts );
+ /**
+ * @fileOverview 错误信息
+ */
+ define('lib/filepicker',[
+ 'base',
+ 'runtime/client',
+ 'lib/file'
+ ], function( Base, RuntimeClient, File ) {
+
+ var $ = Base.$;
+
+ function FilePicker( opts ) {
+ opts = this.options = $.extend({}, FilePicker.options, opts );
+
+ opts.container = $( opts.id );
+
+ if ( !opts.container.length ) {
+ throw new Error('按钮指定错误');
+ }
+
+ opts.innerHTML = opts.innerHTML || opts.label ||
+ opts.container.html() || '';
+
+ opts.button = $( opts.button || document.createElement('div') );
+ opts.button.html( opts.innerHTML );
+ opts.container.html( opts.button );
+
+ RuntimeClient.call( this, 'FilePicker', true );
+ }
+
+ FilePicker.options = {
+ button: null,
+ container: null,
+ label: null,
+ innerHTML: null,
+ multiple: true,
+ accept: null,
+ name: 'file',
+ style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
+ };
+
+ Base.inherits( RuntimeClient, {
+ constructor: FilePicker,
+
+ init: function() {
+ var me = this,
+ opts = me.options,
+ button = opts.button,
+ style = opts.style;
+
+ if (style)
+ button.addClass('webuploader-pick');
+
+ me.on( 'all', function( type ) {
+ var files;
+
+ switch ( type ) {
+ case 'mouseenter':
+ if (style)
+ button.addClass('webuploader-pick-hover');
+ break;
+
+ case 'mouseleave':
+ if (style)
+ button.removeClass('webuploader-pick-hover');
+ break;
+
+ case 'change':
+ files = me.exec('getFiles');
+ me.trigger( 'select', $.map( files, function( file ) {
+ file = new File( me.getRuid(), file );
+
+ // 记录来源。
+ file._refer = opts.container;
+ return file;
+ }), opts.container );
+ break;
+ }
+ });
+
+ me.connectRuntime( opts, function() {
+ me.refresh();
+ me.exec( 'init', opts );
+ me.trigger('ready');
+ });
+
+ this._resizeHandler = Base.bindFn( this.refresh, this );
+ $( window ).on( 'resize', this._resizeHandler );
+ },
+
+ refresh: function() {
+ var shimContainer = this.getRuntime().getContainer(),
+ button = this.options.button,
+ /*
+ width = button.outerWidth ?
+ button.outerWidth() : button.width(),
+
+ height = button.outerHeight ?
+ button.outerHeight() : button.height(),
+ */
+ width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
+ height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
+ pos = button.offset();
+
+ width && height && shimContainer.css({
+ bottom: 'auto',
+ right: 'auto',
+ width: width + 'px',
+ height: height + 'px'
+ }).offset( pos );
+ },
+
+ enable: function() {
+ var btn = this.options.button;
+
+ btn.removeClass('webuploader-pick-disable');
+ this.refresh();
+ },
+
+ disable: function() {
+ var btn = this.options.button;
+
+ this.getRuntime().getContainer().css({
+ top: '-99999px'
+ });
+
+ btn.addClass('webuploader-pick-disable');
+ },
+
+ destroy: function() {
+ var btn = this.options.button;
+ $( window ).off( 'resize', this._resizeHandler );
+ btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
+ 'webuploader-pick');
+ }
+ });
+
+ return FilePicker;
+ });
- opts.container = $( opts.id );
-
- if ( !opts.container.length ) {
- throw new Error('按钮指定错误');
- }
-
- opts.innerHTML = opts.innerHTML || opts.label ||
- opts.container.html() || '';
-
- opts.button = $( opts.button || document.createElement('div') );
- opts.button.html( opts.innerHTML );
- opts.container.html( opts.button );
-
- RuntimeClient.call( this, 'FilePicker', true );
- }
-
- FilePicker.options = {
- button: null,
- container: null,
- label: null,
- innerHTML: null,
- multiple: true,
- accept: null,
- name: 'file',
- style: 'webuploader-pick' //pick element class attribute, default is "webuploader-pick"
- };
-
- Base.inherits( RuntimeClient, {
- constructor: FilePicker,
-
- init: function() {
- var me = this,
- opts = me.options,
- button = opts.button,
- style = opts.style;
-
- if (style)
- button.addClass('webuploader-pick');
-
- me.on( 'all', function( type ) {
- var files;
-
- switch ( type ) {
- case 'mouseenter':
- if (style)
- button.addClass('webuploader-pick-hover');
- break;
-
- case 'mouseleave':
- if (style)
- button.removeClass('webuploader-pick-hover');
- break;
-
- case 'change':
- files = me.exec('getFiles');
- me.trigger( 'select', $.map( files, function( file ) {
- file = new File( me.getRuid(), file );
-
- // 记录来源。
- file._refer = opts.container;
- return file;
- }), opts.container );
- break;
- }
- });
-
- me.connectRuntime( opts, function() {
- me.refresh();
- me.exec( 'init', opts );
- me.trigger('ready');
- });
-
- this._resizeHandler = Base.bindFn( this.refresh, this );
- $( window ).on( 'resize', this._resizeHandler );
- },
-
- refresh: function() {
- var shimContainer = this.getRuntime().getContainer(),
- button = this.options.button,
- /*
- width = button.outerWidth ?
- button.outerWidth() : button.width(),
-
- height = button.outerHeight ?
- button.outerHeight() : button.height(),
- */
- width = button[0] && button[0].offsetWidth || button.outerWidth() || button.width(),
- height = button[0] && button[0].offsetHeight || button.outerHeight() || button.height(),
- pos = button.offset();
-
- width && height && shimContainer.css({
- bottom: 'auto',
- right: 'auto',
- width: width + 'px',
- height: height + 'px'
- }).offset( pos );
- },
-
- enable: function() {
- var btn = this.options.button;
-
- btn.removeClass('webuploader-pick-disable');
- this.refresh();
- },
-
- disable: function() {
- var btn = this.options.button;
-
- this.getRuntime().getContainer().css({
- top: '-99999px'
- });
-
- btn.addClass('webuploader-pick-disable');
- },
-
- destroy: function() {
- var btn = this.options.button;
- $( window ).off( 'resize', this._resizeHandler );
- btn.removeClass('webuploader-pick-disable webuploader-pick-hover ' +
- 'webuploader-pick');
- }
- });
-
- return FilePicker;
+ /**
+ * @fileOverview 文件选择相关
+ */
+ define('widgets/filepicker',[
+ 'base',
+ 'uploader',
+ 'lib/filepicker',
+ 'widgets/widget'
+ ], function( Base, Uploader, FilePicker ) {
+ var $ = Base.$;
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Selector | Object} [pick=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 指定选择文件的按钮容器,不指定则不创建按钮。
+ *
+ * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
+ * * `label` {String} 请采用 `innerHTML` 代替
+ * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
+ * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
+ */
+ pick: null,
+
+ /**
+ * @property {Array} [accept=null]
+ * @namespace options
+ * @for Uploader
+ * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
+ *
+ * * `title` {String} 文字描述
+ * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
+ * * `mimeTypes` {String} 多个用逗号分割。
+ *
+ * 如:
+ *
+ * ```
+ * {
+ * title: 'Images',
+ * extensions: 'gif,jpg,jpeg,bmp,png',
+ * mimeTypes: 'image/*'
+ * }
+ * ```
+ */
+ accept: null/*{
+ title: 'Images',
+ extensions: 'gif,jpg,jpeg,bmp,png',
+ mimeTypes: 'image/*'
+ }*/
+ });
+
+ return Uploader.register({
+ name: 'picker',
+
+ init: function( opts ) {
+ this.pickers = [];
+ return opts.pick && this.addBtn( opts.pick );
+ },
+
+ refresh: function() {
+ $.each( this.pickers, function() {
+ this.refresh();
+ });
+ },
+
+ /**
+ * @method addButton
+ * @for Uploader
+ * @grammar addButton( pick ) => Promise
+ * @description
+ * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
+ * @example
+ * uploader.addButton({
+ * id: '#btnContainer',
+ * innerHTML: '选择文件'
+ * });
+ */
+ addBtn: function( pick ) {
+ var me = this,
+ opts = me.options,
+ accept = opts.accept,
+ promises = [];
+
+ if ( !pick ) {
+ return;
+ }
+
+ $.isPlainObject( pick ) || (pick = {
+ id: pick
+ });
+
+ $( pick.id ).each(function() {
+ var options, picker, deferred;
+
+ deferred = Base.Deferred();
+
+ options = $.extend({}, pick, {
+ accept: $.isPlainObject( accept ) ? [ accept ] : accept,
+ swf: opts.swf,
+ runtimeOrder: opts.runtimeOrder,
+ id: this
+ });
+
+ picker = new FilePicker( options );
+
+ picker.once( 'ready', deferred.resolve );
+ picker.on( 'select', function( files ) {
+ me.owner.request( 'add-file', [ files ]);
+ });
+ picker.on('dialogopen', function() {
+ me.owner.trigger('dialogOpen', picker.button);
+ });
+ picker.init();
+
+ me.pickers.push( picker );
+
+ promises.push( deferred.promise() );
+ });
+
+ return Base.when.apply( Base, promises );
+ },
+
+ disable: function() {
+ $.each( this.pickers, function() {
+ this.disable();
+ });
+ },
+
+ enable: function() {
+ $.each( this.pickers, function() {
+ this.enable();
+ });
+ },
+
+ destroy: function() {
+ $.each( this.pickers, function() {
+ this.destroy();
+ });
+ this.pickers = null;
+ }
+ });
});
-
- /**
- * @fileOverview 文件选择相关
- */
- define('widgets/filepicker',[
- 'base',
- 'uploader',
- 'lib/filepicker',
- 'widgets/widget'
- ], function( Base, Uploader, FilePicker ) {
- var $ = Base.$;
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Selector | Object} [pick=undefined]
- * @namespace options
- * @for Uploader
- * @description 指定选择文件的按钮容器,不指定则不创建按钮。
- *
- * * `id` {Seletor|dom} 指定选择文件的按钮容器,不指定则不创建按钮。**注意** 这里虽然写的是 id, 但是不是只支持 id, 还支持 class, 或者 dom 节点。
- * * `label` {String} 请采用 `innerHTML` 代替
- * * `innerHTML` {String} 指定按钮文字。不指定时优先从指定的容器中看是否自带文字。
- * * `multiple` {Boolean} 是否开起同时选择多个文件能力。
- */
- pick: null,
-
- /**
- * @property {Array} [accept=null]
- * @namespace options
- * @for Uploader
- * @description 指定接受哪些类型的文件。 由于目前还有ext转mimeType表,所以这里需要分开指定。
- *
- * * `title` {String} 文字描述
- * * `extensions` {String} 允许的文件后缀,不带点,多个用逗号分割。
- * * `mimeTypes` {String} 多个用逗号分割。
- *
- * 如:
- *
- * ```
- * {
- * title: 'Images',
- * extensions: 'gif,jpg,jpeg,bmp,png',
- * mimeTypes: 'image/*'
- * }
- * ```
- */
- accept: null/*{
- title: 'Images',
- extensions: 'gif,jpg,jpeg,bmp,png',
- mimeTypes: 'image/*'
- }*/
- });
-
- return Uploader.register({
- name: 'picker',
-
- init: function( opts ) {
- this.pickers = [];
- return opts.pick && this.addBtn( opts.pick );
- },
-
- refresh: function() {
- $.each( this.pickers, function() {
- this.refresh();
- });
- },
-
- /**
- * @method addButton
- * @for Uploader
- * @grammar addButton( pick ) => Promise
- * @description
- * 添加文件选择按钮,如果一个按钮不够,需要调用此方法来添加。参数跟[options.pick](#WebUploader:Uploader:options)一致。
- * @example
- * uploader.addButton({
- * id: '#btnContainer',
- * innerHTML: '选择文件'
- * });
- */
- addBtn: function( pick ) {
- var me = this,
- opts = me.options,
- accept = opts.accept,
- promises = [];
-
- if ( !pick ) {
- return;
- }
-
- $.isPlainObject( pick ) || (pick = {
- id: pick
- });
-
- $( pick.id ).each(function() {
- var options, picker, deferred;
-
- deferred = Base.Deferred();
-
- options = $.extend({}, pick, {
- accept: $.isPlainObject( accept ) ? [ accept ] : accept,
- swf: opts.swf,
- runtimeOrder: opts.runtimeOrder,
- id: this
- });
-
- picker = new FilePicker( options );
-
- picker.once( 'ready', deferred.resolve );
- picker.on( 'select', function( files ) {
- me.owner.request( 'add-file', [ files ]);
- });
- picker.on('dialogopen', function() {
- me.owner.trigger('dialogOpen', picker.button);
- });
- picker.init();
-
- me.pickers.push( picker );
-
- promises.push( deferred.promise() );
- });
-
- return Base.when.apply( Base, promises );
- },
-
- disable: function() {
- $.each( this.pickers, function() {
- this.disable();
- });
- },
-
- enable: function() {
- $.each( this.pickers, function() {
- this.enable();
- });
- },
-
- destroy: function() {
- $.each( this.pickers, function() {
- this.destroy();
- });
- this.pickers = null;
- }
- });
+ /**
+ * @fileOverview Image
+ */
+ define('lib/image',[
+ 'base',
+ 'runtime/client',
+ 'lib/blob'
+ ], function( Base, RuntimeClient, Blob ) {
+ var $ = Base.$;
+
+ // 构造器。
+ function Image( opts ) {
+ this.options = $.extend({}, Image.options, opts );
+ RuntimeClient.call( this, 'Image' );
+
+ this.on( 'load', function() {
+ this._info = this.exec('info');
+ this._meta = this.exec('meta');
+ });
+ }
+
+ // 默认选项。
+ Image.options = {
+
+ // 默认的图片处理质量
+ quality: 90,
+
+ // 是否裁剪
+ crop: false,
+
+ // 是否保留头部信息
+ preserveHeaders: false,
+
+ // 是否允许放大。
+ allowMagnify: false
+ };
+
+ // 继承RuntimeClient.
+ Base.inherits( RuntimeClient, {
+ constructor: Image,
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._meta = val;
+ return this;
+ }
+
+ // getter
+ return this._meta;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ ruid = blob.getRuid();
+
+ this.connectRuntime( ruid, function() {
+ me.exec( 'init', me.options );
+ me.exec( 'loadFromBlob', blob );
+ });
+ },
+
+ resize: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'resize' ].concat( args ) );
+ },
+
+ crop: function() {
+ var args = Base.slice( arguments );
+ return this.exec.apply( this, [ 'crop' ].concat( args ) );
+ },
+
+ getAsDataUrl: function( type ) {
+ return this.exec( 'getAsDataUrl', type );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this.exec( 'getAsBlob', type );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
+
+ return Image;
});
- /**
- * @fileOverview Image
- */
- define('lib/image',[
- 'base',
- 'runtime/client',
- 'lib/blob'
- ], function( Base, RuntimeClient, Blob ) {
- var $ = Base.$;
-
- // 构造器。
- function Image( opts ) {
- this.options = $.extend({}, Image.options, opts );
- RuntimeClient.call( this, 'Image' );
-
- this.on( 'load', function() {
- this._info = this.exec('info');
- this._meta = this.exec('meta');
- });
- }
-
- // 默认选项。
- Image.options = {
-
- // 默认的图片处理质量
- quality: 90,
-
- // 是否裁剪
- crop: false,
-
- // 是否保留头部信息
- preserveHeaders: false,
-
- // 是否允许放大。
- allowMagnify: false
- };
-
- // 继承RuntimeClient.
- Base.inherits( RuntimeClient, {
- constructor: Image,
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._meta = val;
- return this;
- }
-
- // getter
- return this._meta;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- ruid = blob.getRuid();
-
- this.connectRuntime( ruid, function() {
- me.exec( 'init', me.options );
- me.exec( 'loadFromBlob', blob );
- });
- },
-
- resize: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'resize' ].concat( args ) );
- },
-
- crop: function() {
- var args = Base.slice( arguments );
- return this.exec.apply( this, [ 'crop' ].concat( args ) );
- },
-
- getAsDataUrl: function( type ) {
- return this.exec( 'getAsDataUrl', type );
- },
-
- getAsBlob: function( type ) {
- var blob = this.exec( 'getAsBlob', type );
-
- return new Blob( this.getRuid(), blob );
- }
- });
-
- return Image;
+ /**
+ * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
+ */
+ define('widgets/image',[
+ 'base',
+ 'uploader',
+ 'lib/image',
+ 'widgets/widget'
+ ], function( Base, Uploader, Image ) {
+
+ var $ = Base.$,
+ throttle;
+
+ // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
+ throttle = (function( max ) {
+ var occupied = 0,
+ waiting = [],
+ tick = function() {
+ var item;
+
+ while ( waiting.length && occupied < max ) {
+ item = waiting.shift();
+ occupied += item[ 0 ];
+ item[ 1 ]();
+ }
+ };
+
+ return function( emiter, size, cb ) {
+ waiting.push([ size, cb ]);
+ emiter.once( 'destroy', function() {
+ occupied -= size;
+ setTimeout( tick, 1 );
+ });
+ setTimeout( tick, 1 );
+ };
+ })( 5 * 1024 * 1024 );
+
+ $.extend( Uploader.options, {
+
+ /**
+ * @property {Object} [thumb]
+ * @namespace options
+ * @for Uploader
+ * @description 配置生成缩略图的选项。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 110,
+ * height: 110,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 70,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: true,
+ *
+ * // 是否允许裁剪。
+ * crop: true,
+ *
+ * // 为空的话则保留原有图片格式。
+ * // 否则强制转换成指定的类型。
+ * type: 'image/jpeg'
+ * }
+ * ```
+ */
+ thumb: {
+ width: 110,
+ height: 110,
+ quality: 70,
+ allowMagnify: true,
+ crop: true,
+ preserveHeaders: false,
+
+ // 为空的话则保留原有图片格式。
+ // 否则强制转换成指定的类型。
+ // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
+ // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
+ type: 'image/jpeg'
+ },
+
+ /**
+ * @property {Object} [compress]
+ * @namespace options
+ * @for Uploader
+ * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
+ *
+ * 默认为:
+ *
+ * ```javascript
+ * {
+ * width: 1600,
+ * height: 1600,
+ *
+ * // 图片质量,只有type为`image/jpeg`的时候才有效。
+ * quality: 90,
+ *
+ * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
+ * allowMagnify: false,
+ *
+ * // 是否允许裁剪。
+ * crop: false,
+ *
+ * // 是否保留头部meta信息。
+ * preserveHeaders: true,
+ *
+ * // 如果发现压缩后文件大小比原来还大,则使用原来图片
+ * // 此属性可能会影响图片自动纠正功能
+ * noCompressIfLarger: false,
+ *
+ * // 单位字节,如果图片大小小于此值,不会采用压缩。
+ * compressSize: 0
+ * }
+ * ```
+ */
+ compress: {
+ width: 1600,
+ height: 1600,
+ quality: 90,
+ allowMagnify: false,
+ crop: false,
+ preserveHeaders: true
+ }
+ });
+
+ return Uploader.register({
+
+ name: 'image',
+
+
+ /**
+ * 生成缩略图,此过程为异步,所以需要传入`callback`。
+ * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
+ *
+ * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
+ *
+ * `callback`中可以接收到两个参数。
+ * * 第一个为error,如果生成缩略图有错误,此error将为真。
+ * * 第二个为ret, 缩略图的Data URL值。
+ *
+ * **注意**
+ * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
+ * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
+ *
+ * @method makeThumb
+ * @grammar makeThumb( file, callback ) => undefined
+ * @grammar makeThumb( file, callback, width, height ) => undefined
+ * @for Uploader
+ * @example
+ *
+ * uploader.on( 'fileQueued', function( file ) {
+ * var $li = ...;
+ *
+ * uploader.makeThumb( file, function( error, ret ) {
+ * if ( error ) {
+ * $li.text('预览错误');
+ * } else {
+ * $li.append('');
+ * }
+ * });
+ *
+ * });
+ */
+ makeThumb: function( file, cb, width, height ) {
+ var opts, image;
+
+ file = this.request( 'get-file', file );
+
+ // 只预览图片格式。
+ if ( !file.type.match( /^image/ ) ) {
+ cb( true );
+ return;
+ }
+
+ opts = $.extend({}, this.options.thumb );
+
+ // 如果传入的是object.
+ if ( $.isPlainObject( width ) ) {
+ opts = $.extend( opts, width );
+ width = null;
+ }
+
+ width = width || opts.width;
+ height = height || opts.height;
+
+ image = new Image( opts );
+
+ image.once( 'load', function() {
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ // 当 resize 完后
+ image.once( 'complete', function() {
+ cb( false, image.getAsDataUrl( opts.type ) );
+ image.destroy();
+ });
+
+ image.once( 'error', function( reason ) {
+ cb( reason || true );
+ image.destroy();
+ });
+
+ throttle( image, file.source.size, function() {
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+ image.loadFromBlob( file.source );
+ });
+ },
+
+ beforeSendFile: function( file ) {
+ var opts = this.options.compress || this.options.resize,
+ compressSize = opts && opts.compressSize || 0,
+ noCompressIfLarger = opts && opts.noCompressIfLarger || false,
+ image, deferred;
+
+ file = this.request( 'get-file', file );
+
+ // 只压缩 jpeg 图片格式。
+ // gif 可能会丢失针
+ // bmp png 基本上尺寸都不大,且压缩比比较小。
+ if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
+ file.size < compressSize ||
+ file._compressed ) {
+ return;
+ }
+
+ opts = $.extend({}, opts );
+ deferred = Base.Deferred();
+
+ image = new Image( opts );
+
+ deferred.always(function() {
+ image.destroy();
+ image = null;
+ });
+ image.once( 'error', deferred.reject );
+ image.once( 'load', function() {
+ var width = opts.width,
+ height = opts.height;
+
+ file._info = file._info || image.info();
+ file._meta = file._meta || image.meta();
+
+ // 如果 width 的值介于 0 - 1
+ // 说明设置的是百分比。
+ if ( width <= 1 && width > 0 ) {
+ width = file._info.width * width;
+ }
+
+ // 同样的规则应用于 height
+ if ( height <= 1 && height > 0 ) {
+ height = file._info.height * height;
+ }
+
+ image.resize( width, height );
+ });
+
+ image.once( 'complete', function() {
+ var blob, size;
+
+ // 移动端 UC / qq 浏览器的无图模式下
+ // ctx.getImageData 处理大图的时候会报 Exception
+ // INDEX_SIZE_ERR: DOM Exception 1
+ try {
+ blob = image.getAsBlob( opts.type );
+
+ size = file.size;
+
+ // 如果压缩后,比原来还大则不用压缩后的。
+ if ( !noCompressIfLarger || blob.size < size ) {
+ // file.source.destroy && file.source.destroy();
+ file.source = blob;
+ file.size = blob.size;
+
+ file.trigger( 'resize', blob.size, size );
+ }
+
+ // 标记,避免重复压缩。
+ file._compressed = true;
+ deferred.resolve();
+ } catch ( e ) {
+ // 出错了直接继续,让其上传原始图片
+ deferred.resolve();
+ }
+ });
+
+ file._info && image.info( file._info );
+ file._meta && image.meta( file._meta );
+
+ image.loadFromBlob( file.source );
+ return deferred.promise();
+ }
+ });
});
- /**
- * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
- */
- define('widgets/image',[
- 'base',
- 'uploader',
- 'lib/image',
- 'widgets/widget'
- ], function( Base, Uploader, Image ) {
-
- var $ = Base.$,
- throttle;
-
- // 根据要处理的文件大小来节流,一次不能处理太多,会卡。
- throttle = (function( max ) {
- var occupied = 0,
- waiting = [],
- tick = function() {
- var item;
-
- while ( waiting.length && occupied < max ) {
- item = waiting.shift();
- occupied += item[ 0 ];
- item[ 1 ]();
- }
- };
-
- return function( emiter, size, cb ) {
- waiting.push([ size, cb ]);
- emiter.once( 'destroy', function() {
- occupied -= size;
- setTimeout( tick, 1 );
- });
- setTimeout( tick, 1 );
- };
- })( 5 * 1024 * 1024 );
-
- $.extend( Uploader.options, {
-
- /**
- * @property {Object} [thumb]
- * @namespace options
- * @for Uploader
- * @description 配置生成缩略图的选项。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 110,
- * height: 110,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 70,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: true,
- *
- * // 是否允许裁剪。
- * crop: true,
- *
- * // 为空的话则保留原有图片格式。
- * // 否则强制转换成指定的类型。
- * type: 'image/jpeg'
- * }
- * ```
- */
- thumb: {
- width: 110,
- height: 110,
- quality: 70,
- allowMagnify: true,
- crop: true,
- preserveHeaders: false,
-
- // 为空的话则保留原有图片格式。
- // 否则强制转换成指定的类型。
- // IE 8下面 base64 大小不能超过 32K 否则预览失败,而非 jpeg 编码的图片很可
- // 能会超过 32k, 所以这里设置成预览的时候都是 image/jpeg
- type: 'image/jpeg'
- },
-
- /**
- * @property {Object} [compress]
- * @namespace options
- * @for Uploader
- * @description 配置压缩的图片的选项。如果此选项为`false`, 则图片在上传前不进行压缩。
- *
- * 默认为:
- *
- * ```javascript
- * {
- * width: 1600,
- * height: 1600,
- *
- * // 图片质量,只有type为`image/jpeg`的时候才有效。
- * quality: 90,
- *
- * // 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
- * allowMagnify: false,
- *
- * // 是否允许裁剪。
- * crop: false,
- *
- * // 是否保留头部meta信息。
- * preserveHeaders: true,
- *
- * // 如果发现压缩后文件大小比原来还大,则使用原来图片
- * // 此属性可能会影响图片自动纠正功能
- * noCompressIfLarger: false,
- *
- * // 单位字节,如果图片大小小于此值,不会采用压缩。
- * compressSize: 0
- * }
- * ```
- */
- compress: {
- width: 1600,
- height: 1600,
- quality: 90,
- allowMagnify: false,
- crop: false,
- preserveHeaders: true
- }
- });
-
- return Uploader.register({
-
- name: 'image',
-
-
- /**
- * 生成缩略图,此过程为异步,所以需要传入`callback`。
- * 通常情况在图片加入队里后调用此方法来生成预览图以增强交互效果。
- *
- * 当 width 或者 height 的值介于 0 - 1 时,被当成百分比使用。
- *
- * `callback`中可以接收到两个参数。
- * * 第一个为error,如果生成缩略图有错误,此error将为真。
- * * 第二个为ret, 缩略图的Data URL值。
- *
- * **注意**
- * Date URL在IE6/7中不支持,所以不用调用此方法了,直接显示一张暂不支持预览图片好了。
- * 也可以借助服务端,将 base64 数据传给服务端,生成一个临时文件供预览。
- *
- * @method makeThumb
- * @grammar makeThumb( file, callback ) => undefined
- * @grammar makeThumb( file, callback, width, height ) => undefined
- * @for Uploader
- * @example
- *
- * uploader.on( 'fileQueued', function( file ) {
- * var $li = ...;
- *
- * uploader.makeThumb( file, function( error, ret ) {
- * if ( error ) {
- * $li.text('预览错误');
- * } else {
- * $li.append('');
- * }
- * });
- *
- * });
- */
- makeThumb: function( file, cb, width, height ) {
- var opts, image;
-
- file = this.request( 'get-file', file );
-
- // 只预览图片格式。
- if ( !file.type.match( /^image/ ) ) {
- cb( true );
- return;
- }
-
- opts = $.extend({}, this.options.thumb );
-
- // 如果传入的是object.
- if ( $.isPlainObject( width ) ) {
- opts = $.extend( opts, width );
- width = null;
- }
-
- width = width || opts.width;
- height = height || opts.height;
-
- image = new Image( opts );
-
- image.once( 'load', function() {
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- // 当 resize 完后
- image.once( 'complete', function() {
- cb( false, image.getAsDataUrl( opts.type ) );
- image.destroy();
- });
-
- image.once( 'error', function( reason ) {
- cb( reason || true );
- image.destroy();
- });
-
- throttle( image, file.source.size, function() {
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
- image.loadFromBlob( file.source );
- });
- },
-
- beforeSendFile: function( file ) {
- var opts = this.options.compress || this.options.resize,
- compressSize = opts && opts.compressSize || 0,
- noCompressIfLarger = opts && opts.noCompressIfLarger || false,
- image, deferred;
-
- file = this.request( 'get-file', file );
-
- // 只压缩 jpeg 图片格式。
- // gif 可能会丢失针
- // bmp png 基本上尺寸都不大,且压缩比比较小。
- if ( !opts || !~'image/jpeg,image/jpg'.indexOf( file.type ) ||
- file.size < compressSize ||
- file._compressed ) {
- return;
- }
-
- opts = $.extend({}, opts );
- deferred = Base.Deferred();
-
- image = new Image( opts );
-
- deferred.always(function() {
- image.destroy();
- image = null;
- });
- image.once( 'error', deferred.reject );
- image.once( 'load', function() {
- var width = opts.width,
- height = opts.height;
-
- file._info = file._info || image.info();
- file._meta = file._meta || image.meta();
-
- // 如果 width 的值介于 0 - 1
- // 说明设置的是百分比。
- if ( width <= 1 && width > 0 ) {
- width = file._info.width * width;
- }
-
- // 同样的规则应用于 height
- if ( height <= 1 && height > 0 ) {
- height = file._info.height * height;
- }
-
- image.resize( width, height );
- });
-
- image.once( 'complete', function() {
- var blob, size;
-
- // 移动端 UC / qq 浏览器的无图模式下
- // ctx.getImageData 处理大图的时候会报 Exception
- // INDEX_SIZE_ERR: DOM Exception 1
- try {
- blob = image.getAsBlob( opts.type );
-
- size = file.size;
-
- // 如果压缩后,比原来还大则不用压缩后的。
- if ( !noCompressIfLarger || blob.size < size ) {
- // file.source.destroy && file.source.destroy();
- file.source = blob;
- file.size = blob.size;
-
- file.trigger( 'resize', blob.size, size );
- }
-
- // 标记,避免重复压缩。
- file._compressed = true;
- deferred.resolve();
- } catch ( e ) {
- // 出错了直接继续,让其上传原始图片
- deferred.resolve();
- }
- });
+ /**
+ * @fileOverview 文件属性封装
+ */
+ define('file',[
+ 'base',
+ 'mediator'
+ ], function( Base, Mediator ) {
+
+ var $ = Base.$,
+ idPrefix = 'WU_FILE_',
+ idSuffix = 0,
+ rExt = /\.([^.]+)$/,
+ statusMap = {};
+
+ function gid() {
+ return idPrefix + idSuffix++;
+ }
+
+ /**
+ * 文件类
+ * @class File
+ * @constructor 构造函数
+ * @grammar new File( source ) => File
+ * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
+ */
+ function WUFile( source ) {
+
+ /**
+ * 文件名,包括扩展名(后缀)
+ * @property name
+ * @type {string}
+ */
+ this.name = source.name || 'Untitled';
+
+ /**
+ * 文件体积(字节)
+ * @property size
+ * @type {uint}
+ * @default 0
+ */
+ this.size = source.size || 0;
+
+ /**
+ * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
+ * @property type
+ * @type {string}
+ * @default 'application/octet-stream'
+ */
+ this.type = source.type || 'application/octet-stream';
+
+ /**
+ * 文件最后修改日期
+ * @property lastModifiedDate
+ * @type {int}
+ * @default 当前时间戳
+ */
+ this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
+
+ /**
+ * 文件ID,每个对象具有唯一ID,与文件名无关
+ * @property id
+ * @type {string}
+ */
+ this.id = gid();
+
+ /**
+ * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
+ * @property ext
+ * @type {string}
+ */
+ this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
+
+
+ /**
+ * 状态文字说明。在不同的status语境下有不同的用途。
+ * @property statusText
+ * @type {string}
+ */
+ this.statusText = '';
+
+ // 存储文件状态,防止通过属性直接修改
+ statusMap[ this.id ] = WUFile.Status.INITED;
+
+ this.source = source;
+ this.loaded = 0;
+
+ this.on( 'error', function( msg ) {
+ this.setStatus( WUFile.Status.ERROR, msg );
+ });
+ }
+
+ $.extend( WUFile.prototype, {
+
+ /**
+ * 设置状态,状态变化时会触发`change`事件。
+ * @method setStatus
+ * @grammar setStatus( status[, statusText] );
+ * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
+ * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
+ */
+ setStatus: function( status, text ) {
+
+ var prevStatus = statusMap[ this.id ];
+
+ typeof text !== 'undefined' && (this.statusText = text);
+
+ if ( status !== prevStatus ) {
+ statusMap[ this.id ] = status;
+ /**
+ * 文件状态变化
+ * @event statuschange
+ */
+ this.trigger( 'statuschange', status, prevStatus );
+ }
+
+ },
+
+ /**
+ * 获取文件状态
+ * @return {File.Status}
+ * @example
+ 文件状态具体包括以下几种类型:
+ {
+ // 初始化
+ INITED: 0,
+ // 已入队列
+ QUEUED: 1,
+ // 正在上传
+ PROGRESS: 2,
+ // 上传出错
+ ERROR: 3,
+ // 上传成功
+ COMPLETE: 4,
+ // 上传取消
+ CANCELLED: 5
+ }
+ */
+ getStatus: function() {
+ return statusMap[ this.id ];
+ },
+
+ /**
+ * 获取文件原始信息。
+ * @return {*}
+ */
+ getSource: function() {
+ return this.source;
+ },
+
+ destroy: function() {
+ this.off();
+ delete statusMap[ this.id ];
+ }
+ });
+
+ Mediator.installTo( WUFile.prototype );
+
+ /**
+ * 文件状态值,具体包括以下几种类型:
+ * * `inited` 初始状态
+ * * `queued` 已经进入队列, 等待上传
+ * * `progress` 上传中
+ * * `complete` 上传完成。
+ * * `error` 上传出错,可重试
+ * * `interrupt` 上传中断,可续传。
+ * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
+ * * `cancelled` 文件被移除。
+ * @property {Object} Status
+ * @namespace File
+ * @class File
+ * @static
+ */
+ WUFile.Status = {
+ INITED: 'inited', // 初始状态
+ QUEUED: 'queued', // 已经进入队列, 等待上传
+ PROGRESS: 'progress', // 上传中
+ ERROR: 'error', // 上传出错,可重试
+ COMPLETE: 'complete', // 上传完成。
+ CANCELLED: 'cancelled', // 上传取消。
+ INTERRUPT: 'interrupt', // 上传中断,可续传。
+ INVALID: 'invalid' // 文件不合格,不能重试上传。
+ };
+
+ return WUFile;
+ });
- file._info && image.info( file._info );
- file._meta && image.meta( file._meta );
+ /**
+ * @fileOverview 文件队列
+ */
+ define('queue',[
+ 'base',
+ 'mediator',
+ 'file'
+ ], function( Base, Mediator, WUFile ) {
+
+ var $ = Base.$,
+ STATUS = WUFile.Status;
+
+ /**
+ * 文件队列, 用来存储各个状态中的文件。
+ * @class Queue
+ * @extends Mediator
+ */
+ function Queue() {
+
+ /**
+ * 统计文件数。
+ * * `numOfQueue` 队列中的文件数。
+ * * `numOfSuccess` 上传成功的文件数
+ * * `numOfCancel` 被取消的文件数
+ * * `numOfProgress` 正在上传中的文件数
+ * * `numOfUploadFailed` 上传错误的文件数。
+ * * `numOfInvalid` 无效的文件数。
+ * * `numOfDeleted` 被移除的文件数。
+ * * `numOfInterrupt` 被中断的文件数。
+ * @property {Object} stats
+ */
+ this.stats = {
+ numOfQueue: 0,
+ numOfSuccess: 0,
+ numOfCancel: 0,
+ numOfProgress: 0,
+ numOfUploadFailed: 0,
+ numOfInvalid: 0,
+ numOfDeleted: 0,
+ numOfInterrupt: 0
+ };
+
+ // 上传队列,仅包括等待上传的文件
+ this._queue = [];
+
+ // 存储所有文件
+ this._map = {};
+ }
+
+ $.extend( Queue.prototype, {
+
+ /**
+ * 将新文件加入对队列尾部
+ *
+ * @method append
+ * @param {File} file 文件对象
+ */
+ append: function( file ) {
+ this._queue.push( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 将新文件加入对队列头部
+ *
+ * @method prepend
+ * @param {File} file 文件对象
+ */
+ prepend: function( file ) {
+ this._queue.unshift( file );
+ this._fileAdded( file );
+ return this;
+ },
+
+ /**
+ * 获取文件对象
+ *
+ * @method getFile
+ * @param {String} fileId 文件ID
+ * @return {File}
+ */
+ getFile: function( fileId ) {
+ if ( typeof fileId !== 'string' ) {
+ return fileId;
+ }
+ return this._map[ fileId ];
+ },
+
+ /**
+ * 从队列中取出一个指定状态的文件。
+ * @grammar fetch( status ) => File
+ * @method fetch
+ * @param {String} status [文件状态值](#WebUploader:File:File.Status)
+ * @return {File} [File](#WebUploader:File)
+ */
+ fetch: function( status ) {
+ var len = this._queue.length,
+ i, file;
+
+ status = status || STATUS.QUEUED;
+
+ for ( i = 0; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( status === file.getStatus() ) {
+ return file;
+ }
+ }
+
+ return null;
+ },
+
+ /**
+ * 对队列进行排序,能够控制文件上传顺序。
+ * @grammar sort( fn ) => undefined
+ * @method sort
+ * @param {Function} fn 排序方法
+ */
+ sort: function( fn ) {
+ if ( typeof fn === 'function' ) {
+ this._queue.sort( fn );
+ }
+ },
+
+ /**
+ * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
+ * @grammar getFiles( [status1[, status2 ...]] ) => Array
+ * @method getFiles
+ * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
+ */
+ getFiles: function() {
+ var sts = [].slice.call( arguments, 0 ),
+ ret = [],
+ i = 0,
+ len = this._queue.length,
+ file;
+
+ for ( ; i < len; i++ ) {
+ file = this._queue[ i ];
+
+ if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
+ continue;
+ }
+
+ ret.push( file );
+ }
+
+ return ret;
+ },
+
+ /**
+ * 在队列中删除文件。
+ * @grammar removeFile( file ) => Array
+ * @method removeFile
+ * @param {File} 文件对象。
+ */
+ removeFile: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( existing ) {
+ delete this._map[ file.id ];
+ this._delFile(file);
+ file.destroy();
+ this.stats.numOfDeleted++;
+
+ }
+ },
+
+ _fileAdded: function( file ) {
+ var me = this,
+ existing = this._map[ file.id ];
+
+ if ( !existing ) {
+ this._map[ file.id ] = file;
+
+ file.on( 'statuschange', function( cur, pre ) {
+ me._onFileStatusChange( cur, pre );
+ });
+ }
+ },
+
+ _delFile : function(file){
+ for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
+ if(this._queue[i] == file){
+ this._queue.splice(i,1);
+ break;
+ }
+ }
+ },
+
+ _onFileStatusChange: function( curStatus, preStatus ) {
+ var stats = this.stats;
+
+ switch ( preStatus ) {
+ case STATUS.PROGRESS:
+ stats.numOfProgress--;
+ break;
+
+ case STATUS.QUEUED:
+ stats.numOfQueue --;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed--;
+ break;
+
+ case STATUS.INVALID:
+ stats.numOfInvalid--;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt--;
+ break;
+ }
+
+ switch ( curStatus ) {
+ case STATUS.QUEUED:
+ stats.numOfQueue++;
+ break;
+
+ case STATUS.PROGRESS:
+ stats.numOfProgress++;
+ break;
+
+ case STATUS.ERROR:
+ stats.numOfUploadFailed++;
+ break;
+
+ case STATUS.COMPLETE:
+ stats.numOfSuccess++;
+ break;
+
+ case STATUS.CANCELLED:
+ stats.numOfCancel++;
+ break;
+
+
+ case STATUS.INVALID:
+ stats.numOfInvalid++;
+ break;
+
+ case STATUS.INTERRUPT:
+ stats.numOfInterrupt++;
+ break;
+ }
+ }
+
+ });
+
+ Mediator.installTo( Queue.prototype );
+
+ return Queue;
+ });
- image.loadFromBlob( file.source );
- return deferred.promise();
- }
- });
+ /**
+ * @fileOverview 队列
+ */
+ define('widgets/queue',[
+ 'base',
+ 'uploader',
+ 'queue',
+ 'file',
+ 'lib/file',
+ 'runtime/client',
+ 'widgets/widget'
+ ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
+
+ var $ = Base.$,
+ rExt = /\.\w+$/,
+ Status = WUFile.Status;
+
+ return Uploader.register({
+ name: 'queue',
+
+ init: function( opts ) {
+ var me = this,
+ deferred, len, i, item, arr, accept, runtime;
+
+ if ( $.isPlainObject( opts.accept ) ) {
+ opts.accept = [ opts.accept ];
+ }
+
+ // accept中的中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].extensions;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = '\\.' + arr.join(',')
+ .replace( /,/g, '$|\\.' )
+ .replace( /\*/g, '.*' ) + '$';
+ }
+
+ me.accept = new RegExp( accept, 'i' );
+ }
+
+ me.queue = new Queue();
+ me.stats = me.queue.stats;
+
+ // 如果当前不是html5运行时,那就算了。
+ // 不执行后续操作
+ if ( this.request('predict-runtime-type') !== 'html5' ) {
+ return;
+ }
+
+ // 创建一个 html5 运行时的 placeholder
+ // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
+ deferred = Base.Deferred();
+ this.placeholder = runtime = new RuntimeClient('Placeholder');
+ runtime.connectRuntime({
+ runtimeOrder: 'html5'
+ }, function() {
+ me._ruid = runtime.getRuid();
+ deferred.resolve();
+ });
+ return deferred.promise();
+ },
+
+
+ // 为了支持外部直接添加一个原生File对象。
+ _wrapFile: function( file ) {
+ if ( !(file instanceof WUFile) ) {
+
+ if ( !(file instanceof File) ) {
+ if ( !this._ruid ) {
+ throw new Error('Can\'t add external files.');
+ }
+ file = new File( this._ruid, file );
+ }
+
+ file = new WUFile( file );
+ }
+
+ return file;
+ },
+
+ // 判断文件是否可以被加入队列
+ acceptFile: function( file ) {
+ var invalid = !file || !file.size || this.accept &&
+
+ // 如果名字中有后缀,才做后缀白名单处理。
+ rExt.exec( file.name ) && !this.accept.test( file.name );
+
+ return !invalid;
+ },
+
+
+ /**
+ * @event beforeFileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
+ * @for Uploader
+ */
+
+ /**
+ * @event fileQueued
+ * @param {File} file File对象
+ * @description 当文件被加入队列以后触发。
+ * @for Uploader
+ */
+
+ _addFile: function( file ) {
+ var me = this;
+
+ file = me._wrapFile( file );
+
+ // 不过类型判断允许不允许,先派送 `beforeFileQueued`
+ if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
+ return;
+ }
+
+ // 类型不匹配,则派送错误事件,并返回。
+ if ( !me.acceptFile( file ) ) {
+ me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
+ return;
+ }
+
+ me.queue.append( file );
+ me.owner.trigger( 'fileQueued', file );
+ return file;
+ },
+
+ getFile: function( fileId ) {
+ return this.queue.getFile( fileId );
+ },
+
+ /**
+ * @event filesQueued
+ * @param {File} files 数组,内容为原始File(lib/File)对象。
+ * @description 当一批文件添加进队列以后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @property {Boolean} [auto=false]
+ * @namespace options
+ * @for Uploader
+ * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
+ *
+ */
+
+ /**
+ * @method addFiles
+ * @grammar addFiles( file ) => undefined
+ * @grammar addFiles( [file1, file2 ...] ) => undefined
+ * @param {Array of File or File} [files] Files 对象 数组
+ * @description 添加文件到队列
+ * @for Uploader
+ */
+ addFile: function( files ) {
+ var me = this;
+
+ if ( !files.length ) {
+ files = [ files ];
+ }
+
+ files = $.map( files, function( file ) {
+ return me._addFile( file );
+ });
+
+ if ( files.length ) {
+
+ me.owner.trigger( 'filesQueued', files );
+
+ if ( me.options.auto ) {
+ setTimeout(function() {
+ me.request('start-upload');
+ }, 20 );
+ }
+ }
+ },
+
+ getStats: function() {
+ return this.stats;
+ },
+
+ /**
+ * @event fileDequeued
+ * @param {File} file File对象
+ * @description 当文件被移除队列后触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method removeFile
+ * @grammar removeFile( file ) => undefined
+ * @grammar removeFile( id ) => undefined
+ * @grammar removeFile( file, true ) => undefined
+ * @grammar removeFile( id, true ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.removeFile( file );
+ * })
+ */
+ removeFile: function( file, remove ) {
+ var me = this;
+
+ file = file.id ? file : me.queue.getFile( file );
+
+ this.request( 'cancel-file', file );
+
+ if ( remove ) {
+ this.queue.removeFile( file );
+ }
+ },
+
+ /**
+ * @method getFiles
+ * @grammar getFiles() => Array
+ * @grammar getFiles( status1, status2, status... ) => Array
+ * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
+ * @for Uploader
+ * @example
+ * console.log( uploader.getFiles() ); // => all files
+ * console.log( uploader.getFiles('error') ) // => all error files.
+ */
+ getFiles: function() {
+ return this.queue.getFiles.apply( this.queue, arguments );
+ },
+
+ fetchFile: function() {
+ return this.queue.fetch.apply( this.queue, arguments );
+ },
+
+ /**
+ * @method retry
+ * @grammar retry() => undefined
+ * @grammar retry( file ) => undefined
+ * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
+ * @for Uploader
+ * @example
+ * function retry() {
+ * uploader.retry();
+ * }
+ */
+ retry: function( file, noForceStart ) {
+ var me = this,
+ files, i, len;
+
+ if ( file ) {
+ file = file.id ? file : me.queue.getFile( file );
+ file.setStatus( Status.QUEUED );
+ noForceStart || me.request('start-upload');
+ return;
+ }
+
+ files = me.queue.getFiles( Status.ERROR );
+ i = 0;
+ len = files.length;
+
+ for ( ; i < len; i++ ) {
+ file = files[ i ];
+ file.setStatus( Status.QUEUED );
+ }
+
+ me.request('start-upload');
+ },
+
+ /**
+ * @method sort
+ * @grammar sort( fn ) => undefined
+ * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
+ * @for Uploader
+ */
+ sortFiles: function() {
+ return this.queue.sort.apply( this.queue, arguments );
+ },
+
+ /**
+ * @event reset
+ * @description 当 uploader 被重置的时候触发。
+ * @for Uploader
+ */
+
+ /**
+ * @method reset
+ * @grammar reset() => undefined
+ * @description 重置uploader。目前只重置了队列。
+ * @for Uploader
+ * @example
+ * uploader.reset();
+ */
+ reset: function() {
+ this.owner.trigger('reset');
+ this.queue = new Queue();
+ this.stats = this.queue.stats;
+ },
+
+ destroy: function() {
+ this.reset();
+ this.placeholder && this.placeholder.destroy();
+ }
+ });
+
});
- /**
- * @fileOverview 文件属性封装
- */
- define('file',[
- 'base',
- 'mediator'
- ], function( Base, Mediator ) {
-
- var $ = Base.$,
- idPrefix = 'WU_FILE_',
- idSuffix = 0,
- rExt = /\.([^.]+)$/,
- statusMap = {};
-
- function gid() {
- return idPrefix + idSuffix++;
- }
-
- /**
- * 文件类
- * @class File
- * @constructor 构造函数
- * @grammar new File( source ) => File
- * @param {Lib.File} source [lib.File](#Lib.File)实例, 此source对象是带有Runtime信息的。
- */
- function WUFile( source ) {
-
- /**
- * 文件名,包括扩展名(后缀)
- * @property name
- * @type {string}
- */
- this.name = source.name || 'Untitled';
-
- /**
- * 文件体积(字节)
- * @property size
- * @type {uint}
- * @default 0
- */
- this.size = source.size || 0;
-
- /**
- * 文件MIMETYPE类型,与文件类型的对应关系请参考[http://t.cn/z8ZnFny](http://t.cn/z8ZnFny)
- * @property type
- * @type {string}
- * @default 'application/octet-stream'
- */
- this.type = source.type || 'application/octet-stream';
-
- /**
- * 文件最后修改日期
- * @property lastModifiedDate
- * @type {int}
- * @default 当前时间戳
- */
- this.lastModifiedDate = source.lastModifiedDate || (new Date() * 1);
-
- /**
- * 文件ID,每个对象具有唯一ID,与文件名无关
- * @property id
- * @type {string}
- */
- this.id = gid();
-
- /**
- * 文件扩展名,通过文件名获取,例如test.png的扩展名为png
- * @property ext
- * @type {string}
- */
- this.ext = rExt.exec( this.name ) ? RegExp.$1 : '';
-
-
- /**
- * 状态文字说明。在不同的status语境下有不同的用途。
- * @property statusText
- * @type {string}
- */
- this.statusText = '';
-
- // 存储文件状态,防止通过属性直接修改
- statusMap[ this.id ] = WUFile.Status.INITED;
-
- this.source = source;
- this.loaded = 0;
-
- this.on( 'error', function( msg ) {
- this.setStatus( WUFile.Status.ERROR, msg );
- });
- }
-
- $.extend( WUFile.prototype, {
-
- /**
- * 设置状态,状态变化时会触发`change`事件。
- * @method setStatus
- * @grammar setStatus( status[, statusText] );
- * @param {File.Status|String} status [文件状态值](#WebUploader:File:File.Status)
- * @param {String} [statusText=''] 状态说明,常在error时使用,用http, abort,server等来标记是由于什么原因导致文件错误。
- */
- setStatus: function( status, text ) {
-
- var prevStatus = statusMap[ this.id ];
-
- typeof text !== 'undefined' && (this.statusText = text);
-
- if ( status !== prevStatus ) {
- statusMap[ this.id ] = status;
- /**
- * 文件状态变化
- * @event statuschange
- */
- this.trigger( 'statuschange', status, prevStatus );
- }
-
- },
-
- /**
- * 获取文件状态
- * @return {File.Status}
- * @example
- 文件状态具体包括以下几种类型:
- {
- // 初始化
- INITED: 0,
- // 已入队列
- QUEUED: 1,
- // 正在上传
- PROGRESS: 2,
- // 上传出错
- ERROR: 3,
- // 上传成功
- COMPLETE: 4,
- // 上传取消
- CANCELLED: 5
- }
- */
- getStatus: function() {
- return statusMap[ this.id ];
- },
-
- /**
- * 获取文件原始信息。
- * @return {*}
- */
- getSource: function() {
- return this.source;
- },
-
- destroy: function() {
- this.off();
- delete statusMap[ this.id ];
- }
- });
-
- Mediator.installTo( WUFile.prototype );
-
- /**
- * 文件状态值,具体包括以下几种类型:
- * * `inited` 初始状态
- * * `queued` 已经进入队列, 等待上传
- * * `progress` 上传中
- * * `complete` 上传完成。
- * * `error` 上传出错,可重试
- * * `interrupt` 上传中断,可续传。
- * * `invalid` 文件不合格,不能重试上传。会自动从队列中移除。
- * * `cancelled` 文件被移除。
- * @property {Object} Status
- * @namespace File
- * @class File
- * @static
- */
- WUFile.Status = {
- INITED: 'inited', // 初始状态
- QUEUED: 'queued', // 已经进入队列, 等待上传
- PROGRESS: 'progress', // 上传中
- ERROR: 'error', // 上传出错,可重试
- COMPLETE: 'complete', // 上传完成。
- CANCELLED: 'cancelled', // 上传取消。
- INTERRUPT: 'interrupt', // 上传中断,可续传。
- INVALID: 'invalid' // 文件不合格,不能重试上传。
- };
-
- return WUFile;
- });
-
- /**
- * @fileOverview 文件队列
- */
- define('queue',[
- 'base',
- 'mediator',
- 'file'
- ], function( Base, Mediator, WUFile ) {
-
- var $ = Base.$,
- STATUS = WUFile.Status;
-
- /**
- * 文件队列, 用来存储各个状态中的文件。
- * @class Queue
- * @extends Mediator
- */
- function Queue() {
-
- /**
- * 统计文件数。
- * * `numOfQueue` 队列中的文件数。
- * * `numOfSuccess` 上传成功的文件数
- * * `numOfCancel` 被取消的文件数
- * * `numOfProgress` 正在上传中的文件数
- * * `numOfUploadFailed` 上传错误的文件数。
- * * `numOfInvalid` 无效的文件数。
- * * `numOfDeleted` 被移除的文件数。
- * * `numOfInterrupt` 被中断的文件数。
- * @property {Object} stats
- */
- this.stats = {
- numOfQueue: 0,
- numOfSuccess: 0,
- numOfCancel: 0,
- numOfProgress: 0,
- numOfUploadFailed: 0,
- numOfInvalid: 0,
- numOfDeleted: 0,
- numOfInterrupt: 0
- };
-
- // 上传队列,仅包括等待上传的文件
- this._queue = [];
-
- // 存储所有文件
- this._map = {};
- }
-
- $.extend( Queue.prototype, {
-
- /**
- * 将新文件加入对队列尾部
- *
- * @method append
- * @param {File} file 文件对象
- */
- append: function( file ) {
- this._queue.push( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 将新文件加入对队列头部
- *
- * @method prepend
- * @param {File} file 文件对象
- */
- prepend: function( file ) {
- this._queue.unshift( file );
- this._fileAdded( file );
- return this;
- },
-
- /**
- * 获取文件对象
- *
- * @method getFile
- * @param {String} fileId 文件ID
- * @return {File}
- */
- getFile: function( fileId ) {
- if ( typeof fileId !== 'string' ) {
- return fileId;
- }
- return this._map[ fileId ];
- },
-
- /**
- * 从队列中取出一个指定状态的文件。
- * @grammar fetch( status ) => File
- * @method fetch
- * @param {String} status [文件状态值](#WebUploader:File:File.Status)
- * @return {File} [File](#WebUploader:File)
- */
- fetch: function( status ) {
- var len = this._queue.length,
- i, file;
-
- status = status || STATUS.QUEUED;
-
- for ( i = 0; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( status === file.getStatus() ) {
- return file;
- }
- }
-
- return null;
- },
-
- /**
- * 对队列进行排序,能够控制文件上传顺序。
- * @grammar sort( fn ) => undefined
- * @method sort
- * @param {Function} fn 排序方法
- */
- sort: function( fn ) {
- if ( typeof fn === 'function' ) {
- this._queue.sort( fn );
- }
- },
-
- /**
- * 获取指定类型的文件列表, 列表中每一个成员为[File](#WebUploader:File)对象。
- * @grammar getFiles( [status1[, status2 ...]] ) => Array
- * @method getFiles
- * @param {String} [status] [文件状态值](#WebUploader:File:File.Status)
- */
- getFiles: function() {
- var sts = [].slice.call( arguments, 0 ),
- ret = [],
- i = 0,
- len = this._queue.length,
- file;
-
- for ( ; i < len; i++ ) {
- file = this._queue[ i ];
-
- if ( sts.length && !~$.inArray( file.getStatus(), sts ) ) {
- continue;
- }
-
- ret.push( file );
- }
-
- return ret;
- },
-
- /**
- * 在队列中删除文件。
- * @grammar removeFile( file ) => Array
- * @method removeFile
- * @param {File} 文件对象。
- */
- removeFile: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( existing ) {
- delete this._map[ file.id ];
- this._delFile(file);
- file.destroy();
- this.stats.numOfDeleted++;
-
- }
- },
-
- _fileAdded: function( file ) {
- var me = this,
- existing = this._map[ file.id ];
-
- if ( !existing ) {
- this._map[ file.id ] = file;
-
- file.on( 'statuschange', function( cur, pre ) {
- me._onFileStatusChange( cur, pre );
- });
- }
- },
-
- _delFile : function(file){
- for(var i = this._queue.length - 1 ; i >= 0 ; i-- ){
- if(this._queue[i] == file){
- this._queue.splice(i,1);
- break;
- }
- }
- },
-
- _onFileStatusChange: function( curStatus, preStatus ) {
- var stats = this.stats;
-
- switch ( preStatus ) {
- case STATUS.PROGRESS:
- stats.numOfProgress--;
- break;
-
- case STATUS.QUEUED:
- stats.numOfQueue --;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed--;
- break;
-
- case STATUS.INVALID:
- stats.numOfInvalid--;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt--;
- break;
- }
-
- switch ( curStatus ) {
- case STATUS.QUEUED:
- stats.numOfQueue++;
- break;
-
- case STATUS.PROGRESS:
- stats.numOfProgress++;
- break;
-
- case STATUS.ERROR:
- stats.numOfUploadFailed++;
- break;
-
- case STATUS.COMPLETE:
- stats.numOfSuccess++;
- break;
-
- case STATUS.CANCELLED:
- stats.numOfCancel++;
- break;
-
-
- case STATUS.INVALID:
- stats.numOfInvalid++;
- break;
-
- case STATUS.INTERRUPT:
- stats.numOfInterrupt++;
- break;
- }
- }
-
- });
-
- Mediator.installTo( Queue.prototype );
-
- return Queue;
- });
-
- /**
- * @fileOverview 队列
- */
- define('widgets/queue',[
- 'base',
- 'uploader',
- 'queue',
- 'file',
- 'lib/file',
- 'runtime/client',
- 'widgets/widget'
- ], function( Base, Uploader, Queue, WUFile, File, RuntimeClient ) {
-
- var $ = Base.$,
- rExt = /\.\w+$/,
- Status = WUFile.Status;
-
- return Uploader.register({
- name: 'queue',
-
- init: function( opts ) {
- var me = this,
- deferred, len, i, item, arr, accept, runtime;
-
- if ( $.isPlainObject( opts.accept ) ) {
- opts.accept = [ opts.accept ];
- }
-
- // accept中的中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
-
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].extensions;
- item && arr.push( item );
- }
-
- if ( arr.length ) {
- accept = '\\.' + arr.join(',')
- .replace( /,/g, '$|\\.' )
- .replace( /\*/g, '.*' ) + '$';
- }
-
- me.accept = new RegExp( accept, 'i' );
- }
-
- me.queue = new Queue();
- me.stats = me.queue.stats;
-
- // 如果当前不是html5运行时,那就算了。
- // 不执行后续操作
- if ( this.request('predict-runtime-type') !== 'html5' ) {
- return;
- }
-
- // 创建一个 html5 运行时的 placeholder
- // 以至于外部添加原生 File 对象的时候能正确包裹一下供 webuploader 使用。
- deferred = Base.Deferred();
- this.placeholder = runtime = new RuntimeClient('Placeholder');
- runtime.connectRuntime({
- runtimeOrder: 'html5'
- }, function() {
- me._ruid = runtime.getRuid();
- deferred.resolve();
- });
- return deferred.promise();
- },
-
-
- // 为了支持外部直接添加一个原生File对象。
- _wrapFile: function( file ) {
- if ( !(file instanceof WUFile) ) {
-
- if ( !(file instanceof File) ) {
- if ( !this._ruid ) {
- throw new Error('Can\'t add external files.');
- }
- file = new File( this._ruid, file );
- }
-
- file = new WUFile( file );
- }
-
- return file;
- },
-
- // 判断文件是否可以被加入队列
- acceptFile: function( file ) {
- var invalid = !file || !file.size || this.accept &&
-
- // 如果名字中有后缀,才做后缀白名单处理。
- rExt.exec( file.name ) && !this.accept.test( file.name );
-
- return !invalid;
- },
-
-
- /**
- * @event beforeFileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列之前触发。如果此事件handler的返回值为`false`,则此文件不会被添加进入队列。
- * @for Uploader
- */
-
- /**
- * @event fileQueued
- * @param {File} file File对象
- * @description 当文件被加入队列以后触发。
- * @for Uploader
- */
-
- _addFile: function( file ) {
- var me = this;
-
- file = me._wrapFile( file );
-
- // 不过类型判断允许不允许,先派送 `beforeFileQueued`
- if ( !me.owner.trigger( 'beforeFileQueued', file ) ) {
- return;
- }
-
- // 类型不匹配,则派送错误事件,并返回。
- if ( !me.acceptFile( file ) ) {
- me.owner.trigger( 'error', 'Q_TYPE_DENIED', file );
- return;
- }
-
- me.queue.append( file );
- me.owner.trigger( 'fileQueued', file );
- return file;
- },
-
- getFile: function( fileId ) {
- return this.queue.getFile( fileId );
- },
-
- /**
- * @event filesQueued
- * @param {File} files 数组,内容为原始File(lib/File)对象。
- * @description 当一批文件添加进队列以后触发。
- * @for Uploader
- */
-
- /**
- * @property {Boolean} [auto=false]
- * @namespace options
- * @for Uploader
- * @description 设置为 true 后,不需要手动调用上传,有文件选择即开始上传。
- *
- */
-
- /**
- * @method addFiles
- * @grammar addFiles( file ) => undefined
- * @grammar addFiles( [file1, file2 ...] ) => undefined
- * @param {Array of File or File} [files] Files 对象 数组
- * @description 添加文件到队列
- * @for Uploader
- */
- addFile: function( files ) {
- var me = this;
-
- if ( !files.length ) {
- files = [ files ];
- }
-
- files = $.map( files, function( file ) {
- return me._addFile( file );
- });
-
- if ( files.length ) {
-
- me.owner.trigger( 'filesQueued', files );
-
- if ( me.options.auto ) {
- setTimeout(function() {
- me.request('start-upload');
- }, 20 );
- }
- }
- },
-
- getStats: function() {
- return this.stats;
- },
-
- /**
- * @event fileDequeued
- * @param {File} file File对象
- * @description 当文件被移除队列后触发。
- * @for Uploader
- */
-
- /**
- * @method removeFile
- * @grammar removeFile( file ) => undefined
- * @grammar removeFile( id ) => undefined
- * @grammar removeFile( file, true ) => undefined
- * @grammar removeFile( id, true ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 移除某一文件, 默认只会标记文件状态为已取消,如果第二个参数为 `true` 则会从 queue 中移除。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.removeFile( file );
- * })
- */
- removeFile: function( file, remove ) {
- var me = this;
-
- file = file.id ? file : me.queue.getFile( file );
-
- this.request( 'cancel-file', file );
-
- if ( remove ) {
- this.queue.removeFile( file );
- }
- },
-
- /**
- * @method getFiles
- * @grammar getFiles() => Array
- * @grammar getFiles( status1, status2, status... ) => Array
- * @description 返回指定状态的文件集合,不传参数将返回所有状态的文件。
- * @for Uploader
- * @example
- * console.log( uploader.getFiles() ); // => all files
- * console.log( uploader.getFiles('error') ) // => all error files.
- */
- getFiles: function() {
- return this.queue.getFiles.apply( this.queue, arguments );
- },
-
- fetchFile: function() {
- return this.queue.fetch.apply( this.queue, arguments );
- },
-
- /**
- * @method retry
- * @grammar retry() => undefined
- * @grammar retry( file ) => undefined
- * @description 重试上传,重试指定文件,或者从出错的文件开始重新上传。
- * @for Uploader
- * @example
- * function retry() {
- * uploader.retry();
- * }
- */
- retry: function( file, noForceStart ) {
- var me = this,
- files, i, len;
-
- if ( file ) {
- file = file.id ? file : me.queue.getFile( file );
- file.setStatus( Status.QUEUED );
- noForceStart || me.request('start-upload');
- return;
- }
-
- files = me.queue.getFiles( Status.ERROR );
- i = 0;
- len = files.length;
-
- for ( ; i < len; i++ ) {
- file = files[ i ];
- file.setStatus( Status.QUEUED );
- }
-
- me.request('start-upload');
- },
-
- /**
- * @method sort
- * @grammar sort( fn ) => undefined
- * @description 排序队列中的文件,在上传之前调整可以控制上传顺序。
- * @for Uploader
- */
- sortFiles: function() {
- return this.queue.sort.apply( this.queue, arguments );
- },
-
- /**
- * @event reset
- * @description 当 uploader 被重置的时候触发。
- * @for Uploader
- */
-
- /**
- * @method reset
- * @grammar reset() => undefined
- * @description 重置uploader。目前只重置了队列。
- * @for Uploader
- * @example
- * uploader.reset();
- */
- reset: function() {
- this.owner.trigger('reset');
- this.queue = new Queue();
- this.stats = this.queue.stats;
- },
-
- destroy: function() {
- this.reset();
- this.placeholder && this.placeholder.destroy();
- }
- });
-
- });
- /**
- * @fileOverview 添加获取Runtime相关信息的方法。
- */
- define('widgets/runtime',[
- 'uploader',
- 'runtime/runtime',
- 'widgets/widget'
- ], function( Uploader, Runtime ) {
-
- Uploader.support = function() {
- return Runtime.hasRuntime.apply( Runtime, arguments );
- };
-
- /**
- * @property {Object} [runtimeOrder=html5,flash]
- * @namespace options
- * @for Uploader
- * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
- *
- * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
- */
-
- return Uploader.register({
- name: 'runtime',
-
- init: function() {
- if ( !this.predictRuntimeType() ) {
- throw Error('Runtime Error');
- }
- },
-
- /**
- * 预测Uploader将采用哪个`Runtime`
- * @grammar predictRuntimeType() => String
- * @method predictRuntimeType
- * @for Uploader
- */
- predictRuntimeType: function() {
- var orders = this.options.runtimeOrder || Runtime.orders,
- type = this.type,
- i, len;
-
- if ( !type ) {
- orders = orders.split( /\s*,\s*/g );
-
- for ( i = 0, len = orders.length; i < len; i++ ) {
- if ( Runtime.hasRuntime( orders[ i ] ) ) {
- this.type = type = orders[ i ];
- break;
- }
- }
- }
-
- return type;
- }
- });
- });
- /**
- * @fileOverview Transport
- */
- define('lib/transport',[
- 'base',
- 'runtime/client',
- 'mediator'
- ], function( Base, RuntimeClient, Mediator ) {
-
- var $ = Base.$;
-
- function Transport( opts ) {
- var me = this;
-
- opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
- RuntimeClient.call( this, 'Transport' );
-
- this._blob = null;
- this._formData = opts.formData || {};
- this._headers = opts.headers || {};
-
- this.on( 'progress', this._timeout );
- this.on( 'load error', function() {
- me.trigger( 'progress', 1 );
- clearTimeout( me._timer );
- });
- }
-
- Transport.options = {
- server: '',
- method: 'POST',
-
- // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
- withCredentials: false,
- fileVal: 'file',
- timeout: 2 * 60 * 1000, // 2分钟
- formData: {},
- headers: {},
- sendAsBinary: false
- };
-
- $.extend( Transport.prototype, {
-
- // 添加Blob, 只能添加一次,最后一次有效。
- appendBlob: function( key, blob, filename ) {
- var me = this,
- opts = me.options;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- });
-
- me._blob = blob;
- opts.fileVal = key || opts.fileVal;
- opts.filename = filename || opts.filename;
- },
-
- // 添加其他字段
- append: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._formData, key );
- } else {
- this._formData[ key ] = value;
- }
- },
-
- setRequestHeader: function( key, value ) {
- if ( typeof key === 'object' ) {
- $.extend( this._headers, key );
- } else {
- this._headers[ key ] = value;
- }
- },
-
- send: function( method ) {
- this.exec( 'send', method );
- this._timeout();
- },
-
- abort: function() {
- clearTimeout( this._timer );
- return this.exec('abort');
- },
-
- destroy: function() {
- this.trigger('destroy');
- this.off();
- this.exec('destroy');
- this.disconnectRuntime();
- },
-
- getResponseHeaders: function() {
- return this.exec('getResponseHeaders');
- },
-
- getResponse: function() {
- return this.exec('getResponse');
- },
-
- getResponseAsJson: function() {
- return this.exec('getResponseAsJson');
- },
-
- getStatus: function() {
- return this.exec('getStatus');
- },
-
- _timeout: function() {
- var me = this,
- duration = me.options.timeout;
-
- if ( !duration ) {
- return;
- }
-
- clearTimeout( me._timer );
- me._timer = setTimeout(function() {
- me.abort();
- me.trigger( 'error', 'timeout' );
- }, duration );
- }
-
- });
-
- // 让Transport具备事件功能。
- Mediator.installTo( Transport.prototype );
-
- return Transport;
+ /**
+ * @fileOverview 添加获取Runtime相关信息的方法。
+ */
+ define('widgets/runtime',[
+ 'uploader',
+ 'runtime/runtime',
+ 'widgets/widget'
+ ], function( Uploader, Runtime ) {
+
+ Uploader.support = function() {
+ return Runtime.hasRuntime.apply( Runtime, arguments );
+ };
+
+ /**
+ * @property {Object} [runtimeOrder=html5,flash]
+ * @namespace options
+ * @for Uploader
+ * @description 指定运行时启动顺序。默认会先尝试 html5 是否支持,如果支持则使用 html5, 否则使用 flash.
+ *
+ * 可以将此值设置成 `flash`,来强制使用 flash 运行时。
+ */
+
+ return Uploader.register({
+ name: 'runtime',
+
+ init: function() {
+ if ( !this.predictRuntimeType() ) {
+ throw Error('Runtime Error');
+ }
+ },
+
+ /**
+ * 预测Uploader将采用哪个`Runtime`
+ * @grammar predictRuntimeType() => String
+ * @method predictRuntimeType
+ * @for Uploader
+ */
+ predictRuntimeType: function() {
+ var orders = this.options.runtimeOrder || Runtime.orders,
+ type = this.type,
+ i, len;
+
+ if ( !type ) {
+ orders = orders.split( /\s*,\s*/g );
+
+ for ( i = 0, len = orders.length; i < len; i++ ) {
+ if ( Runtime.hasRuntime( orders[ i ] ) ) {
+ this.type = type = orders[ i ];
+ break;
+ }
+ }
+ }
+
+ return type;
+ }
+ });
});
+ /**
+ * @fileOverview Transport
+ */
+ define('lib/transport',[
+ 'base',
+ 'runtime/client',
+ 'mediator'
+ ], function( Base, RuntimeClient, Mediator ) {
+
+ var $ = Base.$;
+
+ function Transport( opts ) {
+ var me = this;
+
+ opts = me.options = $.extend( true, {}, Transport.options, opts || {} );
+ RuntimeClient.call( this, 'Transport' );
+
+ this._blob = null;
+ this._formData = opts.formData || {};
+ this._headers = opts.headers || {};
+
+ this.on( 'progress', this._timeout );
+ this.on( 'load error', function() {
+ me.trigger( 'progress', 1 );
+ clearTimeout( me._timer );
+ });
+ }
+
+ Transport.options = {
+ server: '',
+ method: 'POST',
+
+ // 跨域时,是否允许携带cookie, 只有html5 runtime才有效
+ withCredentials: false,
+ fileVal: 'file',
+ timeout: 2 * 60 * 1000, // 2分钟
+ formData: {},
+ headers: {},
+ sendAsBinary: false
+ };
+
+ $.extend( Transport.prototype, {
+
+ // 添加Blob, 只能添加一次,最后一次有效。
+ appendBlob: function( key, blob, filename ) {
+ var me = this,
+ opts = me.options;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ });
+
+ me._blob = blob;
+ opts.fileVal = key || opts.fileVal;
+ opts.filename = filename || opts.filename;
+ },
+
+ // 添加其他字段
+ append: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._formData, key );
+ } else {
+ this._formData[ key ] = value;
+ }
+ },
+
+ setRequestHeader: function( key, value ) {
+ if ( typeof key === 'object' ) {
+ $.extend( this._headers, key );
+ } else {
+ this._headers[ key ] = value;
+ }
+ },
+
+ send: function( method ) {
+ this.exec( 'send', method );
+ this._timeout();
+ },
+
+ abort: function() {
+ clearTimeout( this._timer );
+ return this.exec('abort');
+ },
+
+ destroy: function() {
+ this.trigger('destroy');
+ this.off();
+ this.exec('destroy');
+ this.disconnectRuntime();
+ },
+
+ getResponseHeaders: function() {
+ return this.exec('getResponseHeaders');
+ },
+
+ getResponse: function() {
+ return this.exec('getResponse');
+ },
+
+ getResponseAsJson: function() {
+ return this.exec('getResponseAsJson');
+ },
+
+ getStatus: function() {
+ return this.exec('getStatus');
+ },
+
+ _timeout: function() {
+ var me = this,
+ duration = me.options.timeout;
+
+ if ( !duration ) {
+ return;
+ }
+
+ clearTimeout( me._timer );
+ me._timer = setTimeout(function() {
+ me.abort();
+ me.trigger( 'error', 'timeout' );
+ }, duration );
+ }
+
+ });
+
+ // 让Transport具备事件功能。
+ Mediator.installTo( Transport.prototype );
+
+ return Transport;
+ });
- /**
- * @fileOverview 负责文件上传相关。
- */
- define('widgets/upload',[
- 'base',
- 'uploader',
- 'file',
- 'lib/transport',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile, Transport ) {
-
- var $ = Base.$,
- isPromise = Base.isPromise,
- Status = WUFile.Status;
-
- // 添加默认配置项
- $.extend( Uploader.options, {
-
-
- /**
- * @property {Boolean} [prepareNextFile=false]
- * @namespace options
- * @for Uploader
- * @description 是否允许在文件传输时提前把下一个文件准备好。
- * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
- * 如果能提前在当前文件传输期处理,可以节省总体耗时。
- */
- prepareNextFile: false,
-
- /**
- * @property {Boolean} [chunked=false]
- * @namespace options
- * @for Uploader
- * @description 是否要分片处理大文件上传。
- */
- chunked: false,
-
- /**
- * @property {Boolean} [chunkSize=5242880]
- * @namespace options
- * @for Uploader
- * @description 如果要分片,分多大一片? 默认大小为5M.
- */
- chunkSize: 5 * 1024 * 1024,
-
- /**
- * @property {Boolean} [chunkRetry=2]
- * @namespace options
- * @for Uploader
- * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
- */
- chunkRetry: 2,
-
- /**
- * @property {Number} [chunkRetryDelay=1000]
- * @namespace options
- * @for Uploader
- * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
- */
- chunkRetryDelay: 1000,
-
- /**
- * @property {Boolean} [threads=3]
- * @namespace options
- * @for Uploader
- * @description 上传并发数。允许同时最大上传进程数。
- */
- threads: 3,
-
-
- /**
- * @property {Object} [formData={}]
- * @namespace options
- * @for Uploader
- * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
- */
- formData: {}
-
- /**
- * @property {Object} [fileVal='file']
- * @namespace options
- * @for Uploader
- * @description 设置文件上传域的name。
- */
-
- /**
- * @property {Object} [method=POST]
- * @namespace options
- * @for Uploader
- * @description 文件上传方式,`POST` 或者 `GET`。
- */
-
- /**
- * @property {Object} [sendAsBinary=false]
- * @namespace options
- * @for Uploader
- * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
- * 其他参数在$_GET数组中。
- */
- });
-
- // 负责将文件切片。
- function CuteFile( file, chunkSize ) {
- var pending = [],
- blob = file.source,
- total = blob.size,
- chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
- start = 0,
- index = 0,
- len, api;
-
- api = {
- file: file,
-
- has: function() {
- return !!pending.length;
- },
-
- shift: function() {
- return pending.shift();
- },
-
- unshift: function( block ) {
- pending.unshift( block );
- }
- };
-
- while ( index < chunks ) {
- len = Math.min( chunkSize, total - start );
-
- pending.push({
- file: file,
- start: start,
- end: chunkSize ? (start + len) : total,
- total: total,
- chunks: chunks,
- chunk: index++,
- cuted: api
- });
- start += len;
- }
-
- file.blocks = pending.concat();
- file.remaning = pending.length;
-
- return api;
- }
-
- Uploader.register({
- name: 'upload',
-
- init: function() {
- var owner = this.owner,
- me = this;
-
- this.runing = false;
- this.progress = false;
-
- owner
- .on( 'startUpload', function() {
- me.progress = true;
- })
- .on( 'uploadFinished', function() {
- me.progress = false;
- });
-
- // 记录当前正在传的数据,跟threads相关
- this.pool = [];
-
- // 缓存分好片的文件。
- this.stack = [];
-
- // 缓存即将上传的文件。
- this.pending = [];
-
- // 跟踪还有多少分片在上传中但是没有完成上传。
- this.remaning = 0;
- this.__tick = Base.bindFn( this._tick, this );
-
- // 销毁上传相关的属性。
- owner.on( 'uploadComplete', function( file ) {
-
- // 把其他块取消了。
- file.blocks && $.each( file.blocks, function( _, v ) {
- v.transport && (v.transport.abort(), v.transport.destroy());
- delete v.transport;
- });
-
- delete file.blocks;
- delete file.remaning;
- });
- },
-
- reset: function() {
- this.request( 'stop-upload', true );
- this.runing = false;
- this.pool = [];
- this.stack = [];
- this.pending = [];
- this.remaning = 0;
- this._trigged = false;
- this._promise = null;
- },
-
- /**
- * @event startUpload
- * @description 当开始上传流程时触发。
- * @for Uploader
- */
-
- /**
- * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
- *
- * 可以指定开始某一个文件。
- * @grammar upload() => undefined
- * @grammar upload( file | fileId) => undefined
- * @method upload
- * @for Uploader
- */
- startUpload: function(file) {
- var me = this;
-
- // 移出invalid的文件
- $.each( me.request( 'get-files', Status.INVALID ), function() {
- me.request( 'remove-file', this );
- });
-
- // 如果指定了开始某个文件,则只开始指定的文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if (file.getStatus() === Status.INTERRUPT) {
- file.setStatus( Status.QUEUED );
-
- $.each( me.pool, function( _, v ) {
-
- // 之前暂停过。
- if (v.file !== file) {
- return;
- }
-
- v.transport && v.transport.send();
- file.setStatus( Status.PROGRESS );
- });
-
-
- } else if (file.getStatus() !== Status.PROGRESS) {
- file.setStatus( Status.QUEUED );
- }
- } else {
- $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
- this.setStatus( Status.QUEUED );
- });
- }
-
- if ( me.runing ) {
- me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
- return Base.nextTick( me.__tick );
- }
-
- me.runing = true;
- var files = [];
-
- // 如果有暂停的,则续传
- file || $.each( me.pool, function( _, v ) {
- var file = v.file;
-
- if ( file.getStatus() === Status.INTERRUPT ) {
- me._trigged = false;
- files.push(file);
-
- if (v.waiting) {
- return;
- }
-
- // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
- v.transport ? v.transport.send() : me._doSend(v);
- }
- });
-
- $.each(files, function() {
- this.setStatus( Status.PROGRESS );
- });
-
- file || $.each( me.request( 'get-files',
- Status.INTERRUPT ), function() {
- this.setStatus( Status.PROGRESS );
- });
-
- me._trigged = false;
- Base.nextTick( me.__tick );
- me.owner.trigger('startUpload');
- },
-
- /**
- * @event stopUpload
- * @description 当开始上传流程暂停时触发。
- * @for Uploader
- */
-
- /**
- * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
- *
- * 如果第一个参数是文件,则只暂停指定文件。
- * @grammar stop() => undefined
- * @grammar stop( true ) => undefined
- * @grammar stop( file ) => undefined
- * @method stop
- * @for Uploader
- */
- stopUpload: function( file, interrupt ) {
- var me = this;
-
- if (file === true) {
- interrupt = file;
- file = null;
- }
-
- if ( me.runing === false ) {
- return;
- }
-
- // 如果只是暂停某个文件。
- if ( file ) {
- file = file.id ? file : me.request( 'get-file', file );
-
- if ( file.getStatus() !== Status.PROGRESS &&
- file.getStatus() !== Status.QUEUED ) {
- return;
- }
-
- file.setStatus( Status.INTERRUPT );
-
-
- $.each( me.pool, function( _, v ) {
-
- // 只 abort 指定的文件,每一个分片。
- if (v.file === file) {
- v.transport && v.transport.abort();
-
- if (interrupt) {
- me._putback(v);
- me._popBlock(v);
- }
- }
- });
-
- me.owner.trigger('stopUpload', file);// 暂停,trigger event
-
- return Base.nextTick( me.__tick );
- }
-
- me.runing = false;
-
- // 正在准备中的文件。
- if (this._promise && this._promise.file) {
- this._promise.file.setStatus( Status.INTERRUPT );
- }
-
- interrupt && $.each( me.pool, function( _, v ) {
- v.transport && v.transport.abort();
- v.file.setStatus( Status.INTERRUPT );
- });
-
- me.owner.trigger('stopUpload');
- },
-
- /**
- * @method cancelFile
- * @grammar cancelFile( file ) => undefined
- * @grammar cancelFile( id ) => undefined
- * @param {File|id} file File对象或这File对象的id
- * @description 标记文件状态为已取消, 同时将中断文件传输。
- * @for Uploader
- * @example
- *
- * $li.on('click', '.remove-this', function() {
- * uploader.cancelFile( file );
- * })
- */
- cancelFile: function( file ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- file.setStatus( Status.CANCELLED );
- this.owner.trigger( 'fileDequeued', file );
- },
-
- /**
- * 判断`Uploader`是否正在上传中。
- * @grammar isInProgress() => Boolean
- * @method isInProgress
- * @for Uploader
- */
- isInProgress: function() {
- return !!this.progress;
- },
-
- _getStats: function() {
- return this.request('get-stats');
- },
-
- /**
- * 跳过一个文件上传,直接标记指定文件为已上传状态。
- * @grammar skipFile( file ) => undefined
- * @method skipFile
- * @for Uploader
- */
- skipFile: function( file, status ) {
- file = file.id ? file : this.request( 'get-file', file );
-
- file.setStatus( status || Status.COMPLETE );
- file.skipped = true;
-
- // 如果正在上传。
- file.blocks && $.each( file.blocks, function( _, v ) {
- var _tr = v.transport;
-
- if ( _tr ) {
- _tr.abort();
- _tr.destroy();
- delete v.transport;
- }
- });
-
- this.owner.trigger( 'uploadSkip', file );
- },
-
- /**
- * @event uploadFinished
- * @description 当所有文件上传结束时触发。
- * @for Uploader
- */
- _tick: function() {
- var me = this,
- opts = me.options,
- fn, val;
-
- // 上一个promise还没有结束,则等待完成后再执行。
- if ( me._promise ) {
- return me._promise.always( me.__tick );
- }
-
- // 还有位置,且还有文件要处理的话。
- if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
- me._trigged = false;
-
- fn = function( val ) {
- me._promise = null;
-
- // 有可能是reject过来的,所以要检测val的类型。
- val && val.file && me._startSend( val );
- Base.nextTick( me.__tick );
- };
-
- me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
-
- // 没有要上传的了,且没有正在传输的了。
- } else if ( !me.remaning && !me._getStats().numOfQueue &&
- !me._getStats().numOfInterrupt ) {
- me.runing = false;
-
- me._trigged || Base.nextTick(function() {
- me.owner.trigger('uploadFinished');
- });
- me._trigged = true;
- }
- },
-
- _putback: function(block) {
- var idx;
-
- block.cuted.unshift(block);
- idx = this.stack.indexOf(block.cuted);
-
- if (!~idx) {
- // 如果不在里面,说明移除过,需要把计数还原回去。
- this.remaning++;
- block.file.remaning++;
- this.stack.unshift(block.cuted);
- }
- },
-
- _getStack: function() {
- var i = 0,
- act;
-
- while ( (act = this.stack[ i++ ]) ) {
- if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
- return act;
- } else if (!act.has() ||
- act.file.getStatus() !== Status.PROGRESS &&
- act.file.getStatus() !== Status.INTERRUPT ) {
-
- // 把已经处理完了的,或者,状态为非 progress(上传中)、
- // interupt(暂停中) 的移除。
- this.stack.splice( --i, 1 );
- }
- }
-
- return null;
- },
-
- _nextBlock: function() {
- var me = this,
- opts = me.options,
- act, next, done, preparing;
-
- // 如果当前文件还有没有需要传输的,则直接返回剩下的。
- if ( (act = this._getStack()) ) {
-
- // 是否提前准备下一个文件
- if ( opts.prepareNextFile && !me.pending.length ) {
- me._prepareNextFile();
- }
-
- return act.shift();
-
- // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
- } else if ( me.runing ) {
-
- // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
- if ( !me.pending.length && me._getStats().numOfQueue ) {
- me._prepareNextFile();
- }
-
- next = me.pending.shift();
- done = function( file ) {
- if ( !file ) {
- return null;
- }
-
- act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
- me.stack.push(act);
- return act.shift();
- };
-
- // 文件可能还在prepare中,也有可能已经完全准备好了。
- if ( isPromise( next) ) {
- preparing = next.file;
- next = next[ next.pipe ? 'pipe' : 'then' ]( done );
- next.file = preparing;
- return next;
- }
-
- return done( next );
- }
- },
-
-
- /**
- * @event uploadStart
- * @param {File} file File对象
- * @description 某个文件开始上传前触发,一个文件只会触发一次。
- * @for Uploader
- */
- _prepareNextFile: function() {
- var me = this,
- file = me.request('fetch-file'),
- pending = me.pending,
- promise;
-
- if ( file ) {
- promise = me.request( 'before-send-file', file, function() {
-
- // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
- if ( file.getStatus() === Status.PROGRESS ||
- file.getStatus() === Status.INTERRUPT ) {
- return file;
- }
-
- return me._finishFile( file );
- });
-
- me.owner.trigger( 'uploadStart', file );
- file.setStatus( Status.PROGRESS );
-
- promise.file = file;
-
- // 如果还在pending中,则替换成文件本身。
- promise.done(function() {
- var idx = $.inArray( promise, pending );
-
- ~idx && pending.splice( idx, 1, file );
- });
-
- // befeore-send-file的钩子就有错误发生。
- promise.fail(function( reason ) {
- file.setStatus( Status.ERROR, reason );
- me.owner.trigger( 'uploadError', file, reason );
- me.owner.trigger( 'uploadComplete', file );
- });
-
- pending.push( promise );
- }
- },
-
- // 让出位置了,可以让其他分片开始上传
- _popBlock: function( block ) {
- var idx = $.inArray( block, this.pool );
-
- this.pool.splice( idx, 1 );
- block.file.remaning--;
- this.remaning--;
- },
-
- // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
- _startSend: function( block ) {
- var me = this,
- file = block.file,
- promise;
-
- // 有可能在 before-send-file 的 promise 期间改变了文件状态。
- // 如:暂停,取消
- // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
- if ( file.getStatus() !== Status.PROGRESS ) {
-
- // 如果是中断,则还需要放回去。
- if (file.getStatus() === Status.INTERRUPT) {
- me._putback(block);
- }
-
- return;
- }
-
- me.pool.push( block );
- me.remaning++;
-
- // 如果没有分片,则直接使用原始的。
- // 不会丢失content-type信息。
- block.blob = block.chunks === 1 ? file.source :
- file.source.slice( block.start, block.end );
-
- // hook, 每个分片发送之前可能要做些异步的事情。
- block.waiting = promise = me.request( 'before-send', block, function() {
- delete block.waiting;
-
- // 有可能文件已经上传出错了,所以不需要再传输了。
- if ( file.getStatus() === Status.PROGRESS ) {
- me._doSend( block );
- } else if (block.file.getStatus() !== Status.INTERRUPT) {
- me._popBlock(block);
- }
-
- Base.nextTick(me.__tick);
- });
-
- // 如果为fail了,则跳过此分片。
- promise.fail(function() {
- delete block.waiting;
-
- if ( file.remaning === 1 ) {
- me._finishFile( file ).always(function() {
- block.percentage = 1;
- me._popBlock( block );
- me.owner.trigger( 'uploadComplete', file );
- Base.nextTick( me.__tick );
- });
- } else {
- block.percentage = 1;
- me.updateFileProgress( file );
- me._popBlock( block );
- Base.nextTick( me.__tick );
- }
- });
- },
-
-
- /**
- * @event uploadBeforeSend
- * @param {Object} object
- * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
- * @param {Object} headers 可以扩展此对象来控制上传头部。
- * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
- * @for Uploader
- */
-
- /**
- * @event uploadAccept
- * @param {Object} object
- * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
- * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
- * @for Uploader
- */
-
- /**
- * @event uploadProgress
- * @param {File} file File对象
- * @param {Number} percentage 上传进度
- * @description 上传过程中触发,携带上传进度。
- * @for Uploader
- */
-
-
- /**
- * @event uploadError
- * @param {File} file File对象
- * @param {String} reason 出错的code
- * @description 当文件上传出错时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadSuccess
- * @param {File} file File对象
- * @param {Object} response 服务端返回的数据
- * @description 当文件上传成功时触发。
- * @for Uploader
- */
-
- /**
- * @event uploadComplete
- * @param {File} [file] File对象
- * @description 不管成功或者失败,文件上传完成时触发。
- * @for Uploader
- */
-
- // 做上传操作。
- _doSend: function( block ) {
- var me = this,
- owner = me.owner,
- opts = $.extend({}, me.options, block.options),
- file = block.file,
- tr = new Transport( opts ),
- data = $.extend({}, opts.formData ),
- headers = $.extend({}, opts.headers ),
- requestAccept, ret;
-
- block.transport = tr;
-
- tr.on( 'destroy', function() {
- delete block.transport;
- me._popBlock( block );
- Base.nextTick( me.__tick );
- });
-
- // 广播上传进度。以文件为单位。
- tr.on( 'progress', function( percentage ) {
- block.percentage = percentage;
- me.updateFileProgress( file );
- });
-
- // 用来询问,是否返回的结果是有错误的。
- requestAccept = function( reject ) {
- var fn;
-
- ret = tr.getResponseAsJson() || {};
- ret._raw = tr.getResponse();
- ret._headers = tr.getResponseHeaders();
- block.response = ret;
- fn = function( value ) {
- reject = value;
- };
-
- // 服务端响应了,不代表成功了,询问是否响应正确。
- if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
- reject = reject || 'server';
- }
-
- return reject;
- };
-
- // 尝试重试,然后广播文件上传出错。
- tr.on( 'error', function( type, flag ) {
- // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
- // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
- var typeArr = type.split( '|' ), status, statusText;
- type = typeArr[0];
- status = parseFloat( typeArr[1] ),
- statusText = typeArr[2];
-
- block.retried = block.retried || 0;
-
- // 自动重试
- if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
- block.retried < opts.chunkRetry ) {
-
- block.retried++;
-
- me.retryTimer = setTimeout(function() {
- tr.send();
- }, opts.chunkRetryDelay || 1000);
-
- } else {
-
- // http status 500 ~ 600
- if ( !flag && type === 'server' ) {
- type = requestAccept( type );
- }
-
- file.setStatus( Status.ERROR, type );
- owner.trigger( 'uploadError', file, type, status, statusText );
- owner.trigger( 'uploadComplete', file );
- }
- });
-
- // 上传成功
- tr.on( 'load', function() {
- var reason;
-
- // 如果非预期,转向上传出错。
- if ( (reason = requestAccept()) ) {
- tr.trigger( 'error', reason, true );
- return;
- }
-
- // 全部上传完成。
- if ( file.remaning === 1 ) {
- me._finishFile( file, ret );
- } else {
- tr.destroy();
- }
- });
-
- // 配置默认的上传字段。
- data = $.extend( data, {
- id: file.id,
- name: file.name,
- type: file.type,
- lastModifiedDate: file.lastModifiedDate,
- size: file.size
- });
-
- block.chunks > 1 && $.extend( data, {
- chunks: block.chunks,
- chunk: block.chunk
- });
-
- // 在发送之间可以添加字段什么的。。。
- // 如果默认的字段不够使用,可以通过监听此事件来扩展
- owner.trigger( 'uploadBeforeSend', block, data, headers );
-
- // 开始发送。
- tr.appendBlob( opts.fileVal, block.blob, file.name );
- tr.append( data );
- tr.setRequestHeader( headers );
- tr.send();
- },
-
- // 完成上传。
- _finishFile: function( file, ret, hds ) {
- var owner = this.owner;
-
- return owner
- .request( 'after-send-file', arguments, function() {
- file.setStatus( Status.COMPLETE );
- owner.trigger( 'uploadSuccess', file, ret, hds );
- })
- .fail(function( reason ) {
-
- // 如果外部已经标记为invalid什么的,不再改状态。
- if ( file.getStatus() === Status.PROGRESS ) {
- file.setStatus( Status.ERROR, reason );
- }
-
- owner.trigger( 'uploadError', file, reason );
- })
- .always(function() {
- owner.trigger( 'uploadComplete', file );
- });
- },
-
- updateFileProgress: function(file) {
- var totalPercent = 0,
- uploaded = 0;
-
- if (!file.blocks) {
- return;
- }
-
- $.each( file.blocks, function( _, v ) {
- uploaded += (v.percentage || 0) * (v.end - v.start);
- });
-
- totalPercent = uploaded / file.size;
- this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
- },
-
- destroy: function() {
- clearTimeout(this.retryTimer);
- }
-
- });
- });
-
- /**
- * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
- */
-
- define('widgets/validator',[
- 'base',
- 'uploader',
- 'file',
- 'widgets/widget'
- ], function( Base, Uploader, WUFile ) {
-
- var $ = Base.$,
- validators = {},
- api;
-
- /**
- * @event error
- * @param {String} type 错误类型。
- * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
- *
- * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
- * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
- * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
- * @for Uploader
- */
-
- // 暴露给外面的api
- api = {
-
- // 添加验证器
- addValidator: function( type, cb ) {
- validators[ type ] = cb;
- },
-
- // 移除验证器
- removeValidator: function( type ) {
- delete validators[ type ];
- }
- };
-
- // 在Uploader初始化的时候启动Validators的初始化
- Uploader.register({
- name: 'validator',
-
- init: function() {
- var me = this;
- Base.nextTick(function() {
- $.each( validators, function() {
- this.call( me.owner );
- });
- });
- }
- });
-
- /**
- * @property {int} [fileNumLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总数量, 超出则不允许加入队列。
- */
- api.addValidator( 'fileNumLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileNumLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
- if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
- return false;
- }
- if ( count >= max && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return count >= max ? false : true;
- });
-
- uploader.on( 'fileQueued', function() {
- count++;
- });
-
- uploader.on( 'fileDequeued', function() {
- count--;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
-
- /**
- * @property {int} [fileSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- count = 0,
- max = parseInt( opts.fileSizeLimit, 10 ),
- flag = true;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var invalid = count + file.size > max;
-
- if ( invalid && flag ) {
- flag = false;
- this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
- setTimeout(function() {
- flag = true;
- }, 1 );
- }
-
- return invalid ? false : true;
- });
-
- uploader.on( 'fileQueued', function( file ) {
- count += file.size;
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- count -= file.size;
- });
-
- uploader.on( 'reset', function() {
- count = 0;
- });
- });
-
- /**
- * @property {int} [fileSingleSizeLimit=undefined]
- * @namespace options
- * @for Uploader
- * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
- */
- api.addValidator( 'fileSingleSizeLimit', function() {
- var uploader = this,
- opts = uploader.options,
- max = opts.fileSingleSizeLimit;
-
- if ( !max ) {
- return;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
-
- if ( file.size > max ) {
- file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
- this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
- return false;
- }
-
- });
-
- });
-
- /**
- * @property {Boolean} [duplicate=undefined]
- * @namespace options
- * @for Uploader
- * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
- */
- api.addValidator( 'duplicate', function() {
- var uploader = this,
- opts = uploader.options,
- mapping = {};
-
- if ( opts.duplicate ) {
- return;
- }
-
- function hashString( str ) {
- var hash = 0,
- i = 0,
- len = str.length,
- _char;
-
- for ( ; i < len; i++ ) {
- _char = str.charCodeAt( i );
- hash = _char + (hash << 6) + (hash << 16) - hash;
- }
-
- return hash;
- }
-
- uploader.on( 'beforeFileQueued', function( file ) {
- var hash = file.__hash || (file.__hash = hashString( file.name +
- file.size + file.lastModifiedDate ));
-
- // 已经重复了
- if ( mapping[ hash ] ) {
- this.trigger( 'error', 'F_DUPLICATE', file );
- return false;
- }
- });
-
- uploader.on( 'fileQueued', function( file ) {
- var hash = file.__hash;
-
- hash && (mapping[ hash ] = true);
- });
-
- uploader.on( 'fileDequeued', function( file ) {
- var hash = file.__hash;
-
- hash && (delete mapping[ hash ]);
- });
-
- uploader.on( 'reset', function() {
- mapping = {};
- });
- });
-
- return api;
- });
-
- /**
- * @fileOverview Md5
- */
- define('lib/md5',[
- 'runtime/client',
- 'mediator'
- ], function( RuntimeClient, Mediator ) {
-
- function Md5() {
- RuntimeClient.call( this, 'Md5' );
- }
-
- // 让 Md5 具备事件功能。
- Mediator.installTo( Md5.prototype );
-
- Md5.prototype.loadFromBlob = function( blob ) {
- var me = this;
-
- if ( me.getRuid() ) {
- me.disconnectRuntime();
- }
-
- // 连接到blob归属的同一个runtime.
- me.connectRuntime( blob.ruid, function() {
- me.exec('init');
- me.exec( 'loadFromBlob', blob );
- });
- };
-
- Md5.prototype.getResult = function() {
- return this.exec('getResult');
- };
-
- return Md5;
- });
- /**
- * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
- */
- define('widgets/md5',[
- 'base',
- 'uploader',
- 'lib/md5',
- 'lib/blob',
- 'widgets/widget'
- ], function( Base, Uploader, Md5, Blob ) {
-
- return Uploader.register({
- name: 'md5',
-
-
- /**
- * 计算文件 md5 值,返回一个 promise 对象,可以监听 progress 进度。
- *
- *
- * @method md5File
- * @grammar md5File( file[, start[, end]] ) => promise
- * @for Uploader
- * @example
- *
- * uploader.on( 'fileQueued', function( file ) {
- * var $li = ...;
- *
- * uploader.md5File( file )
- *
- * // 及时显示进度
- * .progress(function(percentage) {
- * console.log('Percentage:', percentage);
- * })
- *
- * // 完成
- * .then(function(val) {
- * console.log('md5 result:', val);
- * });
- *
- * });
- */
- md5File: function( file, start, end ) {
- var md5 = new Md5(),
- deferred = Base.Deferred(),
- blob = (file instanceof Blob) ? file :
- this.request( 'get-file', file ).source;
-
- md5.on( 'progress load', function( e ) {
- e = e || {};
- deferred.notify( e.total ? e.loaded / e.total : 1 );
- });
-
- md5.on( 'complete', function() {
- deferred.resolve( md5.getResult() );
- });
-
- md5.on( 'error', function( reason ) {
- deferred.reject( reason );
- });
-
- if ( arguments.length > 1 ) {
- start = start || 0;
- end = end || 0;
- start < 0 && (start = blob.size + start);
- end < 0 && (end = blob.size + end);
- end = Math.min( end, blob.size );
- blob = blob.slice( start, end );
- }
-
- md5.loadFromBlob( blob );
-
- return deferred.promise();
- }
- });
- });
- /**
- * @fileOverview Runtime管理器,负责Runtime的选择, 连接
- */
- define('runtime/compbase',[],function() {
-
- function CompBase( owner, runtime ) {
-
- this.owner = owner;
- this.options = owner.options;
-
- this.getRuntime = function() {
- return runtime;
- };
-
- this.getRuid = function() {
- return runtime.uid;
- };
-
- this.trigger = function() {
- return owner.trigger.apply( owner, arguments );
- };
- }
-
- return CompBase;
- });
- /**
- * @fileOverview Html5Runtime
- */
- define('runtime/html5/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var type = 'html5',
- components = {};
-
- function Html5Runtime() {
- var pool = {},
- me = this,
- destroy = this.destroy;
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- if ( components[ comp ] ) {
- instance = pool[ uid ] = pool[ uid ] ||
- new components[ comp ]( client, me );
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
- };
-
- me.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
- }
-
- Base.inherits( Runtime, {
- constructor: Html5Runtime,
-
- // 不需要连接其他程序,直接执行callback
- init: function() {
- var me = this;
- setTimeout(function() {
- me.trigger('ready');
- }, 1 );
- }
-
- });
-
- // 注册Components
- Html5Runtime.register = function( name, component ) {
- var klass = components[ name ] = Base.inherits( CompBase, component );
- return klass;
- };
-
- // 注册html5运行时。
- // 只有在支持的前提下注册。
- if ( window.Blob && window.FileReader && window.DataView ) {
- Runtime.addRuntime( type, Html5Runtime );
- }
-
- return Html5Runtime;
- });
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/html5/blob',[
- 'runtime/html5/runtime',
- 'lib/blob'
- ], function( Html5Runtime, Blob ) {
-
- return Html5Runtime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.owner.source,
- slice = blob.slice || blob.webkitSlice || blob.mozSlice;
-
- blob = slice.call( blob, start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
- });
/**
- * @fileOverview FilePaste
+ * @fileOverview 负责文件上传相关。
*/
- define('runtime/html5/dnd',[
+ define('widgets/upload',[
'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ 'uploader',
+ 'file',
+ 'lib/transport',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile, Transport ) {
var $ = Base.$,
- prefix = 'webuploader-dnd-';
+ isPromise = Base.isPromise,
+ Status = WUFile.Status;
- return Html5Runtime.register( 'DragAndDrop', {
- init: function() {
- var elem = this.elem = this.options.container;
+ // 添加默认配置项
+ $.extend( Uploader.options, {
- this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
- this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
- this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
- this.dropHandler = Base.bindFn( this._dropHandler, this );
- this.dndOver = false;
- elem.on( 'dragenter', this.dragEnterHandler );
- elem.on( 'dragover', this.dragOverHandler );
- elem.on( 'dragleave', this.dragLeaveHandler );
- elem.on( 'drop', this.dropHandler );
+ /**
+ * @property {Boolean} [prepareNextFile=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否允许在文件传输时提前把下一个文件准备好。
+ * 某些文件的准备工作比较耗时,比如图片压缩,md5序列化。
+ * 如果能提前在当前文件传输期处理,可以节省总体耗时。
+ */
+ prepareNextFile: false,
- if ( this.options.disableGlobalDnd ) {
- $( document ).on( 'dragover', this.dragOverHandler );
- $( document ).on( 'drop', this.dropHandler );
- }
- },
+ /**
+ * @property {Boolean} [chunked=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否要分片处理大文件上传。
+ */
+ chunked: false,
- _dragEnterHandler: function( e ) {
- var me = this,
- denied = me._denied || false,
- items;
+ /**
+ * @property {Boolean} [chunkSize=5242880]
+ * @namespace options
+ * @for Uploader
+ * @description 如果要分片,分多大一片? 默认大小为5M.
+ */
+ chunkSize: 5 * 1024 * 1024,
- e = e.originalEvent || e;
+ /**
+ * @property {Boolean} [chunkRetry=2]
+ * @namespace options
+ * @for Uploader
+ * @description 如果某个分片由于网络问题出错,允许自动重传多少次?
+ */
+ chunkRetry: 2,
- if ( !me.dndOver ) {
- me.dndOver = true;
+ /**
+ * @property {Number} [chunkRetryDelay=1000]
+ * @namespace options
+ * @for Uploader
+ * @description 开启重试后,设置重试延时时间, 单位毫秒。默认1000毫秒,即1秒.
+ */
+ chunkRetryDelay: 1000,
- // 注意只有 chrome 支持。
- items = e.dataTransfer.items;
+ /**
+ * @property {Boolean} [threads=3]
+ * @namespace options
+ * @for Uploader
+ * @description 上传并发数。允许同时最大上传进程数。
+ */
+ threads: 3,
- if ( items && items.length ) {
- me._denied = denied = !me.trigger( 'accept', items );
- }
- me.elem.addClass( prefix + 'over' );
- me.elem[ denied ? 'addClass' :
- 'removeClass' ]( prefix + 'denied' );
- }
+ /**
+ * @property {Object} [formData={}]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传请求的参数表,每次发送都会发送此对象中的参数。
+ */
+ formData: {}
- e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+ /**
+ * @property {Object} [fileVal='file']
+ * @namespace options
+ * @for Uploader
+ * @description 设置文件上传域的name。
+ */
- return false;
- },
+ /**
+ * @property {Object} [method=POST]
+ * @namespace options
+ * @for Uploader
+ * @description 文件上传方式,`POST` 或者 `GET`。
+ */
- _dragOverHandler: function( e ) {
- // 只处理框内的。
- var parentElem = this.elem.parent().get( 0 );
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
+ /**
+ * @property {Object} [sendAsBinary=false]
+ * @namespace options
+ * @for Uploader
+ * @description 是否已二进制的流的方式发送文件,这样整个上传内容`php://input`都为文件内容,
+ * 其他参数在$_GET数组中。
+ */
+ });
+
+ // 负责将文件切片。
+ function CuteFile( file, chunkSize ) {
+ var pending = [],
+ blob = file.source,
+ total = blob.size,
+ chunks = chunkSize ? Math.ceil( total / chunkSize ) : 1,
+ start = 0,
+ index = 0,
+ len, api;
+
+ api = {
+ file: file,
+
+ has: function() {
+ return !!pending.length;
+ },
+
+ shift: function() {
+ return pending.shift();
+ },
+
+ unshift: function( block ) {
+ pending.unshift( block );
}
+ };
- clearTimeout( this._leaveTimer );
- this._dragEnterHandler.call( this, e );
+ while ( index < chunks ) {
+ len = Math.min( chunkSize, total - start );
- return false;
- },
+ pending.push({
+ file: file,
+ start: start,
+ end: chunkSize ? (start + len) : total,
+ total: total,
+ chunks: chunks,
+ chunk: index++,
+ cuted: api
+ });
+ start += len;
+ }
- _dragLeaveHandler: function() {
- var me = this,
- handler;
+ file.blocks = pending.concat();
+ file.remaning = pending.length;
- handler = function() {
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
- };
+ return api;
+ }
- clearTimeout( me._leaveTimer );
- me._leaveTimer = setTimeout( handler, 100 );
- return false;
- },
+ Uploader.register({
+ name: 'upload',
- _dropHandler: function( e ) {
- var me = this,
- ruid = me.getRuid(),
- parentElem = me.elem.parent().get( 0 ),
- dataTransfer, data;
+ init: function() {
+ var owner = this.owner,
+ me = this;
- // 只处理框内的。
- if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
- return false;
- }
+ this.runing = false;
+ this.progress = false;
- e = e.originalEvent || e;
- dataTransfer = e.dataTransfer;
+ owner
+ .on( 'startUpload', function() {
+ me.progress = true;
+ })
+ .on( 'uploadFinished', function() {
+ me.progress = false;
+ });
- // 如果是页面内拖拽,还不能处理,不阻止事件。
- // 此处 ie11 下会报参数错误,
- try {
- data = dataTransfer.getData('text/html');
- } catch( err ) {
- }
+ // 记录当前正在传的数据,跟threads相关
+ this.pool = [];
- me.dndOver = false;
- me.elem.removeClass( prefix + 'over' );
+ // 缓存分好片的文件。
+ this.stack = [];
- if ( !dataTransfer || data ) {
- return;
- }
+ // 缓存即将上传的文件。
+ this.pending = [];
- me._getTansferFiles( dataTransfer, function( results ) {
- me.trigger( 'drop', $.map( results, function( file ) {
- return new File( ruid, file );
- }) );
+ // 跟踪还有多少分片在上传中但是没有完成上传。
+ this.remaning = 0;
+ this.__tick = Base.bindFn( this._tick, this );
+
+ // 销毁上传相关的属性。
+ owner.on( 'uploadComplete', function( file ) {
+
+ // 把其他块取消了。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ v.transport && (v.transport.abort(), v.transport.destroy());
+ delete v.transport;
+ });
+
+ delete file.blocks;
+ delete file.remaning;
});
+ },
- return false;
+ reset: function() {
+ this.request( 'stop-upload', true );
+ this.runing = false;
+ this.pool = [];
+ this.stack = [];
+ this.pending = [];
+ this.remaning = 0;
+ this._trigged = false;
+ this._promise = null;
},
- // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
- _getTansferFiles: function( dataTransfer, callback ) {
- var results = [],
- promises = [],
- items, files, file, item, i, len, canAccessFolder;
+ /**
+ * @event startUpload
+ * @description 当开始上传流程时触发。
+ * @for Uploader
+ */
- items = dataTransfer.items;
- files = dataTransfer.files;
+ /**
+ * 开始上传。此方法可以从初始状态调用开始上传流程,也可以从暂停状态调用,继续上传流程。
+ *
+ * 可以指定开始某一个文件。
+ * @grammar upload() => undefined
+ * @grammar upload( file | fileId) => undefined
+ * @method upload
+ * @for Uploader
+ */
+ startUpload: function(file) {
+ var me = this;
- canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+ // 移出invalid的文件
+ $.each( me.request( 'get-files', Status.INVALID ), function() {
+ me.request( 'remove-file', this );
+ });
- for ( i = 0, len = files.length; i < len; i++ ) {
- file = files[ i ];
- item = items && items[ i ];
+ // 如果指定了开始某个文件,则只开始指定的文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
- if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+ if (file.getStatus() === Status.INTERRUPT) {
+ file.setStatus( Status.QUEUED );
- promises.push( this._traverseDirectoryTree(
- item.webkitGetAsEntry(), results ) );
- } else {
- results.push( file );
+ $.each( me.pool, function( _, v ) {
+
+ // 之前暂停过。
+ if (v.file !== file) {
+ return;
+ }
+
+ v.transport && v.transport.send();
+ file.setStatus( Status.PROGRESS );
+ });
+
+
+ } else if (file.getStatus() !== Status.PROGRESS) {
+ file.setStatus( Status.QUEUED );
}
+ } else {
+ $.each( me.request( 'get-files', [ Status.INITED ] ), function() {
+ this.setStatus( Status.QUEUED );
+ });
}
- Base.when.apply( Base, promises ).done(function() {
+ if ( me.runing ) {
+ me.owner.trigger('startUpload', file);// 开始上传或暂停恢复的,trigger event
+ return Base.nextTick( me.__tick );
+ }
- if ( !results.length ) {
- return;
+ me.runing = true;
+ var files = [];
+
+ // 如果有暂停的,则续传
+ file || $.each( me.pool, function( _, v ) {
+ var file = v.file;
+
+ if ( file.getStatus() === Status.INTERRUPT ) {
+ me._trigged = false;
+ files.push(file);
+
+ if (v.waiting) {
+ return;
+ }
+
+ // 文件 prepare 完后,如果暂停了,这个时候只会把文件插入 pool, 而不会创建 tranport,
+ v.transport ? v.transport.send() : me._doSend(v);
}
+ });
- callback( results );
+ $.each(files, function() {
+ this.setStatus( Status.PROGRESS );
});
+
+ file || $.each( me.request( 'get-files',
+ Status.INTERRUPT ), function() {
+ this.setStatus( Status.PROGRESS );
+ });
+
+ me._trigged = false;
+ Base.nextTick( me.__tick );
+ me.owner.trigger('startUpload');
},
- _traverseDirectoryTree: function( entry, results ) {
- var deferred = Base.Deferred(),
- me = this;
+ /**
+ * @event stopUpload
+ * @description 当开始上传流程暂停时触发。
+ * @for Uploader
+ */
- if ( entry.isFile ) {
- entry.file(function( file ) {
- results.push( file );
- deferred.resolve();
- });
- } else if ( entry.isDirectory ) {
- entry.createReader().readEntries(function( entries ) {
- var len = entries.length,
- promises = [],
- arr = [], // 为了保证顺序。
- i;
+ /**
+ * 暂停上传。第一个参数为是否中断上传当前正在上传的文件。
+ *
+ * 如果第一个参数是文件,则只暂停指定文件。
+ * @grammar stop() => undefined
+ * @grammar stop( true ) => undefined
+ * @grammar stop( file ) => undefined
+ * @method stop
+ * @for Uploader
+ */
+ stopUpload: function( file, interrupt ) {
+ var me = this;
- for ( i = 0; i < len; i++ ) {
- promises.push( me._traverseDirectoryTree(
- entries[ i ], arr ) );
- }
+ if (file === true) {
+ interrupt = file;
+ file = null;
+ }
- Base.when.apply( Base, promises ).then(function() {
- results.push.apply( results, arr );
- deferred.resolve();
- }, deferred.reject );
- });
+ if ( me.runing === false ) {
+ return;
}
- return deferred.promise();
- },
+ // 如果只是暂停某个文件。
+ if ( file ) {
+ file = file.id ? file : me.request( 'get-file', file );
- destroy: function() {
- var elem = this.elem;
+ if ( file.getStatus() !== Status.PROGRESS &&
+ file.getStatus() !== Status.QUEUED ) {
+ return;
+ }
- // 还没 init 就调用 destroy
- if (!elem) {
- return;
- }
+ file.setStatus( Status.INTERRUPT );
- elem.off( 'dragenter', this.dragEnterHandler );
- elem.off( 'dragover', this.dragOverHandler );
- elem.off( 'dragleave', this.dragLeaveHandler );
- elem.off( 'drop', this.dropHandler );
- if ( this.options.disableGlobalDnd ) {
- $( document ).off( 'dragover', this.dragOverHandler );
- $( document ).off( 'drop', this.dropHandler );
- }
- }
- });
- });
-
- /**
- * @fileOverview FilePaste
- */
- define('runtime/html5/filepaste',[
- 'base',
- 'runtime/html5/runtime',
- 'lib/file'
- ], function( Base, Html5Runtime, File ) {
+ $.each( me.pool, function( _, v ) {
- return Html5Runtime.register( 'FilePaste', {
- init: function() {
- var opts = this.options,
- elem = this.elem = opts.container,
- accept = '.*',
- arr, i, len, item;
+ // 只 abort 指定的文件,每一个分片。
+ if (v.file === file) {
+ v.transport && v.transport.abort();
- // accetp的mimeTypes中生成匹配正则。
- if ( opts.accept ) {
- arr = [];
+ if (interrupt) {
+ me._putback(v);
+ me._popBlock(v);
+ }
+ }
+ });
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- item = opts.accept[ i ].mimeTypes;
- item && arr.push( item );
- }
+ me.owner.trigger('stopUpload', file);// 暂停,trigger event
- if ( arr.length ) {
- accept = arr.join(',');
- accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
- }
+ return Base.nextTick( me.__tick );
}
- this.accept = accept = new RegExp( accept, 'i' );
- this.hander = Base.bindFn( this._pasteHander, this );
- elem.on( 'paste', this.hander );
- },
- _pasteHander: function( e ) {
- var allowed = [],
- ruid = this.getRuid(),
- items, item, blob, i, len;
+ me.runing = false;
- e = e.originalEvent || e;
- items = e.clipboardData.items;
+ // 正在准备中的文件。
+ if (this._promise && this._promise.file) {
+ this._promise.file.setStatus( Status.INTERRUPT );
+ }
- for ( i = 0, len = items.length; i < len; i++ ) {
- item = items[ i ];
+ interrupt && $.each( me.pool, function( _, v ) {
+ v.transport && v.transport.abort();
+ v.file.setStatus( Status.INTERRUPT );
+ });
- if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
- continue;
+ me.owner.trigger('stopUpload');
+ },
+
+ /**
+ * @method cancelFile
+ * @grammar cancelFile( file ) => undefined
+ * @grammar cancelFile( id ) => undefined
+ * @param {File|id} file File对象或这File对象的id
+ * @description 标记文件状态为已取消, 同时将中断文件传输。
+ * @for Uploader
+ * @example
+ *
+ * $li.on('click', '.remove-this', function() {
+ * uploader.cancelFile( file );
+ * })
+ */
+ cancelFile: function( file ) {
+ file = file.id ? file : this.request( 'get-file', file );
+
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
+
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
}
+ });
- allowed.push( new File( ruid, blob ) );
- }
+ file.setStatus( Status.CANCELLED );
+ this.owner.trigger( 'fileDequeued', file );
+ },
- if ( allowed.length ) {
- // 不阻止非文件粘贴(文字粘贴)的事件冒泡
- e.preventDefault();
- e.stopPropagation();
- this.trigger( 'paste', allowed );
- }
+ /**
+ * 判断`Uploader`是否正在上传中。
+ * @grammar isInProgress() => Boolean
+ * @method isInProgress
+ * @for Uploader
+ */
+ isInProgress: function() {
+ return !!this.progress;
},
- destroy: function() {
- this.elem.off( 'paste', this.hander );
- }
- });
- });
-
- /**
- * @fileOverview FilePicker
- */
- define('runtime/html5/filepicker',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
+ _getStats: function() {
+ return this.request('get-stats');
+ },
- var $ = Base.$;
+ /**
+ * 跳过一个文件上传,直接标记指定文件为已上传状态。
+ * @grammar skipFile( file ) => undefined
+ * @method skipFile
+ * @for Uploader
+ */
+ skipFile: function( file, status ) {
+ file = file.id ? file : this.request( 'get-file', file );
- return Html5Runtime.register( 'FilePicker', {
- init: function() {
- var container = this.getRuntime().getContainer(),
- me = this,
- owner = me.owner,
- opts = me.options,
- label = this.label = $( document.createElement('label') ),
- input = this.input = $( document.createElement('input') ),
- arr, i, len, mouseHandler, changeHandler;
+ file.setStatus( status || Status.COMPLETE );
+ file.skipped = true;
- input.attr( 'type', 'file' );
- input.attr( 'capture', 'camera');
- input.attr( 'name', opts.name );
- input.addClass('webuploader-element-invisible');
+ // 如果正在上传。
+ file.blocks && $.each( file.blocks, function( _, v ) {
+ var _tr = v.transport;
- label.on( 'click', function(e) {
- input.trigger('click');
- e.stopPropagation();
- owner.trigger('dialogopen');
+ if ( _tr ) {
+ _tr.abort();
+ _tr.destroy();
+ delete v.transport;
+ }
});
- label.css({
- opacity: 0,
- width: '100%',
- height: '100%',
- display: 'block',
- cursor: 'pointer',
- background: '#ffffff'
- });
+ this.owner.trigger( 'uploadSkip', file );
+ },
- if ( opts.multiple ) {
- input.attr( 'multiple', 'multiple' );
+ /**
+ * @event uploadFinished
+ * @description 当所有文件上传结束时触发。
+ * @for Uploader
+ */
+ _tick: function() {
+ var me = this,
+ opts = me.options,
+ fn, val;
+
+ // 上一个promise还没有结束,则等待完成后再执行。
+ if ( me._promise ) {
+ return me._promise.always( me.__tick );
}
- // @todo Firefox不支持单独指定后缀
- if ( opts.accept && opts.accept.length > 0 ) {
- arr = [];
+ // 还有位置,且还有文件要处理的话。
+ if ( me.pool.length < opts.threads && (val = me._nextBlock()) ) {
+ me._trigged = false;
- for ( i = 0, len = opts.accept.length; i < len; i++ ) {
- arr.push( opts.accept[ i ].mimeTypes );
- }
+ fn = function( val ) {
+ me._promise = null;
- input.attr( 'accept', arr.join(',') );
- }
+ // 有可能是reject过来的,所以要检测val的类型。
+ val && val.file && me._startSend( val );
+ Base.nextTick( me.__tick );
+ };
- container.append( input );
- container.append( label );
+ me._promise = isPromise( val ) ? val.always( fn ) : fn( val );
- mouseHandler = function( e ) {
- owner.trigger( e.type );
- };
+ // 没有要上传的了,且没有正在传输的了。
+ } else if ( !me.remaning && !me._getStats().numOfQueue &&
+ !me._getStats().numOfInterrupt ) {
+ me.runing = false;
- changeHandler = function( e ) {
- var clone;
+ me._trigged || Base.nextTick(function() {
+ me.owner.trigger('uploadFinished');
+ });
+ me._trigged = true;
+ }
+ },
- // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
- if (e.target.files.length === 0){
- return false;
+ _putback: function(block) {
+ var idx;
+
+ block.cuted.unshift(block);
+ idx = this.stack.indexOf(block.cuted);
+
+ if (!~idx) {
+ // 如果不在里面,说明移除过,需要把计数还原回去。
+ this.remaning++;
+ block.file.remaning++;
+ this.stack.unshift(block.cuted);
+ }
+ },
+
+ _getStack: function() {
+ var i = 0,
+ act;
+
+ while ( (act = this.stack[ i++ ]) ) {
+ if ( act.has() && act.file.getStatus() === Status.PROGRESS ) {
+ return act;
+ } else if (!act.has() ||
+ act.file.getStatus() !== Status.PROGRESS &&
+ act.file.getStatus() !== Status.INTERRUPT ) {
+
+ // 把已经处理完了的,或者,状态为非 progress(上传中)、
+ // interupt(暂停中) 的移除。
+ this.stack.splice( --i, 1 );
}
+ }
- // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
- me.files = e.target.files;
+ return null;
+ },
+ _nextBlock: function() {
+ var me = this,
+ opts = me.options,
+ act, next, done, preparing;
- // reset input
- clone = this.cloneNode( true );
- clone.value = null;
- this.parentNode.replaceChild( clone, this );
+ // 如果当前文件还有没有需要传输的,则直接返回剩下的。
+ if ( (act = this._getStack()) ) {
- input.off();
- input = $( clone ).on( 'change', changeHandler )
- .on( 'mouseenter mouseleave', mouseHandler );
+ // 是否提前准备下一个文件
+ if ( opts.prepareNextFile && !me.pending.length ) {
+ me._prepareNextFile();
+ }
- owner.trigger('change');
+ return act.shift();
+
+ // 否则,如果正在运行,则准备下一个文件,并等待完成后返回下个分片。
+ } else if ( me.runing ) {
+
+ // 如果缓存中有,则直接在缓存中取,没有则去queue中取。
+ if ( !me.pending.length && me._getStats().numOfQueue ) {
+ me._prepareNextFile();
+ }
+
+ next = me.pending.shift();
+ done = function( file ) {
+ if ( !file ) {
+ return null;
+ }
+
+ act = CuteFile( file, opts.chunked ? opts.chunkSize : 0 );
+ me.stack.push(act);
+ return act.shift();
+ };
+
+ // 文件可能还在prepare中,也有可能已经完全准备好了。
+ if ( isPromise( next) ) {
+ preparing = next.file;
+ next = next[ next.pipe ? 'pipe' : 'then' ]( done );
+ next.file = preparing;
+ return next;
+ }
+
+ return done( next );
}
- input.on( 'change', changeHandler);
- label.on( 'mouseenter mouseleave', mouseHandler );
+ },
+
+
+ /**
+ * @event uploadStart
+ * @param {File} file File对象
+ * @description 某个文件开始上传前触发,一个文件只会触发一次。
+ * @for Uploader
+ */
+ _prepareNextFile: function() {
+ var me = this,
+ file = me.request('fetch-file'),
+ pending = me.pending,
+ promise;
+
+ if ( file ) {
+ promise = me.request( 'before-send-file', file, function() {
+ // 有可能文件被skip掉了。文件被skip掉后,状态坑定不是Queued.
+ if ( file.getStatus() === Status.PROGRESS ||
+ file.getStatus() === Status.INTERRUPT ) {
+ return file;
+ }
+
+ return me._finishFile( file );
+ });
+
+ me.owner.trigger( 'uploadStart', file );
+ file.setStatus( Status.PROGRESS );
+
+ promise.file = file;
+
+ // 如果还在pending中,则替换成文件本身。
+ promise.done(function() {
+ var idx = $.inArray( promise, pending );
+
+ ~idx && pending.splice( idx, 1, file );
+ });
+
+ // befeore-send-file的钩子就有错误发生。
+ promise.fail(function( reason ) {
+ file.setStatus( Status.ERROR, reason );
+ me.owner.trigger( 'uploadError', file, reason );
+ me.owner.trigger( 'uploadComplete', file );
+ });
+
+ pending.push( promise );
+ }
},
+ // 让出位置了,可以让其他分片开始上传
+ _popBlock: function( block ) {
+ var idx = $.inArray( block, this.pool );
- getFiles: function() {
- return this.files;
+ this.pool.splice( idx, 1 );
+ block.file.remaning--;
+ this.remaning--;
+ },
+
+ // 开始上传,可以被掉过。如果promise被reject了,则表示跳过此分片。
+ _startSend: function( block ) {
+ var me = this,
+ file = block.file,
+ promise;
+
+ // 有可能在 before-send-file 的 promise 期间改变了文件状态。
+ // 如:暂停,取消
+ // 我们不能中断 promise, 但是可以在 promise 完后,不做上传操作。
+ if ( file.getStatus() !== Status.PROGRESS ) {
+
+ // 如果是中断,则还需要放回去。
+ if (file.getStatus() === Status.INTERRUPT) {
+ me._putback(block);
+ }
+
+ return;
+ }
+
+ me.pool.push( block );
+ me.remaning++;
+
+ // 如果没有分片,则直接使用原始的。
+ // 不会丢失content-type信息。
+ block.blob = block.chunks === 1 ? file.source :
+ file.source.slice( block.start, block.end );
+
+ // hook, 每个分片发送之前可能要做些异步的事情。
+ block.waiting = promise = me.request( 'before-send', block, function() {
+ delete block.waiting;
+
+ // 有可能文件已经上传出错了,所以不需要再传输了。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ me._doSend( block );
+ } else if (block.file.getStatus() !== Status.INTERRUPT) {
+ me._popBlock(block);
+ }
+
+ Base.nextTick(me.__tick);
+ });
+
+ // 如果为fail了,则跳过此分片。
+ promise.fail(function() {
+ delete block.waiting;
+
+ if ( file.remaning === 1 ) {
+ me._finishFile( file ).always(function() {
+ block.percentage = 1;
+ me._popBlock( block );
+ me.owner.trigger( 'uploadComplete', file );
+ Base.nextTick( me.__tick );
+ });
+ } else {
+ block.percentage = 1;
+ me.updateFileProgress( file );
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ }
+ });
+ },
+
+
+ /**
+ * @event uploadBeforeSend
+ * @param {Object} object
+ * @param {Object} data 默认的上传参数,可以扩展此对象来控制上传参数。
+ * @param {Object} headers 可以扩展此对象来控制上传头部。
+ * @description 当某个文件的分块在发送前触发,主要用来询问是否要添加附带参数,大文件在开起分片上传的前提下此事件可能会触发多次。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadAccept
+ * @param {Object} object
+ * @param {Object} ret 服务端的返回数据,json格式,如果服务端不是json格式,从ret._raw中取数据,自行解析。
+ * @description 当某个文件上传到服务端响应后,会派送此事件来询问服务端响应是否有效。如果此事件handler返回值为`false`, 则此文件将派送`server`类型的`uploadError`事件。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadProgress
+ * @param {File} file File对象
+ * @param {Number} percentage 上传进度
+ * @description 上传过程中触发,携带上传进度。
+ * @for Uploader
+ */
+
+
+ /**
+ * @event uploadError
+ * @param {File} file File对象
+ * @param {String} reason 出错的code
+ * @description 当文件上传出错时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadSuccess
+ * @param {File} file File对象
+ * @param {Object} response 服务端返回的数据
+ * @description 当文件上传成功时触发。
+ * @for Uploader
+ */
+
+ /**
+ * @event uploadComplete
+ * @param {File} [file] File对象
+ * @description 不管成功或者失败,文件上传完成时触发。
+ * @for Uploader
+ */
+
+ // 做上传操作。
+ _doSend: function( block ) {
+ var me = this,
+ owner = me.owner,
+ opts = $.extend({}, me.options, block.options),
+ file = block.file,
+ tr = new Transport( opts ),
+ data = $.extend({}, opts.formData ),
+ headers = $.extend({}, opts.headers ),
+ requestAccept, ret;
+
+ block.transport = tr;
+
+ tr.on( 'destroy', function() {
+ delete block.transport;
+ me._popBlock( block );
+ Base.nextTick( me.__tick );
+ });
+
+ // 广播上传进度。以文件为单位。
+ tr.on( 'progress', function( percentage ) {
+ block.percentage = percentage;
+ me.updateFileProgress( file );
+ });
+
+ // 用来询问,是否返回的结果是有错误的。
+ requestAccept = function( reject ) {
+ var fn;
+
+ ret = tr.getResponseAsJson() || {};
+ ret._raw = tr.getResponse();
+ ret._headers = tr.getResponseHeaders();
+ block.response = ret;
+ fn = function( value ) {
+ reject = value;
+ };
+
+ // 服务端响应了,不代表成功了,询问是否响应正确。
+ if ( !owner.trigger( 'uploadAccept', block, ret, fn ) ) {
+ reject = reject || 'server';
+ }
+
+ return reject;
+ };
+
+ // 尝试重试,然后广播文件上传出错。
+ tr.on( 'error', function( type, flag ) {
+ // 在 runtime/html5/transport.js 上为 type 加上了状态码,形式:type|status|text(如:http-403-Forbidden)
+ // 这里把状态码解释出来,并还原后面代码所依赖的 type 变量
+ var typeArr = type.split( '|' ), status, statusText;
+ type = typeArr[0];
+ status = parseFloat( typeArr[1] ),
+ statusText = typeArr[2];
+
+ block.retried = block.retried || 0;
+
+ // 自动重试
+ if ( block.chunks > 1 && ~'http,abort,server'.indexOf( type.replace( /-.*/, '' ) ) &&
+ block.retried < opts.chunkRetry ) {
+
+ block.retried++;
+
+ me.retryTimer = setTimeout(function() {
+ tr.send();
+ }, opts.chunkRetryDelay || 1000);
+
+ } else {
+
+ // http status 500 ~ 600
+ if ( !flag && type === 'server' ) {
+ type = requestAccept( type );
+ }
+
+ file.setStatus( Status.ERROR, type );
+ owner.trigger( 'uploadError', file, type, status, statusText );
+ owner.trigger( 'uploadComplete', file );
+ }
+ });
+
+ // 上传成功
+ tr.on( 'load', function() {
+ var reason;
+
+ // 如果非预期,转向上传出错。
+ if ( (reason = requestAccept()) ) {
+ tr.trigger( 'error', reason, true );
+ return;
+ }
+
+ // 全部上传完成。
+ if ( file.remaning === 1 ) {
+ me._finishFile( file, ret );
+ } else {
+ tr.destroy();
+ }
+ });
+
+ // 配置默认的上传字段。
+ data = $.extend( data, {
+ id: file.id,
+ name: file.name,
+ type: file.type,
+ lastModifiedDate: file.lastModifiedDate,
+ size: file.size
+ });
+
+ block.chunks > 1 && $.extend( data, {
+ chunks: block.chunks,
+ chunk: block.chunk
+ });
+
+ // 在发送之间可以添加字段什么的。。。
+ // 如果默认的字段不够使用,可以通过监听此事件来扩展
+ owner.trigger( 'uploadBeforeSend', block, data, headers );
+
+ // 开始发送。
+ tr.appendBlob( opts.fileVal, block.blob, file.name );
+ tr.append( data );
+ tr.setRequestHeader( headers );
+ tr.send();
+ },
+
+ // 完成上传。
+ _finishFile: function( file, ret, hds ) {
+ var owner = this.owner;
+
+ return owner
+ .request( 'after-send-file', arguments, function() {
+ file.setStatus( Status.COMPLETE );
+ owner.trigger( 'uploadSuccess', file, ret, hds );
+ })
+ .fail(function( reason ) {
+
+ // 如果外部已经标记为invalid什么的,不再改状态。
+ if ( file.getStatus() === Status.PROGRESS ) {
+ file.setStatus( Status.ERROR, reason );
+ }
+
+ owner.trigger( 'uploadError', file, reason );
+ })
+ .always(function() {
+ owner.trigger( 'uploadComplete', file );
+ });
+ },
+
+ updateFileProgress: function(file) {
+ var totalPercent = 0,
+ uploaded = 0;
+
+ if (!file.blocks) {
+ return;
+ }
+
+ $.each( file.blocks, function( _, v ) {
+ uploaded += (v.percentage || 0) * (v.end - v.start);
+ });
+
+ totalPercent = uploaded / file.size;
+ this.owner.trigger( 'uploadProgress', file, totalPercent || 0 );
},
destroy: function() {
- this.input.off();
- this.label.off();
+ clearTimeout(this.retryTimer);
}
+
});
});
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/util',[
- 'base'
- ], function( Base ) {
-
- var urlAPI = window.createObjectURL && window ||
- window.URL && URL.revokeObjectURL && URL ||
- window.webkitURL,
- createObjectURL = Base.noop,
- revokeObjectURL = createObjectURL;
-
- if ( urlAPI ) {
-
- // 更安全的方式调用,比如android里面就能把context改成其他的对象。
- createObjectURL = function() {
- return urlAPI.createObjectURL.apply( urlAPI, arguments );
- };
-
- revokeObjectURL = function() {
- return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
- };
- }
-
- return {
- createObjectURL: createObjectURL,
- revokeObjectURL: revokeObjectURL,
-
- dataURL2Blob: function( dataURI ) {
- var byteStr, intArray, ab, i, mimetype, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- ab = new ArrayBuffer( byteStr.length );
- intArray = new Uint8Array( ab );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
-
- return this.arrayBufferToBlob( ab, mimetype );
- },
-
- dataURL2ArrayBuffer: function( dataURI ) {
- var byteStr, intArray, i, parts;
-
- parts = dataURI.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- byteStr = atob( parts[ 1 ] );
- } else {
- byteStr = decodeURIComponent( parts[ 1 ] );
- }
-
- intArray = new Uint8Array( byteStr.length );
-
- for ( i = 0; i < byteStr.length; i++ ) {
- intArray[ i ] = byteStr.charCodeAt( i );
- }
-
- return intArray.buffer;
- },
-
- arrayBufferToBlob: function( buffer, type ) {
- var builder = window.BlobBuilder || window.WebKitBlobBuilder,
- bb;
-
- // android不支持直接new Blob, 只能借助blobbuilder.
- if ( builder ) {
- bb = new builder();
- bb.append( buffer );
- return bb.getBlob( type );
- }
-
- return new Blob([ buffer ], type ? { type: type } : {} );
- },
-
- // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
- // 你得到的结果是png.
- canvasToDataUrl: function( canvas, type, quality ) {
- return canvas.toDataURL( type, quality / 100 );
- },
-
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- parseMeta: function( blob, callback ) {
- callback( false, {});
- },
+ /**
+ * @fileOverview 各种验证,包括文件总大小是否超出、单文件是否超出和文件是否重复。
+ */
+
+ define('widgets/validator',[
+ 'base',
+ 'uploader',
+ 'file',
+ 'widgets/widget'
+ ], function( Base, Uploader, WUFile ) {
+
+ var $ = Base.$,
+ validators = {},
+ api;
+
+ /**
+ * @event error
+ * @param {String} type 错误类型。
+ * @description 当validate不通过时,会以派送错误事件的形式通知调用者。通过`upload.on('error', handler)`可以捕获到此类错误,目前有以下错误会在特定的情况下派送错来。
+ *
+ * * `Q_EXCEED_NUM_LIMIT` 在设置了`fileNumLimit`且尝试给`uploader`添加的文件数量超出这个值时派送。
+ * * `Q_EXCEED_SIZE_LIMIT` 在设置了`Q_EXCEED_SIZE_LIMIT`且尝试给`uploader`添加的文件总大小超出这个值时派送。
+ * * `Q_TYPE_DENIED` 当文件类型不满足时触发。。
+ * @for Uploader
+ */
+
+ // 暴露给外面的api
+ api = {
+
+ // 添加验证器
+ addValidator: function( type, cb ) {
+ validators[ type ] = cb;
+ },
+
+ // 移除验证器
+ removeValidator: function( type ) {
+ delete validators[ type ];
+ }
+ };
+
+ // 在Uploader初始化的时候启动Validators的初始化
+ Uploader.register({
+ name: 'validator',
+
+ init: function() {
+ var me = this;
+ Base.nextTick(function() {
+ $.each( validators, function() {
+ this.call( me.owner );
+ });
+ });
+ }
+ });
+
+ /**
+ * @property {int} [fileNumLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总数量, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileNumLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileNumLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ // 增加beforeFileQueuedCheckfileNumLimit验证,主要为了再次加载时(已存在历史文件)验证数量是否超过设置项
+ if (!this.trigger('beforeFileQueuedCheckfileNumLimit', file,count)) {
+ return false;
+ }
+ if ( count >= max && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_NUM_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return count >= max ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function() {
+ count++;
+ });
+
+ uploader.on( 'fileDequeued', function() {
+ count--;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+
+ /**
+ * @property {int} [fileSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证文件总大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ count = 0,
+ max = parseInt( opts.fileSizeLimit, 10 ),
+ flag = true;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var invalid = count + file.size > max;
+
+ if ( invalid && flag ) {
+ flag = false;
+ this.trigger( 'error', 'Q_EXCEED_SIZE_LIMIT', max, file );
+ setTimeout(function() {
+ flag = true;
+ }, 1 );
+ }
+
+ return invalid ? false : true;
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ count += file.size;
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ count -= file.size;
+ });
+
+ uploader.on( 'reset', function() {
+ count = 0;
+ });
+ });
+
+ /**
+ * @property {int} [fileSingleSizeLimit=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 验证单个文件大小是否超出限制, 超出则不允许加入队列。
+ */
+ api.addValidator( 'fileSingleSizeLimit', function() {
+ var uploader = this,
+ opts = uploader.options,
+ max = opts.fileSingleSizeLimit;
+
+ if ( !max ) {
+ return;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+
+ if ( file.size > max ) {
+ file.setStatus( WUFile.Status.INVALID, 'exceed_size' );
+ this.trigger( 'error', 'F_EXCEED_SIZE', max, file );
+ return false;
+ }
+
+ });
+
+ });
+
+ /**
+ * @property {Boolean} [duplicate=undefined]
+ * @namespace options
+ * @for Uploader
+ * @description 去重, 根据文件名字、文件大小和最后修改时间来生成hash Key.
+ */
+ api.addValidator( 'duplicate', function() {
+ var uploader = this,
+ opts = uploader.options,
+ mapping = {};
+
+ if ( opts.duplicate ) {
+ return;
+ }
+
+ function hashString( str ) {
+ var hash = 0,
+ i = 0,
+ len = str.length,
+ _char;
+
+ for ( ; i < len; i++ ) {
+ _char = str.charCodeAt( i );
+ hash = _char + (hash << 6) + (hash << 16) - hash;
+ }
+
+ return hash;
+ }
+
+ uploader.on( 'beforeFileQueued', function( file ) {
+ var hash = file.__hash || (file.__hash = hashString( file.name +
+ file.size + file.lastModifiedDate ));
+
+ // 已经重复了
+ if ( mapping[ hash ] ) {
+ this.trigger( 'error', 'F_DUPLICATE', file );
+ return false;
+ }
+ });
+
+ uploader.on( 'fileQueued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (mapping[ hash ] = true);
+ });
+
+ uploader.on( 'fileDequeued', function( file ) {
+ var hash = file.__hash;
+
+ hash && (delete mapping[ hash ]);
+ });
+
+ uploader.on( 'reset', function() {
+ mapping = {};
+ });
+ });
+
+ return api;
+ });
- // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
- updateImageHead: function( data ) {
- return data;
- }
- };
+ /**
+ * @fileOverview Md5
+ */
+ define('lib/md5',[
+ 'runtime/client',
+ 'mediator'
+ ], function( RuntimeClient, Mediator ) {
+
+ function Md5() {
+ RuntimeClient.call( this, 'Md5' );
+ }
+
+ // 让 Md5 具备事件功能。
+ Mediator.installTo( Md5.prototype );
+
+ Md5.prototype.loadFromBlob = function( blob ) {
+ var me = this;
+
+ if ( me.getRuid() ) {
+ me.disconnectRuntime();
+ }
+
+ // 连接到blob归属的同一个runtime.
+ me.connectRuntime( blob.ruid, function() {
+ me.exec('init');
+ me.exec( 'loadFromBlob', blob );
+ });
+ };
+
+ Md5.prototype.getResult = function() {
+ return this.exec('getResult');
+ };
+
+ return Md5;
});
- /**
- * Terms:
- *
- * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
- * @fileOverview Image控件
- */
- define('runtime/html5/imagemeta',[
- 'runtime/html5/util'
- ], function( Util ) {
-
- var api;
-
- api = {
- parsers: {
- 0xffe1: []
- },
-
- maxMetaDataSize: 262144,
-
- parse: function( blob, cb ) {
- var me = this,
- fr = new FileReader();
-
- fr.onload = function() {
- cb( false, me._parse( this.result ) );
- fr = fr.onload = fr.onerror = null;
- };
-
- fr.onerror = function( e ) {
- cb( e.message );
- fr = fr.onload = fr.onerror = null;
- };
-
- blob = blob.slice( 0, me.maxMetaDataSize );
- fr.readAsArrayBuffer( blob.getSource() );
- },
-
- _parse: function( buffer, noParse ) {
- if ( buffer.byteLength < 6 ) {
- return;
- }
-
- var dataview = new DataView( buffer ),
- offset = 2,
- maxOffset = dataview.byteLength - 4,
- headLength = offset,
- ret = {},
- markerBytes, markerLength, parsers, i;
-
- if ( dataview.getUint16( 0 ) === 0xffd8 ) {
-
- while ( offset < maxOffset ) {
- markerBytes = dataview.getUint16( offset );
-
- if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
- markerBytes === 0xfffe ) {
-
- markerLength = dataview.getUint16( offset + 2 ) + 2;
-
- if ( offset + markerLength > dataview.byteLength ) {
- break;
- }
-
- parsers = api.parsers[ markerBytes ];
-
- if ( !noParse && parsers ) {
- for ( i = 0; i < parsers.length; i += 1 ) {
- parsers[ i ].call( api, dataview, offset,
- markerLength, ret );
- }
- }
-
- offset += markerLength;
- headLength = offset;
- } else {
- break;
- }
- }
-
- if ( headLength > 6 ) {
- if ( buffer.slice ) {
- ret.imageHead = buffer.slice( 2, headLength );
- } else {
- // Workaround for IE10, which does not yet
- // support ArrayBuffer.slice:
- ret.imageHead = new Uint8Array( buffer )
- .subarray( 2, headLength );
- }
- }
- }
-
- return ret;
- },
-
- updateImageHead: function( buffer, head ) {
- var data = this._parse( buffer, true ),
- buf1, buf2, bodyoffset;
-
-
- bodyoffset = 2;
- if ( data.imageHead ) {
- bodyoffset = 2 + data.imageHead.byteLength;
- }
-
- if ( buffer.slice ) {
- buf2 = buffer.slice( bodyoffset );
- } else {
- buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
- }
-
- buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
-
- buf1[ 0 ] = 0xFF;
- buf1[ 1 ] = 0xD8;
- buf1.set( new Uint8Array( head ), 2 );
- buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
-
- return buf1.buffer;
- }
- };
-
- Util.parseMeta = function() {
- return api.parse.apply( api, arguments );
- };
-
- Util.updateImageHead = function() {
- return api.updateImageHead.apply( api, arguments );
- };
-
- return api;
+ /**
+ * @fileOverview 图片操作, 负责预览图片和上传前压缩图片
+ */
+ define('widgets/md5',[
+ 'base',
+ 'uploader',
+ 'lib/md5',
+ 'lib/blob',
+ 'widgets/widget'
+ ], function( Base, Uploader, Md5, Blob ) {
+
+ return Uploader.register({
+ name: 'md5',
+
+
+ /**
+ * 计算文件 md5 值,返回一个 promise 对象,可以监听 progress 进度。
+ *
+ *
+ * @method md5File
+ * @grammar md5File( file[, start[, end]] ) => promise
+ * @for Uploader
+ * @example
+ *
+ * uploader.on( 'fileQueued', function( file ) {
+ * var $li = ...;
+ *
+ * uploader.md5File( file )
+ *
+ * // 及时显示进度
+ * .progress(function(percentage) {
+ * console.log('Percentage:', percentage);
+ * })
+ *
+ * // 完成
+ * .then(function(val) {
+ * console.log('md5 result:', val);
+ * });
+ *
+ * });
+ */
+ md5File: function( file, start, end ) {
+ var md5 = new Md5(),
+ deferred = Base.Deferred(),
+ blob = (file instanceof Blob) ? file :
+ this.request( 'get-file', file ).source;
+
+ md5.on( 'progress load', function( e ) {
+ e = e || {};
+ deferred.notify( e.total ? e.loaded / e.total : 1 );
+ });
+
+ md5.on( 'complete', function() {
+ deferred.resolve( md5.getResult() );
+ });
+
+ md5.on( 'error', function( reason ) {
+ deferred.reject( reason );
+ });
+
+ if ( arguments.length > 1 ) {
+ start = start || 0;
+ end = end || 0;
+ start < 0 && (start = blob.size + start);
+ end < 0 && (end = blob.size + end);
+ end = Math.min( end, blob.size );
+ blob = blob.slice( start, end );
+ }
+
+ md5.loadFromBlob( blob );
+
+ return deferred.promise();
+ }
+ });
});
- /**
- * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
- * 暂时项目中只用了orientation.
- *
- * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
- * @fileOverview EXIF解析
- */
-
- // Sample
- // ====================================
- // Make : Apple
- // Model : iPhone 4S
- // Orientation : 1
- // XResolution : 72 [72/1]
- // YResolution : 72 [72/1]
- // ResolutionUnit : 2
- // Software : QuickTime 7.7.1
- // DateTime : 2013:09:01 22:53:55
- // ExifIFDPointer : 190
- // ExposureTime : 0.058823529411764705 [1/17]
- // FNumber : 2.4 [12/5]
- // ExposureProgram : Normal program
- // ISOSpeedRatings : 800
- // ExifVersion : 0220
- // DateTimeOriginal : 2013:09:01 22:52:51
- // DateTimeDigitized : 2013:09:01 22:52:51
- // ComponentsConfiguration : YCbCr
- // ShutterSpeedValue : 4.058893515764426
- // ApertureValue : 2.5260688216892597 [4845/1918]
- // BrightnessValue : -0.3126686601998395
- // MeteringMode : Pattern
- // Flash : Flash did not fire, compulsory flash mode
- // FocalLength : 4.28 [107/25]
- // SubjectArea : [4 values]
- // FlashpixVersion : 0100
- // ColorSpace : 1
- // PixelXDimension : 2448
- // PixelYDimension : 3264
- // SensingMethod : One-chip color area sensor
- // ExposureMode : 0
- // WhiteBalance : Auto white balance
- // FocalLengthIn35mmFilm : 35
- // SceneCaptureType : Standard
- define('runtime/html5/imagemeta/exif',[
- 'base',
- 'runtime/html5/imagemeta'
- ], function( Base, ImageMeta ) {
-
- var EXIF = {};
-
- EXIF.ExifMap = function() {
- return this;
- };
-
- EXIF.ExifMap.prototype.map = {
- 'Orientation': 0x0112
- };
-
- EXIF.ExifMap.prototype.get = function( id ) {
- return this[ id ] || this[ this.map[ id ] ];
- };
-
- EXIF.exifTagTypes = {
- // byte, 8-bit unsigned int:
- 1: {
- getValue: function( dataView, dataOffset ) {
- return dataView.getUint8( dataOffset );
- },
- size: 1
- },
-
- // ascii, 8-bit byte:
- 2: {
- getValue: function( dataView, dataOffset ) {
- return String.fromCharCode( dataView.getUint8( dataOffset ) );
- },
- size: 1,
- ascii: true
- },
-
- // short, 16 bit int:
- 3: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint16( dataOffset, littleEndian );
- },
- size: 2
- },
-
- // long, 32 bit int:
- 4: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // rational = two long values,
- // first is numerator, second is denominator:
- 5: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getUint32( dataOffset, littleEndian ) /
- dataView.getUint32( dataOffset + 4, littleEndian );
- },
- size: 8
- },
-
- // slong, 32 bit signed int:
- 9: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian );
- },
- size: 4
- },
-
- // srational, two slongs, first is numerator, second is denominator:
- 10: {
- getValue: function( dataView, dataOffset, littleEndian ) {
- return dataView.getInt32( dataOffset, littleEndian ) /
- dataView.getInt32( dataOffset + 4, littleEndian );
- },
- size: 8
- }
- };
-
- // undefined, 8-bit byte, value depending on field:
- EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
-
- EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
- littleEndian ) {
-
- var tagType = EXIF.exifTagTypes[ type ],
- tagSize, dataOffset, values, i, str, c;
-
- if ( !tagType ) {
- Base.log('Invalid Exif data: Invalid tag type.');
- return;
- }
-
- tagSize = tagType.size * length;
-
- // Determine if the value is contained in the dataOffset bytes,
- // or if the value at the dataOffset is a pointer to the actual data:
- dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
- littleEndian ) : (offset + 8);
-
- if ( dataOffset + tagSize > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid data offset.');
- return;
- }
-
- if ( length === 1 ) {
- return tagType.getValue( dataView, dataOffset, littleEndian );
- }
-
- values = [];
-
- for ( i = 0; i < length; i += 1 ) {
- values[ i ] = tagType.getValue( dataView,
- dataOffset + i * tagType.size, littleEndian );
- }
-
- if ( tagType.ascii ) {
- str = '';
-
- // Concatenate the chars:
- for ( i = 0; i < values.length; i += 1 ) {
- c = values[ i ];
-
- // Ignore the terminating NULL byte(s):
- if ( c === '\u0000' ) {
- break;
- }
- str += c;
- }
-
- return str;
- }
- return values;
- };
-
- EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
- data ) {
-
- var tag = dataView.getUint16( offset, littleEndian );
- data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
- dataView.getUint16( offset + 2, littleEndian ), // tag type
- dataView.getUint32( offset + 4, littleEndian ), // tag length
- littleEndian );
- };
-
- EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
- littleEndian, data ) {
-
- var tagsNumber, dirEndOffset, i;
-
- if ( dirOffset + 6 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory offset.');
- return;
- }
-
- tagsNumber = dataView.getUint16( dirOffset, littleEndian );
- dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
-
- if ( dirEndOffset + 4 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid directory size.');
- return;
- }
-
- for ( i = 0; i < tagsNumber; i += 1 ) {
- this.parseExifTag( dataView, tiffOffset,
- dirOffset + 2 + 12 * i, // tag offset
- littleEndian, data );
- }
-
- // Return the offset to the next directory:
- return dataView.getUint32( dirEndOffset, littleEndian );
- };
-
- // EXIF.getExifThumbnail = function(dataView, offset, length) {
- // var hexData,
- // i,
- // b;
- // if (!length || offset + length > dataView.byteLength) {
- // Base.log('Invalid Exif data: Invalid thumbnail data.');
- // return;
- // }
- // hexData = [];
- // for (i = 0; i < length; i += 1) {
- // b = dataView.getUint8(offset + i);
- // hexData.push((b < 16 ? '0' : '') + b.toString(16));
- // }
- // return 'data:image/jpeg,%' + hexData.join('%');
- // };
-
- EXIF.parseExifData = function( dataView, offset, length, data ) {
-
- var tiffOffset = offset + 10,
- littleEndian, dirOffset;
-
- // Check for the ASCII code for "Exif" (0x45786966):
- if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
- // No Exif data, might be XMP data instead
- return;
- }
- if ( tiffOffset + 8 > dataView.byteLength ) {
- Base.log('Invalid Exif data: Invalid segment size.');
- return;
- }
-
- // Check for the two null bytes:
- if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
- Base.log('Invalid Exif data: Missing byte alignment offset.');
- return;
- }
-
- // Check the byte alignment:
- switch ( dataView.getUint16( tiffOffset ) ) {
- case 0x4949:
- littleEndian = true;
- break;
-
- case 0x4D4D:
- littleEndian = false;
- break;
-
- default:
- Base.log('Invalid Exif data: Invalid byte alignment marker.');
- return;
- }
-
- // Check for the TIFF tag marker (0x002A):
- if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
- Base.log('Invalid Exif data: Missing TIFF marker.');
- return;
- }
-
- // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
- dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
- // Create the exif object to store the tags:
- data.exif = new EXIF.ExifMap();
- // Parse the tags of the main image directory and retrieve the
- // offset to the next directory, usually the thumbnail directory:
- dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
- tiffOffset + dirOffset, littleEndian, data );
-
- // 尝试读取缩略图
- // if ( dirOffset ) {
- // thumbnailData = {exif: {}};
- // dirOffset = EXIF.parseExifTags(
- // dataView,
- // tiffOffset,
- // tiffOffset + dirOffset,
- // littleEndian,
- // thumbnailData
- // );
-
- // // Check for JPEG Thumbnail offset:
- // if (thumbnailData.exif[0x0201]) {
- // data.exif.Thumbnail = EXIF.getExifThumbnail(
- // dataView,
- // tiffOffset + thumbnailData.exif[0x0201],
- // thumbnailData.exif[0x0202] // Thumbnail data length
- // );
- // }
- // }
- };
-
- ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
- return EXIF;
+ /**
+ * @fileOverview Runtime管理器,负责Runtime的选择, 连接
+ */
+ define('runtime/compbase',[],function() {
+
+ function CompBase( owner, runtime ) {
+
+ this.owner = owner;
+ this.options = owner.options;
+
+ this.getRuntime = function() {
+ return runtime;
+ };
+
+ this.getRuid = function() {
+ return runtime.uid;
+ };
+
+ this.trigger = function() {
+ return owner.trigger.apply( owner, arguments );
+ };
+ }
+
+ return CompBase;
});
- /**
- * 这个方式性能不行,但是可以解决android里面的toDataUrl的bug
- * android里面toDataUrl('image/jpege')得到的结果却是png.
- *
- * 所以这里没辙,只能借助这个工具
- * @fileOverview jpeg encoder
- */
- define('runtime/html5/jpegencoder',[], function( require, exports, module ) {
-
- /*
- Copyright (c) 2008, Adobe Systems Incorporated
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
- * Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- * Neither the name of Adobe Systems Incorporated nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /*
- JPEG encoder ported to JavaScript and optimized by Andreas Ritter, www.bytestrom.eu, 11/2009
-
- Basic GUI blocking jpeg encoder
- */
-
- function JPEGEncoder(quality) {
- var self = this;
- var fround = Math.round;
- var ffloor = Math.floor;
- var YTable = new Array(64);
- var UVTable = new Array(64);
- var fdtbl_Y = new Array(64);
- var fdtbl_UV = new Array(64);
- var YDC_HT;
- var UVDC_HT;
- var YAC_HT;
- var UVAC_HT;
-
- var bitcode = new Array(65535);
- var category = new Array(65535);
- var outputfDCTQuant = new Array(64);
- var DU = new Array(64);
- var byteout = [];
- var bytenew = 0;
- var bytepos = 7;
-
- var YDU = new Array(64);
- var UDU = new Array(64);
- var VDU = new Array(64);
- var clt = new Array(256);
- var RGB_YUV_TABLE = new Array(2048);
- var currentQuality;
-
- var ZigZag = [
- 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
- ];
-
- var std_dc_luminance_nrcodes = [0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0];
- var std_dc_luminance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
- var std_ac_luminance_nrcodes = [0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d];
- var std_ac_luminance_values = [
- 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,
- 0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,
- 0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08,
- 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,
- 0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,
- 0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28,
- 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,
- 0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,
- 0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,
- 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,
- 0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,
- 0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89,
- 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,
- 0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,
- 0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,
- 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,
- 0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,
- 0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2,
- 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,
- 0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
- 0xf9,0xfa
- ];
-
- var std_dc_chrominance_nrcodes = [0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0];
- var std_dc_chrominance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
- var std_ac_chrominance_nrcodes = [0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77];
- var std_ac_chrominance_values = [
- 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,
- 0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,
- 0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91,
- 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,
- 0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,
- 0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,
- 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,
- 0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,
- 0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,
- 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,
- 0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,
- 0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,
- 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,
- 0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
- 0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,
- 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
- 0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,
- 0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
- 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,
- 0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
- 0xf9,0xfa
- ];
-
- function initQuantTables(sf){
- var YQT = [
- 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
- ];
-
- for (var i = 0; i < 64; i++) {
- var t = ffloor((YQT[i]*sf+50)/100);
- if (t < 1) {
- t = 1;
- } else if (t > 255) {
- t = 255;
- }
- YTable[ZigZag[i]] = t;
- }
- var UVQT = [
- 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
- ];
- for (var j = 0; j < 64; j++) {
- var u = ffloor((UVQT[j]*sf+50)/100);
- if (u < 1) {
- u = 1;
- } else if (u > 255) {
- u = 255;
- }
- UVTable[ZigZag[j]] = u;
- }
- var aasf = [
- 1.0, 1.387039845, 1.306562965, 1.175875602,
- 1.0, 0.785694958, 0.541196100, 0.275899379
- ];
- var k = 0;
- for (var row = 0; row < 8; row++)
- {
- for (var col = 0; col < 8; col++)
- {
- fdtbl_Y[k] = (1.0 / (YTable [ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
- fdtbl_UV[k] = (1.0 / (UVTable[ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
- k++;
- }
- }
- }
-
- function computeHuffmanTbl(nrcodes, std_table){
- var codevalue = 0;
- var pos_in_table = 0;
- var HT = new Array();
- for (var k = 1; k <= 16; k++) {
- for (var j = 1; j <= nrcodes[k]; j++) {
- HT[std_table[pos_in_table]] = [];
- HT[std_table[pos_in_table]][0] = codevalue;
- HT[std_table[pos_in_table]][1] = k;
- pos_in_table++;
- codevalue++;
- }
- codevalue*=2;
- }
- return HT;
- }
-
- function initHuffmanTbl()
- {
- YDC_HT = computeHuffmanTbl(std_dc_luminance_nrcodes,std_dc_luminance_values);
- UVDC_HT = computeHuffmanTbl(std_dc_chrominance_nrcodes,std_dc_chrominance_values);
- YAC_HT = computeHuffmanTbl(std_ac_luminance_nrcodes,std_ac_luminance_values);
- UVAC_HT = computeHuffmanTbl(std_ac_chrominance_nrcodes,std_ac_chrominance_values);
- }
-
- function initCategoryNumber()
- {
- var nrlower = 1;
- var nrupper = 2;
- for (var cat = 1; cat <= 15; cat++) {
- //Positive numbers
- for (var nr = nrlower; nr>0] = 38470 * i;
- RGB_YUV_TABLE[(i+ 512)>>0] = 7471 * i + 0x8000;
- RGB_YUV_TABLE[(i+ 768)>>0] = -11059 * i;
- RGB_YUV_TABLE[(i+1024)>>0] = -21709 * i;
- RGB_YUV_TABLE[(i+1280)>>0] = 32768 * i + 0x807FFF;
- RGB_YUV_TABLE[(i+1536)>>0] = -27439 * i;
- RGB_YUV_TABLE[(i+1792)>>0] = - 5329 * i;
- }
- }
-
- // IO functions
- function writeBits(bs)
- {
- var value = bs[0];
- var posval = bs[1]-1;
- while ( posval >= 0 ) {
- if (value & (1 << posval) ) {
- bytenew |= (1 << bytepos);
- }
- posval--;
- bytepos--;
- if (bytepos < 0) {
- if (bytenew == 0xFF) {
- writeByte(0xFF);
- writeByte(0);
- }
- else {
- writeByte(bytenew);
- }
- bytepos=7;
- bytenew=0;
- }
- }
- }
-
- function writeByte(value)
- {
- byteout.push(clt[value]); // write char directly instead of converting later
- }
-
- function writeWord(value)
- {
- writeByte((value>>8)&0xFF);
- writeByte((value )&0xFF);
- }
-
- // DCT & quantization core
- function fDCTQuant(data, fdtbl)
- {
- var d0, d1, d2, d3, d4, d5, d6, d7;
- /* Pass 1: process rows. */
- var dataOff=0;
- var i;
- var I8 = 8;
- var I64 = 64;
- for (i=0; i 0.0) ? ((fDCTQuant + 0.5)|0) : ((fDCTQuant - 0.5)|0);
- //outputfDCTQuant[i] = fround(fDCTQuant);
-
- }
- return outputfDCTQuant;
- }
-
- function writeAPP0()
- {
- writeWord(0xFFE0); // marker
- writeWord(16); // length
- writeByte(0x4A); // J
- writeByte(0x46); // F
- writeByte(0x49); // I
- writeByte(0x46); // F
- writeByte(0); // = "JFIF",'\0'
- writeByte(1); // versionhi
- writeByte(1); // versionlo
- writeByte(0); // xyunits
- writeWord(1); // xdensity
- writeWord(1); // ydensity
- writeByte(0); // thumbnwidth
- writeByte(0); // thumbnheight
- }
-
- function writeSOF0(width, height)
- {
- writeWord(0xFFC0); // marker
- writeWord(17); // length, truecolor YUV JPG
- writeByte(8); // precision
- writeWord(height);
- writeWord(width);
- writeByte(3); // nrofcomponents
- writeByte(1); // IdY
- writeByte(0x11); // HVY
- writeByte(0); // QTY
- writeByte(2); // IdU
- writeByte(0x11); // HVU
- writeByte(1); // QTU
- writeByte(3); // IdV
- writeByte(0x11); // HVV
- writeByte(1); // QTV
- }
-
- function writeDQT()
- {
- writeWord(0xFFDB); // marker
- writeWord(132); // length
- writeByte(0);
- for (var i=0; i<64; i++) {
- writeByte(YTable[i]);
- }
- writeByte(1);
- for (var j=0; j<64; j++) {
- writeByte(UVTable[j]);
- }
- }
-
- function writeDHT()
- {
- writeWord(0xFFC4); // marker
- writeWord(0x01A2); // length
-
- writeByte(0); // HTYDCinfo
- for (var i=0; i<16; i++) {
- writeByte(std_dc_luminance_nrcodes[i+1]);
- }
- for (var j=0; j<=11; j++) {
- writeByte(std_dc_luminance_values[j]);
- }
-
- writeByte(0x10); // HTYACinfo
- for (var k=0; k<16; k++) {
- writeByte(std_ac_luminance_nrcodes[k+1]);
- }
- for (var l=0; l<=161; l++) {
- writeByte(std_ac_luminance_values[l]);
- }
-
- writeByte(1); // HTUDCinfo
- for (var m=0; m<16; m++) {
- writeByte(std_dc_chrominance_nrcodes[m+1]);
- }
- for (var n=0; n<=11; n++) {
- writeByte(std_dc_chrominance_values[n]);
- }
-
- writeByte(0x11); // HTUACinfo
- for (var o=0; o<16; o++) {
- writeByte(std_ac_chrominance_nrcodes[o+1]);
- }
- for (var p=0; p<=161; p++) {
- writeByte(std_ac_chrominance_values[p]);
- }
- }
-
- function writeSOS()
- {
- writeWord(0xFFDA); // marker
- writeWord(12); // length
- writeByte(3); // nrofcomponents
- writeByte(1); // IdY
- writeByte(0); // HTY
- writeByte(2); // IdU
- writeByte(0x11); // HTU
- writeByte(3); // IdV
- writeByte(0x11); // HTV
- writeByte(0); // Ss
- writeByte(0x3f); // Se
- writeByte(0); // Bf
- }
-
- function processDU(CDU, fdtbl, DC, HTDC, HTAC){
- var EOB = HTAC[0x00];
- var M16zeroes = HTAC[0xF0];
- var pos;
- var I16 = 16;
- var I63 = 63;
- var I64 = 64;
- var DU_DCT = fDCTQuant(CDU, fdtbl);
- //ZigZag reorder
- for (var j=0;j0)&&(DU[end0pos]==0); end0pos--) {};
- //end0pos = first element in reverse order !=0
- if ( end0pos == 0) {
- writeBits(EOB);
- return DC;
- }
- var i = 1;
- var lng;
- while ( i <= end0pos ) {
- var startpos = i;
- for (; (DU[i]==0) && (i<=end0pos); ++i) {}
- var nrzeroes = i-startpos;
- if ( nrzeroes >= I16 ) {
- lng = nrzeroes>>4;
- for (var nrmarker=1; nrmarker <= lng; ++nrmarker)
- writeBits(M16zeroes);
- nrzeroes = nrzeroes&0xF;
- }
- pos = 32767+DU[i];
- writeBits(HTAC[(nrzeroes<<4)+category[pos]]);
- writeBits(bitcode[pos]);
- i++;
- }
- if ( end0pos != I63 ) {
- writeBits(EOB);
- }
- return DC;
- }
-
- function initCharLookupTable(){
- var sfcc = String.fromCharCode;
- for(var i=0; i < 256; i++){ ///// ACHTUNG // 255
- clt[i] = sfcc(i);
- }
- }
-
- this.encode = function(image,quality) // image data object
- {
- // var time_start = new Date().getTime();
-
- if(quality) setQuality(quality);
-
- // Initialize bit writer
- byteout = new Array();
- bytenew=0;
- bytepos=7;
-
- // Add JPEG headers
- writeWord(0xFFD8); // SOI
- writeAPP0();
- writeDQT();
- writeSOF0(image.width,image.height);
- writeDHT();
- writeSOS();
-
-
- // Encode 8x8 macroblocks
- var DCY=0;
- var DCU=0;
- var DCV=0;
-
- bytenew=0;
- bytepos=7;
-
-
- this.encode.displayName = "_encode_";
-
- var imageData = image.data;
- var width = image.width;
- var height = image.height;
-
- var quadWidth = width*4;
- var tripleWidth = width*3;
-
- var x, y = 0;
- var r, g, b;
- var start,p, col,row,pos;
- while(y < height){
- x = 0;
- while(x < quadWidth){
- start = quadWidth * y + x;
- p = start;
- col = -1;
- row = 0;
-
- for(pos=0; pos < 64; pos++){
- row = pos >> 3;// /8
- col = ( pos & 7 ) * 4; // %8
- p = start + ( row * quadWidth ) + col;
-
- if(y+row >= height){ // padding bottom
- p-= (quadWidth*(y+1+row-height));
- }
-
- if(x+col >= quadWidth){ // padding right
- p-= ((x+col) - quadWidth +4)
- }
-
- r = imageData[ p++ ];
- g = imageData[ p++ ];
- b = imageData[ p++ ];
-
-
- /* // calculate YUV values dynamically
- YDU[pos]=((( 0.29900)*r+( 0.58700)*g+( 0.11400)*b))-128; //-0x80
- UDU[pos]=(((-0.16874)*r+(-0.33126)*g+( 0.50000)*b));
- VDU[pos]=((( 0.50000)*r+(-0.41869)*g+(-0.08131)*b));
- */
-
- // use lookup table (slightly faster)
- YDU[pos] = ((RGB_YUV_TABLE[r] + RGB_YUV_TABLE[(g + 256)>>0] + RGB_YUV_TABLE[(b + 512)>>0]) >> 16)-128;
- UDU[pos] = ((RGB_YUV_TABLE[(r + 768)>>0] + RGB_YUV_TABLE[(g + 1024)>>0] + RGB_YUV_TABLE[(b + 1280)>>0]) >> 16)-128;
- VDU[pos] = ((RGB_YUV_TABLE[(r + 1280)>>0] + RGB_YUV_TABLE[(g + 1536)>>0] + RGB_YUV_TABLE[(b + 1792)>>0]) >> 16)-128;
-
- }
-
- DCY = processDU(YDU, fdtbl_Y, DCY, YDC_HT, YAC_HT);
- DCU = processDU(UDU, fdtbl_UV, DCU, UVDC_HT, UVAC_HT);
- DCV = processDU(VDU, fdtbl_UV, DCV, UVDC_HT, UVAC_HT);
- x+=32;
- }
- y+=8;
- }
-
-
- ////////////////////////////////////////////////////////////////
-
- // Do the bit alignment of the EOI marker
- if ( bytepos >= 0 ) {
- var fillbits = [];
- fillbits[1] = bytepos+1;
- fillbits[0] = (1<<(bytepos+1))-1;
- writeBits(fillbits);
- }
-
- writeWord(0xFFD9); //EOI
-
- var jpegDataUri = 'data:image/jpeg;base64,' + btoa(byteout.join(''));
-
- byteout = [];
-
- // benchmarking
- // var duration = new Date().getTime() - time_start;
- // console.log('Encoding time: '+ currentQuality + 'ms');
- //
-
- return jpegDataUri
- }
-
- function setQuality(quality){
- if (quality <= 0) {
- quality = 1;
- }
- if (quality > 100) {
- quality = 100;
- }
-
- if(currentQuality == quality) return // don't recalc if unchanged
-
- var sf = 0;
- if (quality < 50) {
- sf = Math.floor(5000 / quality);
- } else {
- sf = Math.floor(200 - quality*2);
- }
-
- initQuantTables(sf);
- currentQuality = quality;
- // console.log('Quality set to: '+quality +'%');
- }
-
- function init(){
- // var time_start = new Date().getTime();
- if(!quality) quality = 50;
- // Create tables
- initCharLookupTable()
- initHuffmanTbl();
- initCategoryNumber();
- initRGBYUVTable();
-
- setQuality(quality);
- // var duration = new Date().getTime() - time_start;
- // console.log('Initialization '+ duration + 'ms');
- }
-
- init();
-
- };
-
- JPEGEncoder.encode = function( data, quality ) {
- var encoder = new JPEGEncoder( quality );
-
- return encoder.encode( data );
- }
-
- return JPEGEncoder;
+ /**
+ * @fileOverview Html5Runtime
+ */
+ define('runtime/html5/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var type = 'html5',
+ components = {};
+
+ function Html5Runtime() {
+ var pool = {},
+ me = this,
+ destroy = this.destroy;
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ if ( components[ comp ] ) {
+ instance = pool[ uid ] = pool[ uid ] ||
+ new components[ comp ]( client, me );
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+ };
+
+ me.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+ }
+
+ Base.inherits( Runtime, {
+ constructor: Html5Runtime,
+
+ // 不需要连接其他程序,直接执行callback
+ init: function() {
+ var me = this;
+ setTimeout(function() {
+ me.trigger('ready');
+ }, 1 );
+ }
+
+ });
+
+ // 注册Components
+ Html5Runtime.register = function( name, component ) {
+ var klass = components[ name ] = Base.inherits( CompBase, component );
+ return klass;
+ };
+
+ // 注册html5运行时。
+ // 只有在支持的前提下注册。
+ if ( window.Blob && window.FileReader && window.DataView ) {
+ Runtime.addRuntime( type, Html5Runtime );
+ }
+
+ return Html5Runtime;
});
- /**
- * @fileOverview Fix android canvas.toDataUrl bug.
- */
- define('runtime/html5/androidpatch',[
- 'runtime/html5/util',
- 'runtime/html5/jpegencoder',
- 'base'
- ], function( Util, encoder, Base ) {
- var origin = Util.canvasToDataUrl,
- supportJpeg;
-
- Util.canvasToDataUrl = function( canvas, type, quality ) {
- var ctx, w, h, fragement, parts;
-
- // 非android手机直接跳过。
- if ( !Base.os.android ) {
- return origin.apply( null, arguments );
- }
-
- // 检测是否canvas支持jpeg导出,根据数据格式来判断。
- // JPEG 前两位分别是:255, 216
- if ( type === 'image/jpeg' && typeof supportJpeg === 'undefined' ) {
- fragement = origin.apply( null, arguments );
-
- parts = fragement.split(',');
-
- if ( ~parts[ 0 ].indexOf('base64') ) {
- fragement = atob( parts[ 1 ] );
- } else {
- fragement = decodeURIComponent( parts[ 1 ] );
- }
-
- fragement = fragement.substring( 0, 2 );
-
- supportJpeg = fragement.charCodeAt( 0 ) === 255 &&
- fragement.charCodeAt( 1 ) === 216;
- }
-
- // 只有在android环境下才修复
- if ( type === 'image/jpeg' && !supportJpeg ) {
- w = canvas.width;
- h = canvas.height;
- ctx = canvas.getContext('2d');
-
- return encoder.encode( ctx.getImageData( 0, 0, w, h ), quality );
- }
-
- return origin.apply( null, arguments );
- };
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/html5/blob',[
+ 'runtime/html5/runtime',
+ 'lib/blob'
+ ], function( Html5Runtime, Blob ) {
+
+ return Html5Runtime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.owner.source,
+ slice = blob.slice || blob.webkitSlice || blob.mozSlice;
+
+ blob = slice.call( blob, start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
});
- /**
- * @fileOverview Image
- */
- define('runtime/html5/image',[
- 'base',
- 'runtime/html5/runtime',
- 'runtime/html5/util'
- ], function( Base, Html5Runtime, Util ) {
-
- var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
-
- return Html5Runtime.register( 'Image', {
-
- // flag: 标记是否被修改过。
- modified: false,
-
- init: function() {
- var me = this,
- img = new Image();
-
- img.onload = function() {
-
- me._info = {
- type: me.type,
- width: this.width,
- height: this.height
- };
-
- //debugger;
-
- // 读取meta信息。
- if ( !me._metas && 'image/jpeg' === me.type ) {
- Util.parseMeta( me._blob, function( error, ret ) {
- me._metas = ret;
- me.owner.trigger('load');
- });
- } else {
- me.owner.trigger('load');
- }
- };
-
- img.onerror = function() {
- me.owner.trigger('error');
- };
-
- me._img = img;
- },
-
- loadFromBlob: function( blob ) {
- var me = this,
- img = me._img;
-
- me._blob = blob;
- me.type = blob.type;
- img.src = Util.createObjectURL( blob.getSource() );
- me.owner.once( 'load', function() {
- Util.revokeObjectURL( img.src );
- });
- },
-
- resize: function( width, height ) {
- var canvas = this._canvas ||
- (this._canvas = document.createElement('canvas'));
-
- this._resize( this._img, canvas, width, height );
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'resize' );
- },
-
- crop: function( x, y, w, h, s ) {
- var cvs = this._canvas ||
- (this._canvas = document.createElement('canvas')),
- opts = this.options,
- img = this._img,
- iw = img.naturalWidth,
- ih = img.naturalHeight,
- orientation = this.getOrientation();
-
- s = s || 1;
-
- // todo 解决 orientation 的问题。
- // values that require 90 degree rotation
- // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // switch ( orientation ) {
- // case 6:
- // tmp = x;
- // x = y;
- // y = iw * s - tmp - w;
- // console.log(ih * s, tmp, w)
- // break;
- // }
-
- // (w ^= h, h ^= w, w ^= h);
- // }
-
- cvs.width = w;
- cvs.height = h;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
- this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
-
- this._blob = null; // 没用了,可以删掉了。
- this.modified = true;
- this.owner.trigger( 'complete', 'crop' );
- },
-
- getAsBlob: function( type ) {
- var blob = this._blob,
- opts = this.options,
- canvas;
-
- type = type || this.type;
-
- // blob需要重新生成。
- if ( this.modified || this.type !== type ) {
- canvas = this._canvas;
-
- if ( type === 'image/jpeg' ) {
-
- blob = Util.canvasToDataUrl( canvas, type, opts.quality );
-
- if ( opts.preserveHeaders && this._metas &&
- this._metas.imageHead ) {
-
- blob = Util.dataURL2ArrayBuffer( blob );
- blob = Util.updateImageHead( blob,
- this._metas.imageHead );
- blob = Util.arrayBufferToBlob( blob, type );
- return blob;
- }
- } else {
- blob = Util.canvasToDataUrl( canvas, type );
- }
-
- blob = Util.dataURL2Blob( blob );
- }
-
- return blob;
- },
-
- getAsDataUrl: function( type ) {
- var opts = this.options;
-
- type = type || this.type;
-
- if ( type === 'image/jpeg' ) {
- return Util.canvasToDataUrl( this._canvas, type, opts.quality );
- } else {
- return this._canvas.toDataURL( type );
- }
- },
-
- getOrientation: function() {
- return this._metas && this._metas.exif &&
- this._metas.exif.get('Orientation') || 1;
- },
-
- info: function( val ) {
-
- // setter
- if ( val ) {
- this._info = val;
- return this;
- }
-
- // getter
- return this._info;
- },
-
- meta: function( val ) {
-
- // setter
- if ( val ) {
- this._metas = val;
- return this;
- }
-
- // getter
- return this._metas;
- },
-
- destroy: function() {
- var canvas = this._canvas;
- this._img.onload = null;
-
- if ( canvas ) {
- canvas.getContext('2d')
- .clearRect( 0, 0, canvas.width, canvas.height );
- canvas.width = canvas.height = 0;
- this._canvas = null;
- }
-
- // 释放内存。非常重要,否则释放不了image的内存。
- this._img.src = BLANK;
- this._img = this._blob = null;
- },
-
- _resize: function( img, cvs, width, height ) {
- var opts = this.options,
- naturalWidth = img.width,
- naturalHeight = img.height,
- orientation = this.getOrientation(),
- scale, w, h, x, y;
-
- // values that require 90 degree rotation
- if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
-
- // 交换width, height的值。
- width ^= height;
- height ^= width;
- width ^= height;
- }
-
- scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
- height / naturalHeight );
-
- // 不允许放大。
- opts.allowMagnify || (scale = Math.min( 1, scale ));
-
- w = naturalWidth * scale;
- h = naturalHeight * scale;
-
- if ( opts.crop ) {
- cvs.width = width;
- cvs.height = height;
- } else {
- cvs.width = w;
- cvs.height = h;
- }
-
- x = (cvs.width - w) / 2;
- y = (cvs.height - h) / 2;
-
- opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
-
- this._renderImageToCanvas( cvs, img, x, y, w, h );
- },
-
- _rotate2Orientaion: function( canvas, orientation ) {
- var width = canvas.width,
- height = canvas.height,
- ctx = canvas.getContext('2d');
-
- switch ( orientation ) {
- case 5:
- case 6:
- case 7:
- case 8:
- canvas.width = height;
- canvas.height = width;
- break;
- }
-
- switch ( orientation ) {
- case 2: // horizontal flip
- ctx.translate( width, 0 );
- ctx.scale( -1, 1 );
- break;
-
- case 3: // 180 rotate left
- ctx.translate( width, height );
- ctx.rotate( Math.PI );
- break;
-
- case 4: // vertical flip
- ctx.translate( 0, height );
- ctx.scale( 1, -1 );
- break;
-
- case 5: // vertical flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.scale( 1, -1 );
- break;
-
- case 6: // 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( 0, -height );
- break;
-
- case 7: // horizontal flip + 90 rotate right
- ctx.rotate( 0.5 * Math.PI );
- ctx.translate( width, -height );
- ctx.scale( -1, 1 );
- break;
-
- case 8: // 90 rotate left
- ctx.rotate( -0.5 * Math.PI );
- ctx.translate( -width, 0 );
- break;
- }
- },
-
- // https://github.com/stomita/ios-imagefile-megapixel/
- // blob/master/src/megapix-image.js
- _renderImageToCanvas: (function() {
-
- // 如果不是ios, 不需要这么复杂!
- if ( !Base.os.ios ) {
- return function( canvas ) {
- var args = Base.slice( arguments, 1 ),
- ctx = canvas.getContext('2d');
-
- ctx.drawImage.apply( ctx, args );
- };
- }
-
- /**
- * Detecting vertical squash in loaded image.
- * Fixes a bug which squash image vertically while drawing into
- * canvas for some images.
- */
- function detectVerticalSquash( img, iw, ih ) {
- var canvas = document.createElement('canvas'),
- ctx = canvas.getContext('2d'),
- sy = 0,
- ey = ih,
- py = ih,
- data, alpha, ratio;
-
-
- canvas.width = 1;
- canvas.height = ih;
- ctx.drawImage( img, 0, 0 );
- data = ctx.getImageData( 0, 0, 1, ih ).data;
-
- // search image edge pixel position in case
- // it is squashed vertically.
- while ( py > sy ) {
- alpha = data[ (py - 1) * 4 + 3 ];
-
- if ( alpha === 0 ) {
- ey = py;
- } else {
- sy = py;
- }
-
- py = (ey + sy) >> 1;
- }
-
- ratio = (py / ih);
- return (ratio === 0) ? 1 : ratio;
- }
-
- // fix ie7 bug
- // http://stackoverflow.com/questions/11929099/
- // html5-canvas-drawimage-ratio-bug-ios
- if ( Base.os.ios >= 7 ) {
- return function( canvas, img, x, y, w, h ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- vertSquashRatio = detectVerticalSquash( img, iw, ih );
-
- return canvas.getContext('2d').drawImage( img, 0, 0,
- iw * vertSquashRatio, ih * vertSquashRatio,
- x, y, w, h );
- };
- }
-
- /**
- * Detect subsampling in loaded image.
- * In iOS, larger images than 2M pixels may be
- * subsampled in rendering.
- */
- function detectSubsampling( img ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- canvas, ctx;
-
- // subsampling may happen overmegapixel image
- if ( iw * ih > 1024 * 1024 ) {
- canvas = document.createElement('canvas');
- canvas.width = canvas.height = 1;
- ctx = canvas.getContext('2d');
- ctx.drawImage( img, -iw + 1, 0 );
-
- // subsampled image becomes half smaller in rendering size.
- // check alpha channel value to confirm image is covering
- // edge pixel or not. if alpha value is 0
- // image is not covering, hence subsampled.
- return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
- } else {
- return false;
- }
- }
-
-
- return function( canvas, img, x, y, width, height ) {
- var iw = img.naturalWidth,
- ih = img.naturalHeight,
- ctx = canvas.getContext('2d'),
- subsampled = detectSubsampling( img ),
- doSquash = this.type === 'image/jpeg',
- d = 1024,
- sy = 0,
- dy = 0,
- tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
-
- if ( subsampled ) {
- iw /= 2;
- ih /= 2;
- }
-
- ctx.save();
- tmpCanvas = document.createElement('canvas');
- tmpCanvas.width = tmpCanvas.height = d;
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/dnd',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ var $ = Base.$,
+ prefix = 'webuploader-dnd-';
+
+ return Html5Runtime.register( 'DragAndDrop', {
+ init: function() {
+ var elem = this.elem = this.options.container;
+
+ this.dragEnterHandler = Base.bindFn( this._dragEnterHandler, this );
+ this.dragOverHandler = Base.bindFn( this._dragOverHandler, this );
+ this.dragLeaveHandler = Base.bindFn( this._dragLeaveHandler, this );
+ this.dropHandler = Base.bindFn( this._dropHandler, this );
+ this.dndOver = false;
+
+ elem.on( 'dragenter', this.dragEnterHandler );
+ elem.on( 'dragover', this.dragOverHandler );
+ elem.on( 'dragleave', this.dragLeaveHandler );
+ elem.on( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).on( 'dragover', this.dragOverHandler );
+ $( document ).on( 'drop', this.dropHandler );
+ }
+ },
+
+ _dragEnterHandler: function( e ) {
+ var me = this,
+ denied = me._denied || false,
+ items;
+
+ e = e.originalEvent || e;
+
+ if ( !me.dndOver ) {
+ me.dndOver = true;
+
+ // 注意只有 chrome 支持。
+ items = e.dataTransfer.items;
+
+ if ( items && items.length ) {
+ me._denied = denied = !me.trigger( 'accept', items );
+ }
+
+ me.elem.addClass( prefix + 'over' );
+ me.elem[ denied ? 'addClass' :
+ 'removeClass' ]( prefix + 'denied' );
+ }
+
+ e.dataTransfer.dropEffect = denied ? 'none' : 'copy';
+
+ return false;
+ },
+
+ _dragOverHandler: function( e ) {
+ // 只处理框内的。
+ var parentElem = this.elem.parent().get( 0 );
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ clearTimeout( this._leaveTimer );
+ this._dragEnterHandler.call( this, e );
+
+ return false;
+ },
+
+ _dragLeaveHandler: function() {
+ var me = this,
+ handler;
+
+ handler = function() {
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over ' + prefix + 'denied' );
+ };
+
+ clearTimeout( me._leaveTimer );
+ me._leaveTimer = setTimeout( handler, 100 );
+ return false;
+ },
+
+ _dropHandler: function( e ) {
+ var me = this,
+ ruid = me.getRuid(),
+ parentElem = me.elem.parent().get( 0 ),
+ dataTransfer, data;
+
+ // 只处理框内的。
+ if ( parentElem && !$.contains( parentElem, e.currentTarget ) ) {
+ return false;
+ }
+
+ e = e.originalEvent || e;
+ dataTransfer = e.dataTransfer;
+
+ // 如果是页面内拖拽,还不能处理,不阻止事件。
+ // 此处 ie11 下会报参数错误,
+ try {
+ data = dataTransfer.getData('text/html');
+ } catch( err ) {
+ }
+
+ me.dndOver = false;
+ me.elem.removeClass( prefix + 'over' );
+
+ if ( !dataTransfer || data ) {
+ return;
+ }
+
+ me._getTansferFiles( dataTransfer, function( results ) {
+ me.trigger( 'drop', $.map( results, function( file ) {
+ return new File( ruid, file );
+ }) );
+ });
+
+ return false;
+ },
+
+ // 如果传入 callback 则去查看文件夹,否则只管当前文件夹。
+ _getTansferFiles: function( dataTransfer, callback ) {
+ var results = [],
+ promises = [],
+ items, files, file, item, i, len, canAccessFolder;
+
+ items = dataTransfer.items;
+ files = dataTransfer.files;
+
+ canAccessFolder = !!(items && items[ 0 ].webkitGetAsEntry);
+
+ for ( i = 0, len = files.length; i < len; i++ ) {
+ file = files[ i ];
+ item = items && items[ i ];
+
+ if ( canAccessFolder && item.webkitGetAsEntry().isDirectory ) {
+
+ promises.push( this._traverseDirectoryTree(
+ item.webkitGetAsEntry(), results ) );
+ } else {
+ results.push( file );
+ }
+ }
+
+ Base.when.apply( Base, promises ).done(function() {
+
+ if ( !results.length ) {
+ return;
+ }
+
+ callback( results );
+ });
+ },
+
+ _traverseDirectoryTree: function( entry, results ) {
+ var deferred = Base.Deferred(),
+ me = this;
+
+ if ( entry.isFile ) {
+ entry.file(function( file ) {
+ results.push( file );
+ deferred.resolve();
+ });
+ } else if ( entry.isDirectory ) {
+ entry.createReader().readEntries(function( entries ) {
+ var len = entries.length,
+ promises = [],
+ arr = [], // 为了保证顺序。
+ i;
+
+ for ( i = 0; i < len; i++ ) {
+ promises.push( me._traverseDirectoryTree(
+ entries[ i ], arr ) );
+ }
+
+ Base.when.apply( Base, promises ).then(function() {
+ results.push.apply( results, arr );
+ deferred.resolve();
+ }, deferred.reject );
+ });
+ }
+
+ return deferred.promise();
+ },
+
+ destroy: function() {
+ var elem = this.elem;
+
+ // 还没 init 就调用 destroy
+ if (!elem) {
+ return;
+ }
+
+ elem.off( 'dragenter', this.dragEnterHandler );
+ elem.off( 'dragover', this.dragOverHandler );
+ elem.off( 'dragleave', this.dragLeaveHandler );
+ elem.off( 'drop', this.dropHandler );
+
+ if ( this.options.disableGlobalDnd ) {
+ $( document ).off( 'dragover', this.dragOverHandler );
+ $( document ).off( 'drop', this.dropHandler );
+ }
+ }
+ });
+ });
- tmpCtx = tmpCanvas.getContext('2d');
- vertSquashRatio = doSquash ?
- detectVerticalSquash( img, iw, ih ) : 1;
+ /**
+ * @fileOverview FilePaste
+ */
+ define('runtime/html5/filepaste',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'lib/file'
+ ], function( Base, Html5Runtime, File ) {
+
+ return Html5Runtime.register( 'FilePaste', {
+ init: function() {
+ var opts = this.options,
+ elem = this.elem = opts.container,
+ accept = '.*',
+ arr, i, len, item;
+
+ // accetp的mimeTypes中生成匹配正则。
+ if ( opts.accept ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ item = opts.accept[ i ].mimeTypes;
+ item && arr.push( item );
+ }
+
+ if ( arr.length ) {
+ accept = arr.join(',');
+ accept = accept.replace( /,/g, '|' ).replace( /\*/g, '.*' );
+ }
+ }
+ this.accept = accept = new RegExp( accept, 'i' );
+ this.hander = Base.bindFn( this._pasteHander, this );
+ elem.on( 'paste', this.hander );
+ },
+
+ _pasteHander: function( e ) {
+ var allowed = [],
+ ruid = this.getRuid(),
+ items, item, blob, i, len;
+
+ e = e.originalEvent || e;
+ items = e.clipboardData.items;
+
+ for ( i = 0, len = items.length; i < len; i++ ) {
+ item = items[ i ];
+
+ if ( item.kind !== 'file' || !(blob = item.getAsFile()) ) {
+ continue;
+ }
+
+ allowed.push( new File( ruid, blob ) );
+ }
+
+ if ( allowed.length ) {
+ // 不阻止非文件粘贴(文字粘贴)的事件冒泡
+ e.preventDefault();
+ e.stopPropagation();
+ this.trigger( 'paste', allowed );
+ }
+ },
+
+ destroy: function() {
+ this.elem.off( 'paste', this.hander );
+ }
+ });
+ });
- dw = Math.ceil( d * width / iw );
- dh = Math.ceil( d * height / ih / vertSquashRatio );
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/html5/filepicker',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var $ = Base.$;
+
+ return Html5Runtime.register( 'FilePicker', {
+ init: function() {
+ var container = this.getRuntime().getContainer(),
+ me = this,
+ owner = me.owner,
+ opts = me.options,
+ label = this.label = $( document.createElement('label') ),
+ input = this.input = $( document.createElement('input') ),
+ arr, i, len, mouseHandler, changeHandler;
+
+ input.attr( 'type', 'file' );
+ // input.attr( 'capture', 'camera');
+ input.attr( 'name', opts.name );
+ input.addClass('webuploader-element-invisible');
+
+ label.on( 'click', function(e) {
+ input.trigger('click');
+ e.stopPropagation();
+ owner.trigger('dialogopen');
+ });
+
+ label.css({
+ opacity: 0,
+ width: '100%',
+ height: '100%',
+ display: 'block',
+ cursor: 'pointer',
+ background: '#ffffff'
+ });
+
+ if ( opts.multiple ) {
+ input.attr( 'multiple', 'multiple' );
+ }
+
+ // @todo Firefox不支持单独指定后缀
+ if ( opts.accept && opts.accept.length > 0 ) {
+ arr = [];
+
+ for ( i = 0, len = opts.accept.length; i < len; i++ ) {
+ arr.push( opts.accept[ i ].mimeTypes );
+ }
+
+ input.attr( 'accept', arr.join(',') );
+ }
+
+ container.append( input );
+ container.append( label );
+
+ mouseHandler = function( e ) {
+ owner.trigger( e.type );
+ };
+
+ changeHandler = function( e ) {
+ var clone;
+
+ // 解决chrome 56 第二次打开文件选择器,然后点击取消,依然会触发change事件的问题
+ if (e.target.files.length === 0){
+ return false;
+ }
+
+ // 第一次上传图片后,第二次再点击弹出文件选择器窗,等待
+ me.files = e.target.files;
+
+
+ // reset input
+ clone = this.cloneNode( true );
+ clone.value = null;
+ this.parentNode.replaceChild( clone, this );
+
+ input.off();
+ input = $( clone ).on( 'change', changeHandler )
+ .on( 'mouseenter mouseleave', mouseHandler );
+
+ owner.trigger('change');
+ }
+ input.on( 'change', changeHandler);
+ label.on( 'mouseenter mouseleave', mouseHandler );
+
+ },
+
+
+ getFiles: function() {
+ return this.files;
+ },
+
+ destroy: function() {
+ this.input.off();
+ this.label.off();
+ }
+ });
+ });
- while ( sy < ih ) {
- sx = 0;
- dx = 0;
- while ( sx < iw ) {
- tmpCtx.clearRect( 0, 0, d, d );
- tmpCtx.drawImage( img, -sx, -sy );
- ctx.drawImage( tmpCanvas, 0, 0, d, d,
- x + dx, y + dy, dw, dh );
- sx += d;
- dx += dw;
- }
- sy += d;
- dy += dh;
- }
- ctx.restore();
- tmpCanvas = tmpCtx = null;
- };
- })()
- });
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/util',[
+ 'base'
+ ], function( Base ) {
+
+ var urlAPI = window.createObjectURL && window ||
+ window.URL && URL.revokeObjectURL && URL ||
+ window.webkitURL,
+ createObjectURL = Base.noop,
+ revokeObjectURL = createObjectURL;
+
+ if ( urlAPI ) {
+
+ // 更安全的方式调用,比如android里面就能把context改成其他的对象。
+ createObjectURL = function() {
+ return urlAPI.createObjectURL.apply( urlAPI, arguments );
+ };
+
+ revokeObjectURL = function() {
+ return urlAPI.revokeObjectURL.apply( urlAPI, arguments );
+ };
+ }
+
+ return {
+ createObjectURL: createObjectURL,
+ revokeObjectURL: revokeObjectURL,
+
+ dataURL2Blob: function( dataURI ) {
+ var byteStr, intArray, ab, i, mimetype, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ ab = new ArrayBuffer( byteStr.length );
+ intArray = new Uint8Array( ab );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ mimetype = parts[ 0 ].split(':')[ 1 ].split(';')[ 0 ];
+
+ return this.arrayBufferToBlob( ab, mimetype );
+ },
+
+ dataURL2ArrayBuffer: function( dataURI ) {
+ var byteStr, intArray, i, parts;
+
+ parts = dataURI.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ byteStr = atob( parts[ 1 ] );
+ } else {
+ byteStr = decodeURIComponent( parts[ 1 ] );
+ }
+
+ intArray = new Uint8Array( byteStr.length );
+
+ for ( i = 0; i < byteStr.length; i++ ) {
+ intArray[ i ] = byteStr.charCodeAt( i );
+ }
+
+ return intArray.buffer;
+ },
+
+ arrayBufferToBlob: function( buffer, type ) {
+ var builder = window.BlobBuilder || window.WebKitBlobBuilder,
+ bb;
+
+ // android不支持直接new Blob, 只能借助blobbuilder.
+ if ( builder ) {
+ bb = new builder();
+ bb.append( buffer );
+ return bb.getBlob( type );
+ }
+
+ return new Blob([ buffer ], type ? { type: type } : {} );
+ },
+
+ // 抽出来主要是为了解决android下面canvas.toDataUrl不支持jpeg.
+ // 你得到的结果是png.
+ canvasToDataUrl: function( canvas, type, quality ) {
+ return canvas.toDataURL( type, quality / 100 );
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ parseMeta: function( blob, callback ) {
+ callback( false, {});
+ },
+
+ // imagemeat会复写这个方法,如果用户选择加载那个文件了的话。
+ updateImageHead: function( data ) {
+ return data;
+ }
+ };
+ });
+ /**
+ * Terms:
+ *
+ * Uint8Array, FileReader, BlobBuilder, atob, ArrayBuffer
+ * @fileOverview Image控件
+ */
+ define('runtime/html5/imagemeta',[
+ 'runtime/html5/util'
+ ], function( Util ) {
+
+ var api;
+
+ api = {
+ parsers: {
+ 0xffe1: []
+ },
+
+ maxMetaDataSize: 262144,
+
+ parse: function( blob, cb ) {
+ var me = this,
+ fr = new FileReader();
+
+ fr.onload = function() {
+ cb( false, me._parse( this.result ) );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ fr.onerror = function( e ) {
+ cb( e.message );
+ fr = fr.onload = fr.onerror = null;
+ };
+
+ blob = blob.slice( 0, me.maxMetaDataSize );
+ fr.readAsArrayBuffer( blob.getSource() );
+ },
+
+ _parse: function( buffer, noParse ) {
+ if ( buffer.byteLength < 6 ) {
+ return;
+ }
+
+ var dataview = new DataView( buffer ),
+ offset = 2,
+ maxOffset = dataview.byteLength - 4,
+ headLength = offset,
+ ret = {},
+ markerBytes, markerLength, parsers, i;
+
+ if ( dataview.getUint16( 0 ) === 0xffd8 ) {
+
+ while ( offset < maxOffset ) {
+ markerBytes = dataview.getUint16( offset );
+
+ if ( markerBytes >= 0xffe0 && markerBytes <= 0xffef ||
+ markerBytes === 0xfffe ) {
+
+ markerLength = dataview.getUint16( offset + 2 ) + 2;
+
+ if ( offset + markerLength > dataview.byteLength ) {
+ break;
+ }
+
+ parsers = api.parsers[ markerBytes ];
+
+ if ( !noParse && parsers ) {
+ for ( i = 0; i < parsers.length; i += 1 ) {
+ parsers[ i ].call( api, dataview, offset,
+ markerLength, ret );
+ }
+ }
+
+ offset += markerLength;
+ headLength = offset;
+ } else {
+ break;
+ }
+ }
+
+ if ( headLength > 6 ) {
+ if ( buffer.slice ) {
+ ret.imageHead = buffer.slice( 2, headLength );
+ } else {
+ // Workaround for IE10, which does not yet
+ // support ArrayBuffer.slice:
+ ret.imageHead = new Uint8Array( buffer )
+ .subarray( 2, headLength );
+ }
+ }
+ }
+
+ return ret;
+ },
+
+ updateImageHead: function( buffer, head ) {
+ var data = this._parse( buffer, true ),
+ buf1, buf2, bodyoffset;
+
+
+ bodyoffset = 2;
+ if ( data.imageHead ) {
+ bodyoffset = 2 + data.imageHead.byteLength;
+ }
+
+ if ( buffer.slice ) {
+ buf2 = buffer.slice( bodyoffset );
+ } else {
+ buf2 = new Uint8Array( buffer ).subarray( bodyoffset );
+ }
+
+ buf1 = new Uint8Array( head.byteLength + 2 + buf2.byteLength );
+
+ buf1[ 0 ] = 0xFF;
+ buf1[ 1 ] = 0xD8;
+ buf1.set( new Uint8Array( head ), 2 );
+ buf1.set( new Uint8Array( buf2 ), head.byteLength + 2 );
+
+ return buf1.buffer;
+ }
+ };
+
+ Util.parseMeta = function() {
+ return api.parse.apply( api, arguments );
+ };
+
+ Util.updateImageHead = function() {
+ return api.updateImageHead.apply( api, arguments );
+ };
+
+ return api;
});
-
- /**
- * @fileOverview Transport
- * @todo 支持chunked传输,优势:
- * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
- * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
- */
- define('runtime/html5/transport',[
- 'base',
- 'runtime/html5/runtime'
- ], function( Base, Html5Runtime ) {
-
- var noop = Base.noop,
- $ = Base.$;
-
- return Html5Runtime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- formData, binary, fr;
-
- if ( opts.sendAsBinary ) {
- server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData )) : '';
-
- binary = blob.getSource();
- } else {
- formData = new FormData();
- $.each( owner._formData, function( k, v ) {
- formData.append( k, v );
- });
-
- formData.append( opts.fileVal, blob.getSource(),
- opts.filename || owner._formData.name || '' );
- }
-
- if ( opts.withCredentials && 'withCredentials' in xhr ) {
- xhr.open( opts.method, server, true );
- xhr.withCredentials = true;
- } else {
- xhr.open( opts.method, server );
- }
-
- this._setRequestHeader( xhr, opts.headers );
-
- if ( binary ) {
- // 强制设置成 content-type 为文件流。
- xhr.overrideMimeType &&
- xhr.overrideMimeType('application/octet-stream');
-
- // android直接发送blob会导致服务端接收到的是空文件。
- // bug详情。
- // https://code.google.com/p/android/issues/detail?id=39882
- // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
- if ( Base.os.android ) {
- fr = new FileReader();
-
- fr.onload = function() {
- xhr.send( this.result );
- fr = fr.onload = null;
- };
-
- fr.readAsArrayBuffer( binary );
- } else {
- xhr.send( binary );
- }
- } else {
- xhr.send( formData );
- }
- },
-
- getResponse: function() {
- return this._response;
- },
-
- getResponseAsJson: function() {
- return this._parseJson( this._response );
- },
-
- getResponseHeaders: function() {
- return this._headers;
- },
-
- getStatus: function() {
- return this._status;
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- xhr.abort();
-
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _parseHeader: function(raw) {
- var ret = {};
-
- raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
- ret[key.trim()] = value.trim();
- });
-
- return ret;
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new XMLHttpRequest(),
- opts = this.options;
-
- if ( opts.withCredentials && !('withCredentials' in xhr) &&
- typeof XDomainRequest !== 'undefined' ) {
- xhr = new XDomainRequest();
- }
-
- xhr.upload.onprogress = function( e ) {
- var percentage = 0;
-
- if ( e.lengthComputable ) {
- percentage = e.loaded / e.total;
- }
-
- return me.trigger( 'progress', percentage );
- };
-
- xhr.onreadystatechange = function() {
-
- if ( xhr.readyState !== 4 ) {
- return;
- }
-
- xhr.upload.onprogress = noop;
- xhr.onreadystatechange = noop;
- me._xhr = null;
- me._status = xhr.status;
-
- var separator = '|', // 分隔符
- // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
- status = separator + xhr.status +
- separator + xhr.statusText;
-
- if ( xhr.status >= 200 && xhr.status < 300 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger('load');
- } else if ( xhr.status >= 500 && xhr.status < 600 ) {
- me._response = xhr.responseText;
- me._headers = me._parseHeader(xhr.getAllResponseHeaders());
- return me.trigger( 'error', 'server' + status );
- }
-
-
- return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
- };
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.setRequestHeader( key, val );
- });
- },
-
- _parseJson: function( str ) {
- var json;
-
- try {
- json = JSON.parse( str );
- } catch ( ex ) {
- json = {};
- }
-
- return json;
- }
- });
+ /**
+ * 代码来自于:https://github.com/blueimp/JavaScript-Load-Image
+ * 暂时项目中只用了orientation.
+ *
+ * 去除了 Exif Sub IFD Pointer, GPS Info IFD Pointer, Exif Thumbnail.
+ * @fileOverview EXIF解析
+ */
+
+ // Sample
+ // ====================================
+ // Make : Apple
+ // Model : iPhone 4S
+ // Orientation : 1
+ // XResolution : 72 [72/1]
+ // YResolution : 72 [72/1]
+ // ResolutionUnit : 2
+ // Software : QuickTime 7.7.1
+ // DateTime : 2013:09:01 22:53:55
+ // ExifIFDPointer : 190
+ // ExposureTime : 0.058823529411764705 [1/17]
+ // FNumber : 2.4 [12/5]
+ // ExposureProgram : Normal program
+ // ISOSpeedRatings : 800
+ // ExifVersion : 0220
+ // DateTimeOriginal : 2013:09:01 22:52:51
+ // DateTimeDigitized : 2013:09:01 22:52:51
+ // ComponentsConfiguration : YCbCr
+ // ShutterSpeedValue : 4.058893515764426
+ // ApertureValue : 2.5260688216892597 [4845/1918]
+ // BrightnessValue : -0.3126686601998395
+ // MeteringMode : Pattern
+ // Flash : Flash did not fire, compulsory flash mode
+ // FocalLength : 4.28 [107/25]
+ // SubjectArea : [4 values]
+ // FlashpixVersion : 0100
+ // ColorSpace : 1
+ // PixelXDimension : 2448
+ // PixelYDimension : 3264
+ // SensingMethod : One-chip color area sensor
+ // ExposureMode : 0
+ // WhiteBalance : Auto white balance
+ // FocalLengthIn35mmFilm : 35
+ // SceneCaptureType : Standard
+ define('runtime/html5/imagemeta/exif',[
+ 'base',
+ 'runtime/html5/imagemeta'
+ ], function( Base, ImageMeta ) {
+
+ var EXIF = {};
+
+ EXIF.ExifMap = function() {
+ return this;
+ };
+
+ EXIF.ExifMap.prototype.map = {
+ 'Orientation': 0x0112
+ };
+
+ EXIF.ExifMap.prototype.get = function( id ) {
+ return this[ id ] || this[ this.map[ id ] ];
+ };
+
+ EXIF.exifTagTypes = {
+ // byte, 8-bit unsigned int:
+ 1: {
+ getValue: function( dataView, dataOffset ) {
+ return dataView.getUint8( dataOffset );
+ },
+ size: 1
+ },
+
+ // ascii, 8-bit byte:
+ 2: {
+ getValue: function( dataView, dataOffset ) {
+ return String.fromCharCode( dataView.getUint8( dataOffset ) );
+ },
+ size: 1,
+ ascii: true
+ },
+
+ // short, 16 bit int:
+ 3: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint16( dataOffset, littleEndian );
+ },
+ size: 2
+ },
+
+ // long, 32 bit int:
+ 4: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // rational = two long values,
+ // first is numerator, second is denominator:
+ 5: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getUint32( dataOffset, littleEndian ) /
+ dataView.getUint32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ },
+
+ // slong, 32 bit signed int:
+ 9: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian );
+ },
+ size: 4
+ },
+
+ // srational, two slongs, first is numerator, second is denominator:
+ 10: {
+ getValue: function( dataView, dataOffset, littleEndian ) {
+ return dataView.getInt32( dataOffset, littleEndian ) /
+ dataView.getInt32( dataOffset + 4, littleEndian );
+ },
+ size: 8
+ }
+ };
+
+ // undefined, 8-bit byte, value depending on field:
+ EXIF.exifTagTypes[ 7 ] = EXIF.exifTagTypes[ 1 ];
+
+ EXIF.getExifValue = function( dataView, tiffOffset, offset, type, length,
+ littleEndian ) {
+
+ var tagType = EXIF.exifTagTypes[ type ],
+ tagSize, dataOffset, values, i, str, c;
+
+ if ( !tagType ) {
+ Base.log('Invalid Exif data: Invalid tag type.');
+ return;
+ }
+
+ tagSize = tagType.size * length;
+
+ // Determine if the value is contained in the dataOffset bytes,
+ // or if the value at the dataOffset is a pointer to the actual data:
+ dataOffset = tagSize > 4 ? tiffOffset + dataView.getUint32( offset + 8,
+ littleEndian ) : (offset + 8);
+
+ if ( dataOffset + tagSize > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid data offset.');
+ return;
+ }
+
+ if ( length === 1 ) {
+ return tagType.getValue( dataView, dataOffset, littleEndian );
+ }
+
+ values = [];
+
+ for ( i = 0; i < length; i += 1 ) {
+ values[ i ] = tagType.getValue( dataView,
+ dataOffset + i * tagType.size, littleEndian );
+ }
+
+ if ( tagType.ascii ) {
+ str = '';
+
+ // Concatenate the chars:
+ for ( i = 0; i < values.length; i += 1 ) {
+ c = values[ i ];
+
+ // Ignore the terminating NULL byte(s):
+ if ( c === '\u0000' ) {
+ break;
+ }
+ str += c;
+ }
+
+ return str;
+ }
+ return values;
+ };
+
+ EXIF.parseExifTag = function( dataView, tiffOffset, offset, littleEndian,
+ data ) {
+
+ var tag = dataView.getUint16( offset, littleEndian );
+ data.exif[ tag ] = EXIF.getExifValue( dataView, tiffOffset, offset,
+ dataView.getUint16( offset + 2, littleEndian ), // tag type
+ dataView.getUint32( offset + 4, littleEndian ), // tag length
+ littleEndian );
+ };
+
+ EXIF.parseExifTags = function( dataView, tiffOffset, dirOffset,
+ littleEndian, data ) {
+
+ var tagsNumber, dirEndOffset, i;
+
+ if ( dirOffset + 6 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory offset.');
+ return;
+ }
+
+ tagsNumber = dataView.getUint16( dirOffset, littleEndian );
+ dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
+
+ if ( dirEndOffset + 4 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid directory size.');
+ return;
+ }
+
+ for ( i = 0; i < tagsNumber; i += 1 ) {
+ this.parseExifTag( dataView, tiffOffset,
+ dirOffset + 2 + 12 * i, // tag offset
+ littleEndian, data );
+ }
+
+ // Return the offset to the next directory:
+ return dataView.getUint32( dirEndOffset, littleEndian );
+ };
+
+ // EXIF.getExifThumbnail = function(dataView, offset, length) {
+ // var hexData,
+ // i,
+ // b;
+ // if (!length || offset + length > dataView.byteLength) {
+ // Base.log('Invalid Exif data: Invalid thumbnail data.');
+ // return;
+ // }
+ // hexData = [];
+ // for (i = 0; i < length; i += 1) {
+ // b = dataView.getUint8(offset + i);
+ // hexData.push((b < 16 ? '0' : '') + b.toString(16));
+ // }
+ // return 'data:image/jpeg,%' + hexData.join('%');
+ // };
+
+ EXIF.parseExifData = function( dataView, offset, length, data ) {
+
+ var tiffOffset = offset + 10,
+ littleEndian, dirOffset;
+
+ // Check for the ASCII code for "Exif" (0x45786966):
+ if ( dataView.getUint32( offset + 4 ) !== 0x45786966 ) {
+ // No Exif data, might be XMP data instead
+ return;
+ }
+ if ( tiffOffset + 8 > dataView.byteLength ) {
+ Base.log('Invalid Exif data: Invalid segment size.');
+ return;
+ }
+
+ // Check for the two null bytes:
+ if ( dataView.getUint16( offset + 8 ) !== 0x0000 ) {
+ Base.log('Invalid Exif data: Missing byte alignment offset.');
+ return;
+ }
+
+ // Check the byte alignment:
+ switch ( dataView.getUint16( tiffOffset ) ) {
+ case 0x4949:
+ littleEndian = true;
+ break;
+
+ case 0x4D4D:
+ littleEndian = false;
+ break;
+
+ default:
+ Base.log('Invalid Exif data: Invalid byte alignment marker.');
+ return;
+ }
+
+ // Check for the TIFF tag marker (0x002A):
+ if ( dataView.getUint16( tiffOffset + 2, littleEndian ) !== 0x002A ) {
+ Base.log('Invalid Exif data: Missing TIFF marker.');
+ return;
+ }
+
+ // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
+ dirOffset = dataView.getUint32( tiffOffset + 4, littleEndian );
+ // Create the exif object to store the tags:
+ data.exif = new EXIF.ExifMap();
+ // Parse the tags of the main image directory and retrieve the
+ // offset to the next directory, usually the thumbnail directory:
+ dirOffset = EXIF.parseExifTags( dataView, tiffOffset,
+ tiffOffset + dirOffset, littleEndian, data );
+
+ // 尝试读取缩略图
+ // if ( dirOffset ) {
+ // thumbnailData = {exif: {}};
+ // dirOffset = EXIF.parseExifTags(
+ // dataView,
+ // tiffOffset,
+ // tiffOffset + dirOffset,
+ // littleEndian,
+ // thumbnailData
+ // );
+
+ // // Check for JPEG Thumbnail offset:
+ // if (thumbnailData.exif[0x0201]) {
+ // data.exif.Thumbnail = EXIF.getExifThumbnail(
+ // dataView,
+ // tiffOffset + thumbnailData.exif[0x0201],
+ // thumbnailData.exif[0x0202] // Thumbnail data length
+ // );
+ // }
+ // }
+ };
+
+ ImageMeta.parsers[ 0xffe1 ].push( EXIF.parseExifData );
+ return EXIF;
});
-
- /**
- * @fileOverview Transport flash实现
- */
- define('runtime/html5/md5',[
- 'runtime/html5/runtime'
- ], function( FlashRuntime ) {
-
- /*
- * Fastest md5 implementation around (JKM md5)
- * Credits: Joseph Myers
- *
- * @see http://www.myersdaily.org/joseph/javascript/md5-text.html
- * @see http://jsperf.com/md5-shootout/7
- */
-
- /* this function is much faster,
- so if possible we use it. Some IEs
- are the only ones I know of that
- need the idiotic second function,
- generated by an if clause. */
- var add32 = function (a, b) {
- return (a + b) & 0xFFFFFFFF;
- },
-
- cmn = function (q, a, b, x, s, t) {
- a = add32(add32(a, q), add32(x, t));
- return add32((a << s) | (a >>> (32 - s)), b);
- },
-
- ff = function (a, b, c, d, x, s, t) {
- return cmn((b & c) | ((~b) & d), a, b, x, s, t);
- },
-
- gg = function (a, b, c, d, x, s, t) {
- return cmn((b & d) | (c & (~d)), a, b, x, s, t);
- },
-
- hh = function (a, b, c, d, x, s, t) {
- return cmn(b ^ c ^ d, a, b, x, s, t);
- },
-
- ii = function (a, b, c, d, x, s, t) {
- return cmn(c ^ (b | (~d)), a, b, x, s, t);
- },
-
- md5cycle = function (x, k) {
- var a = x[0],
- b = x[1],
- c = x[2],
- d = x[3];
-
- a = ff(a, b, c, d, k[0], 7, -680876936);
- d = ff(d, a, b, c, k[1], 12, -389564586);
- c = ff(c, d, a, b, k[2], 17, 606105819);
- b = ff(b, c, d, a, k[3], 22, -1044525330);
- a = ff(a, b, c, d, k[4], 7, -176418897);
- d = ff(d, a, b, c, k[5], 12, 1200080426);
- c = ff(c, d, a, b, k[6], 17, -1473231341);
- b = ff(b, c, d, a, k[7], 22, -45705983);
- a = ff(a, b, c, d, k[8], 7, 1770035416);
- d = ff(d, a, b, c, k[9], 12, -1958414417);
- c = ff(c, d, a, b, k[10], 17, -42063);
- b = ff(b, c, d, a, k[11], 22, -1990404162);
- a = ff(a, b, c, d, k[12], 7, 1804603682);
- d = ff(d, a, b, c, k[13], 12, -40341101);
- c = ff(c, d, a, b, k[14], 17, -1502002290);
- b = ff(b, c, d, a, k[15], 22, 1236535329);
-
- a = gg(a, b, c, d, k[1], 5, -165796510);
- d = gg(d, a, b, c, k[6], 9, -1069501632);
- c = gg(c, d, a, b, k[11], 14, 643717713);
- b = gg(b, c, d, a, k[0], 20, -373897302);
- a = gg(a, b, c, d, k[5], 5, -701558691);
- d = gg(d, a, b, c, k[10], 9, 38016083);
- c = gg(c, d, a, b, k[15], 14, -660478335);
- b = gg(b, c, d, a, k[4], 20, -405537848);
- a = gg(a, b, c, d, k[9], 5, 568446438);
- d = gg(d, a, b, c, k[14], 9, -1019803690);
- c = gg(c, d, a, b, k[3], 14, -187363961);
- b = gg(b, c, d, a, k[8], 20, 1163531501);
- a = gg(a, b, c, d, k[13], 5, -1444681467);
- d = gg(d, a, b, c, k[2], 9, -51403784);
- c = gg(c, d, a, b, k[7], 14, 1735328473);
- b = gg(b, c, d, a, k[12], 20, -1926607734);
-
- a = hh(a, b, c, d, k[5], 4, -378558);
- d = hh(d, a, b, c, k[8], 11, -2022574463);
- c = hh(c, d, a, b, k[11], 16, 1839030562);
- b = hh(b, c, d, a, k[14], 23, -35309556);
- a = hh(a, b, c, d, k[1], 4, -1530992060);
- d = hh(d, a, b, c, k[4], 11, 1272893353);
- c = hh(c, d, a, b, k[7], 16, -155497632);
- b = hh(b, c, d, a, k[10], 23, -1094730640);
- a = hh(a, b, c, d, k[13], 4, 681279174);
- d = hh(d, a, b, c, k[0], 11, -358537222);
- c = hh(c, d, a, b, k[3], 16, -722521979);
- b = hh(b, c, d, a, k[6], 23, 76029189);
- a = hh(a, b, c, d, k[9], 4, -640364487);
- d = hh(d, a, b, c, k[12], 11, -421815835);
- c = hh(c, d, a, b, k[15], 16, 530742520);
- b = hh(b, c, d, a, k[2], 23, -995338651);
-
- a = ii(a, b, c, d, k[0], 6, -198630844);
- d = ii(d, a, b, c, k[7], 10, 1126891415);
- c = ii(c, d, a, b, k[14], 15, -1416354905);
- b = ii(b, c, d, a, k[5], 21, -57434055);
- a = ii(a, b, c, d, k[12], 6, 1700485571);
- d = ii(d, a, b, c, k[3], 10, -1894986606);
- c = ii(c, d, a, b, k[10], 15, -1051523);
- b = ii(b, c, d, a, k[1], 21, -2054922799);
- a = ii(a, b, c, d, k[8], 6, 1873313359);
- d = ii(d, a, b, c, k[15], 10, -30611744);
- c = ii(c, d, a, b, k[6], 15, -1560198380);
- b = ii(b, c, d, a, k[13], 21, 1309151649);
- a = ii(a, b, c, d, k[4], 6, -145523070);
- d = ii(d, a, b, c, k[11], 10, -1120210379);
- c = ii(c, d, a, b, k[2], 15, 718787259);
- b = ii(b, c, d, a, k[9], 21, -343485551);
-
- x[0] = add32(a, x[0]);
- x[1] = add32(b, x[1]);
- x[2] = add32(c, x[2]);
- x[3] = add32(d, x[3]);
- },
-
- /* there needs to be support for Unicode here,
- * unless we pretend that we can redefine the MD-5
- * algorithm for multi-byte characters (perhaps
- * by adding every four 16-bit characters and
- * shortening the sum to 32 bits). Otherwise
- * I suggest performing MD-5 as if every character
- * was two bytes--e.g., 0040 0025 = @%--but then
- * how will an ordinary MD-5 sum be matched?
- * There is no way to standardize text to something
- * like UTF-8 before transformation; speed cost is
- * utterly prohibitive. The JavaScript standard
- * itself needs to look at this: it should start
- * providing access to strings as preformed UTF-8
- * 8-bit unsigned value arrays.
- */
- md5blk = function (s) {
- var md5blks = [],
- i; /* Andy King said do it this way. */
-
- for (i = 0; i < 64; i += 4) {
- md5blks[i >> 2] = s.charCodeAt(i) + (s.charCodeAt(i + 1) << 8) + (s.charCodeAt(i + 2) << 16) + (s.charCodeAt(i + 3) << 24);
- }
- return md5blks;
- },
-
- md5blk_array = function (a) {
- var md5blks = [],
- i; /* Andy King said do it this way. */
-
- for (i = 0; i < 64; i += 4) {
- md5blks[i >> 2] = a[i] + (a[i + 1] << 8) + (a[i + 2] << 16) + (a[i + 3] << 24);
- }
- return md5blks;
- },
-
- md51 = function (s) {
- var n = s.length,
- state = [1732584193, -271733879, -1732584194, 271733878],
- i,
- length,
- tail,
- tmp,
- lo,
- hi;
-
- for (i = 64; i <= n; i += 64) {
- md5cycle(state, md5blk(s.substring(i - 64, i)));
- }
- s = s.substring(i - 64);
- length = s.length;
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= s.charCodeAt(i) << ((i % 4) << 3);
- }
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Beware that the final length might not fit in 32 bits so we take care of that
- tmp = n * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
-
- md5cycle(state, tail);
- return state;
- },
-
- md51_array = function (a) {
- var n = a.length,
- state = [1732584193, -271733879, -1732584194, 271733878],
- i,
- length,
- tail,
- tmp,
- lo,
- hi;
-
- for (i = 64; i <= n; i += 64) {
- md5cycle(state, md5blk_array(a.subarray(i - 64, i)));
- }
-
- // Not sure if it is a bug, however IE10 will always produce a sub array of length 1
- // containing the last element of the parent array if the sub array specified starts
- // beyond the length of the parent array - weird.
- // https://connect.microsoft.com/IE/feedback/details/771452/typed-array-subarray-issue
- a = (i - 64) < n ? a.subarray(i - 64) : new Uint8Array(0);
-
- length = a.length;
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= a[i] << ((i % 4) << 3);
- }
-
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Beware that the final length might not fit in 32 bits so we take care of that
- tmp = n * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
-
- md5cycle(state, tail);
-
- return state;
- },
-
- hex_chr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'],
-
- rhex = function (n) {
- var s = '',
- j;
- for (j = 0; j < 4; j += 1) {
- s += hex_chr[(n >> (j * 8 + 4)) & 0x0F] + hex_chr[(n >> (j * 8)) & 0x0F];
- }
- return s;
- },
-
- hex = function (x) {
- var i;
- for (i = 0; i < x.length; i += 1) {
- x[i] = rhex(x[i]);
- }
- return x.join('');
- },
-
- md5 = function (s) {
- return hex(md51(s));
- },
-
-
-
- ////////////////////////////////////////////////////////////////////////////
-
- /**
- * SparkMD5 OOP implementation.
- *
- * Use this class to perform an incremental md5, otherwise use the
- * static methods instead.
- */
- SparkMD5 = function () {
- // call reset to init the instance
- this.reset();
- };
-
-
- // In some cases the fast add32 function cannot be used..
- if (md5('hello') !== '5d41402abc4b2a76b9719d911017c592') {
- add32 = function (x, y) {
- var lsw = (x & 0xFFFF) + (y & 0xFFFF),
- msw = (x >> 16) + (y >> 16) + (lsw >> 16);
- return (msw << 16) | (lsw & 0xFFFF);
- };
- }
-
-
- /**
- * Appends a string.
- * A conversion will be applied if an utf8 string is detected.
- *
- * @param {String} str The string to be appended
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.append = function (str) {
- // converts the string to utf8 bytes if necessary
- if (/[\u0080-\uFFFF]/.test(str)) {
- str = unescape(encodeURIComponent(str));
- }
-
- // then append as binary
- this.appendBinary(str);
-
- return this;
- };
-
- /**
- * Appends a binary string.
- *
- * @param {String} contents The binary string to be appended
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.appendBinary = function (contents) {
- this._buff += contents;
- this._length += contents.length;
-
- var length = this._buff.length,
- i;
-
- for (i = 64; i <= length; i += 64) {
- md5cycle(this._state, md5blk(this._buff.substring(i - 64, i)));
- }
-
- this._buff = this._buff.substr(i - 64);
-
- return this;
- };
-
- /**
- * Finishes the incremental computation, reseting the internal state and
- * returning the result.
- * Use the raw parameter to obtain the raw result instead of the hex one.
- *
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.prototype.end = function (raw) {
- var buff = this._buff,
- length = buff.length,
- i,
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- ret;
-
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= buff.charCodeAt(i) << ((i % 4) << 3);
- }
-
- this._finish(tail, length);
- ret = !!raw ? this._state : hex(this._state);
-
- this.reset();
-
- return ret;
- };
-
- /**
- * Finish the final calculation based on the tail.
- *
- * @param {Array} tail The tail (will be modified)
- * @param {Number} length The length of the remaining buffer
- */
- SparkMD5.prototype._finish = function (tail, length) {
- var i = length,
- tmp,
- lo,
- hi;
-
- tail[i >> 2] |= 0x80 << ((i % 4) << 3);
- if (i > 55) {
- md5cycle(this._state, tail);
- for (i = 0; i < 16; i += 1) {
- tail[i] = 0;
- }
- }
-
- // Do the final computation based on the tail and length
- // Beware that the final length may not fit in 32 bits so we take care of that
- tmp = this._length * 8;
- tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
- lo = parseInt(tmp[2], 16);
- hi = parseInt(tmp[1], 16) || 0;
-
- tail[14] = lo;
- tail[15] = hi;
- md5cycle(this._state, tail);
- };
-
- /**
- * Resets the internal state of the computation.
- *
- * @return {SparkMD5} The instance itself
- */
- SparkMD5.prototype.reset = function () {
- this._buff = "";
- this._length = 0;
- this._state = [1732584193, -271733879, -1732584194, 271733878];
-
- return this;
- };
-
- /**
- * Releases memory used by the incremental buffer and other aditional
- * resources. If you plan to use the instance again, use reset instead.
- */
- SparkMD5.prototype.destroy = function () {
- delete this._state;
- delete this._buff;
- delete this._length;
- };
-
-
- /**
- * Performs the md5 hash on a string.
- * A conversion will be applied if utf8 string is detected.
- *
- * @param {String} str The string
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.hash = function (str, raw) {
- // converts the string to utf8 bytes if necessary
- if (/[\u0080-\uFFFF]/.test(str)) {
- str = unescape(encodeURIComponent(str));
- }
-
- var hash = md51(str);
-
- return !!raw ? hash : hex(hash);
- };
-
- /**
- * Performs the md5 hash on a binary string.
- *
- * @param {String} content The binary string
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.hashBinary = function (content, raw) {
- var hash = md51(content);
-
- return !!raw ? hash : hex(hash);
- };
-
- /**
- * SparkMD5 OOP implementation for array buffers.
- *
- * Use this class to perform an incremental md5 ONLY for array buffers.
- */
- SparkMD5.ArrayBuffer = function () {
- // call reset to init the instance
- this.reset();
- };
-
- ////////////////////////////////////////////////////////////////////////////
-
- /**
- * Appends an array buffer.
- *
- * @param {ArrayBuffer} arr The array to be appended
- *
- * @return {SparkMD5.ArrayBuffer} The instance itself
- */
- SparkMD5.ArrayBuffer.prototype.append = function (arr) {
- // TODO: we could avoid the concatenation here but the algorithm would be more complex
- // if you find yourself needing extra performance, please make a PR.
- var buff = this._concatArrayBuffer(this._buff, arr),
- length = buff.length,
- i;
-
- this._length += arr.byteLength;
-
- for (i = 64; i <= length; i += 64) {
- md5cycle(this._state, md5blk_array(buff.subarray(i - 64, i)));
- }
-
- // Avoids IE10 weirdness (documented above)
- this._buff = (i - 64) < length ? buff.subarray(i - 64) : new Uint8Array(0);
-
- return this;
- };
-
- /**
- * Finishes the incremental computation, reseting the internal state and
- * returning the result.
- * Use the raw parameter to obtain the raw result instead of the hex one.
- *
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.ArrayBuffer.prototype.end = function (raw) {
- var buff = this._buff,
- length = buff.length,
- tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
- i,
- ret;
-
- for (i = 0; i < length; i += 1) {
- tail[i >> 2] |= buff[i] << ((i % 4) << 3);
- }
-
- this._finish(tail, length);
- ret = !!raw ? this._state : hex(this._state);
-
- this.reset();
-
- return ret;
- };
-
- SparkMD5.ArrayBuffer.prototype._finish = SparkMD5.prototype._finish;
-
- /**
- * Resets the internal state of the computation.
- *
- * @return {SparkMD5.ArrayBuffer} The instance itself
- */
- SparkMD5.ArrayBuffer.prototype.reset = function () {
- this._buff = new Uint8Array(0);
- this._length = 0;
- this._state = [1732584193, -271733879, -1732584194, 271733878];
-
- return this;
- };
-
- /**
- * Releases memory used by the incremental buffer and other aditional
- * resources. If you plan to use the instance again, use reset instead.
- */
- SparkMD5.ArrayBuffer.prototype.destroy = SparkMD5.prototype.destroy;
-
- /**
- * Concats two array buffers, returning a new one.
- *
- * @param {ArrayBuffer} first The first array buffer
- * @param {ArrayBuffer} second The second array buffer
- *
- * @return {ArrayBuffer} The new array buffer
- */
- SparkMD5.ArrayBuffer.prototype._concatArrayBuffer = function (first, second) {
- var firstLength = first.length,
- result = new Uint8Array(firstLength + second.byteLength);
-
- result.set(first);
- result.set(new Uint8Array(second), firstLength);
-
- return result;
- };
-
- /**
- * Performs the md5 hash on an array buffer.
- *
- * @param {ArrayBuffer} arr The array buffer
- * @param {Boolean} raw True to get the raw result, false to get the hex result
- *
- * @return {String|Array} The result
- */
- SparkMD5.ArrayBuffer.hash = function (arr, raw) {
- var hash = md51_array(new Uint8Array(arr));
-
- return !!raw ? hash : hex(hash);
- };
-
- return FlashRuntime.register( 'Md5', {
- init: function() {
- // do nothing.
- },
-
- loadFromBlob: function( file ) {
- var blob = file.getSource(),
- chunkSize = 2 * 1024 * 1024,
- chunks = Math.ceil( blob.size / chunkSize ),
- chunk = 0,
- owner = this.owner,
- spark = new SparkMD5.ArrayBuffer(),
- me = this,
- blobSlice = blob.mozSlice || blob.webkitSlice || blob.slice,
- loadNext, fr;
-
- fr = new FileReader();
-
- loadNext = function() {
- var start, end;
-
- start = chunk * chunkSize;
- end = Math.min( start + chunkSize, blob.size );
-
- fr.onload = function( e ) {
- spark.append( e.target.result );
- owner.trigger( 'progress', {
- total: file.size,
- loaded: end
- });
- };
-
- fr.onloadend = function() {
- fr.onloadend = fr.onload = null;
-
- if ( ++chunk < chunks ) {
- setTimeout( loadNext, 1 );
- } else {
- setTimeout(function(){
- owner.trigger('load');
- me.result = spark.end();
- loadNext = file = blob = spark = null;
- owner.trigger('complete');
- }, 50 );
- }
- };
-
- fr.readAsArrayBuffer( blobSlice.call( blob, start, end ) );
- };
-
- loadNext();
- },
-
- getResult: function() {
- return this.result;
- }
- });
+ /**
+ * 这个方式性能不行,但是可以解决android里面的toDataUrl的bug
+ * android里面toDataUrl('image/jpege')得到的结果却是png.
+ *
+ * 所以这里没辙,只能借助这个工具
+ * @fileOverview jpeg encoder
+ */
+ define('runtime/html5/jpegencoder',[], function( require, exports, module ) {
+
+ /*
+ Copyright (c) 2008, Adobe Systems Incorporated
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of Adobe Systems Incorporated nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+ /*
+ JPEG encoder ported to JavaScript and optimized by Andreas Ritter, www.bytestrom.eu, 11/2009
+
+ Basic GUI blocking jpeg encoder
+ */
+
+ function JPEGEncoder(quality) {
+ var self = this;
+ var fround = Math.round;
+ var ffloor = Math.floor;
+ var YTable = new Array(64);
+ var UVTable = new Array(64);
+ var fdtbl_Y = new Array(64);
+ var fdtbl_UV = new Array(64);
+ var YDC_HT;
+ var UVDC_HT;
+ var YAC_HT;
+ var UVAC_HT;
+
+ var bitcode = new Array(65535);
+ var category = new Array(65535);
+ var outputfDCTQuant = new Array(64);
+ var DU = new Array(64);
+ var byteout = [];
+ var bytenew = 0;
+ var bytepos = 7;
+
+ var YDU = new Array(64);
+ var UDU = new Array(64);
+ var VDU = new Array(64);
+ var clt = new Array(256);
+ var RGB_YUV_TABLE = new Array(2048);
+ var currentQuality;
+
+ var ZigZag = [
+ 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
+ ];
+
+ var std_dc_luminance_nrcodes = [0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0];
+ var std_dc_luminance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
+ var std_ac_luminance_nrcodes = [0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d];
+ var std_ac_luminance_values = [
+ 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,
+ 0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,
+ 0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08,
+ 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,
+ 0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,
+ 0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28,
+ 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,
+ 0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,
+ 0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,
+ 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,
+ 0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,
+ 0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89,
+ 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,
+ 0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,
+ 0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,
+ 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,
+ 0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,
+ 0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2,
+ 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,
+ 0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
+ 0xf9,0xfa
+ ];
+
+ var std_dc_chrominance_nrcodes = [0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0];
+ var std_dc_chrominance_values = [0,1,2,3,4,5,6,7,8,9,10,11];
+ var std_ac_chrominance_nrcodes = [0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77];
+ var std_ac_chrominance_values = [
+ 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,
+ 0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,
+ 0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91,
+ 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,
+ 0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,
+ 0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,
+ 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,
+ 0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,
+ 0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,
+ 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,
+ 0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,
+ 0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,
+ 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,
+ 0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,
+ 0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,
+ 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,
+ 0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,
+ 0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,
+ 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,
+ 0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,
+ 0xf9,0xfa
+ ];
+
+ function initQuantTables(sf){
+ var YQT = [
+ 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
+ ];
+
+ for (var i = 0; i < 64; i++) {
+ var t = ffloor((YQT[i]*sf+50)/100);
+ if (t < 1) {
+ t = 1;
+ } else if (t > 255) {
+ t = 255;
+ }
+ YTable[ZigZag[i]] = t;
+ }
+ var UVQT = [
+ 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
+ ];
+ for (var j = 0; j < 64; j++) {
+ var u = ffloor((UVQT[j]*sf+50)/100);
+ if (u < 1) {
+ u = 1;
+ } else if (u > 255) {
+ u = 255;
+ }
+ UVTable[ZigZag[j]] = u;
+ }
+ var aasf = [
+ 1.0, 1.387039845, 1.306562965, 1.175875602,
+ 1.0, 0.785694958, 0.541196100, 0.275899379
+ ];
+ var k = 0;
+ for (var row = 0; row < 8; row++)
+ {
+ for (var col = 0; col < 8; col++)
+ {
+ fdtbl_Y[k] = (1.0 / (YTable [ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
+ fdtbl_UV[k] = (1.0 / (UVTable[ZigZag[k]] * aasf[row] * aasf[col] * 8.0));
+ k++;
+ }
+ }
+ }
+
+ function computeHuffmanTbl(nrcodes, std_table){
+ var codevalue = 0;
+ var pos_in_table = 0;
+ var HT = new Array();
+ for (var k = 1; k <= 16; k++) {
+ for (var j = 1; j <= nrcodes[k]; j++) {
+ HT[std_table[pos_in_table]] = [];
+ HT[std_table[pos_in_table]][0] = codevalue;
+ HT[std_table[pos_in_table]][1] = k;
+ pos_in_table++;
+ codevalue++;
+ }
+ codevalue*=2;
+ }
+ return HT;
+ }
+
+ function initHuffmanTbl()
+ {
+ YDC_HT = computeHuffmanTbl(std_dc_luminance_nrcodes,std_dc_luminance_values);
+ UVDC_HT = computeHuffmanTbl(std_dc_chrominance_nrcodes,std_dc_chrominance_values);
+ YAC_HT = computeHuffmanTbl(std_ac_luminance_nrcodes,std_ac_luminance_values);
+ UVAC_HT = computeHuffmanTbl(std_ac_chrominance_nrcodes,std_ac_chrominance_values);
+ }
+
+ function initCategoryNumber()
+ {
+ var nrlower = 1;
+ var nrupper = 2;
+ for (var cat = 1; cat <= 15; cat++) {
+ //Positive numbers
+ for (var nr = nrlower; nr>0] = 38470 * i;
+ RGB_YUV_TABLE[(i+ 512)>>0] = 7471 * i + 0x8000;
+ RGB_YUV_TABLE[(i+ 768)>>0] = -11059 * i;
+ RGB_YUV_TABLE[(i+1024)>>0] = -21709 * i;
+ RGB_YUV_TABLE[(i+1280)>>0] = 32768 * i + 0x807FFF;
+ RGB_YUV_TABLE[(i+1536)>>0] = -27439 * i;
+ RGB_YUV_TABLE[(i+1792)>>0] = - 5329 * i;
+ }
+ }
+
+ // IO functions
+ function writeBits(bs)
+ {
+ var value = bs[0];
+ var posval = bs[1]-1;
+ while ( posval >= 0 ) {
+ if (value & (1 << posval) ) {
+ bytenew |= (1 << bytepos);
+ }
+ posval--;
+ bytepos--;
+ if (bytepos < 0) {
+ if (bytenew == 0xFF) {
+ writeByte(0xFF);
+ writeByte(0);
+ }
+ else {
+ writeByte(bytenew);
+ }
+ bytepos=7;
+ bytenew=0;
+ }
+ }
+ }
+
+ function writeByte(value)
+ {
+ byteout.push(clt[value]); // write char directly instead of converting later
+ }
+
+ function writeWord(value)
+ {
+ writeByte((value>>8)&0xFF);
+ writeByte((value )&0xFF);
+ }
+
+ // DCT & quantization core
+ function fDCTQuant(data, fdtbl)
+ {
+ var d0, d1, d2, d3, d4, d5, d6, d7;
+ /* Pass 1: process rows. */
+ var dataOff=0;
+ var i;
+ var I8 = 8;
+ var I64 = 64;
+ for (i=0; i 0.0) ? ((fDCTQuant + 0.5)|0) : ((fDCTQuant - 0.5)|0);
+ //outputfDCTQuant[i] = fround(fDCTQuant);
+
+ }
+ return outputfDCTQuant;
+ }
+
+ function writeAPP0()
+ {
+ writeWord(0xFFE0); // marker
+ writeWord(16); // length
+ writeByte(0x4A); // J
+ writeByte(0x46); // F
+ writeByte(0x49); // I
+ writeByte(0x46); // F
+ writeByte(0); // = "JFIF",'\0'
+ writeByte(1); // versionhi
+ writeByte(1); // versionlo
+ writeByte(0); // xyunits
+ writeWord(1); // xdensity
+ writeWord(1); // ydensity
+ writeByte(0); // thumbnwidth
+ writeByte(0); // thumbnheight
+ }
+
+ function writeSOF0(width, height)
+ {
+ writeWord(0xFFC0); // marker
+ writeWord(17); // length, truecolor YUV JPG
+ writeByte(8); // precision
+ writeWord(height);
+ writeWord(width);
+ writeByte(3); // nrofcomponents
+ writeByte(1); // IdY
+ writeByte(0x11); // HVY
+ writeByte(0); // QTY
+ writeByte(2); // IdU
+ writeByte(0x11); // HVU
+ writeByte(1); // QTU
+ writeByte(3); // IdV
+ writeByte(0x11); // HVV
+ writeByte(1); // QTV
+ }
+
+ function writeDQT()
+ {
+ writeWord(0xFFDB); // marker
+ writeWord(132); // length
+ writeByte(0);
+ for (var i=0; i<64; i++) {
+ writeByte(YTable[i]);
+ }
+ writeByte(1);
+ for (var j=0; j<64; j++) {
+ writeByte(UVTable[j]);
+ }
+ }
+
+ function writeDHT()
+ {
+ writeWord(0xFFC4); // marker
+ writeWord(0x01A2); // length
+
+ writeByte(0); // HTYDCinfo
+ for (var i=0; i<16; i++) {
+ writeByte(std_dc_luminance_nrcodes[i+1]);
+ }
+ for (var j=0; j<=11; j++) {
+ writeByte(std_dc_luminance_values[j]);
+ }
+
+ writeByte(0x10); // HTYACinfo
+ for (var k=0; k<16; k++) {
+ writeByte(std_ac_luminance_nrcodes[k+1]);
+ }
+ for (var l=0; l<=161; l++) {
+ writeByte(std_ac_luminance_values[l]);
+ }
+
+ writeByte(1); // HTUDCinfo
+ for (var m=0; m<16; m++) {
+ writeByte(std_dc_chrominance_nrcodes[m+1]);
+ }
+ for (var n=0; n<=11; n++) {
+ writeByte(std_dc_chrominance_values[n]);
+ }
+
+ writeByte(0x11); // HTUACinfo
+ for (var o=0; o<16; o++) {
+ writeByte(std_ac_chrominance_nrcodes[o+1]);
+ }
+ for (var p=0; p<=161; p++) {
+ writeByte(std_ac_chrominance_values[p]);
+ }
+ }
+
+ function writeSOS()
+ {
+ writeWord(0xFFDA); // marker
+ writeWord(12); // length
+ writeByte(3); // nrofcomponents
+ writeByte(1); // IdY
+ writeByte(0); // HTY
+ writeByte(2); // IdU
+ writeByte(0x11); // HTU
+ writeByte(3); // IdV
+ writeByte(0x11); // HTV
+ writeByte(0); // Ss
+ writeByte(0x3f); // Se
+ writeByte(0); // Bf
+ }
+
+ function processDU(CDU, fdtbl, DC, HTDC, HTAC){
+ var EOB = HTAC[0x00];
+ var M16zeroes = HTAC[0xF0];
+ var pos;
+ var I16 = 16;
+ var I63 = 63;
+ var I64 = 64;
+ var DU_DCT = fDCTQuant(CDU, fdtbl);
+ //ZigZag reorder
+ for (var j=0;j0)&&(DU[end0pos]==0); end0pos--) {};
+ //end0pos = first element in reverse order !=0
+ if ( end0pos == 0) {
+ writeBits(EOB);
+ return DC;
+ }
+ var i = 1;
+ var lng;
+ while ( i <= end0pos ) {
+ var startpos = i;
+ for (; (DU[i]==0) && (i<=end0pos); ++i) {}
+ var nrzeroes = i-startpos;
+ if ( nrzeroes >= I16 ) {
+ lng = nrzeroes>>4;
+ for (var nrmarker=1; nrmarker <= lng; ++nrmarker)
+ writeBits(M16zeroes);
+ nrzeroes = nrzeroes&0xF;
+ }
+ pos = 32767+DU[i];
+ writeBits(HTAC[(nrzeroes<<4)+category[pos]]);
+ writeBits(bitcode[pos]);
+ i++;
+ }
+ if ( end0pos != I63 ) {
+ writeBits(EOB);
+ }
+ return DC;
+ }
+
+ function initCharLookupTable(){
+ var sfcc = String.fromCharCode;
+ for(var i=0; i < 256; i++){ ///// ACHTUNG // 255
+ clt[i] = sfcc(i);
+ }
+ }
+
+ this.encode = function(image,quality) // image data object
+ {
+ // var time_start = new Date().getTime();
+
+ if(quality) setQuality(quality);
+
+ // Initialize bit writer
+ byteout = new Array();
+ bytenew=0;
+ bytepos=7;
+
+ // Add JPEG headers
+ writeWord(0xFFD8); // SOI
+ writeAPP0();
+ writeDQT();
+ writeSOF0(image.width,image.height);
+ writeDHT();
+ writeSOS();
+
+
+ // Encode 8x8 macroblocks
+ var DCY=0;
+ var DCU=0;
+ var DCV=0;
+
+ bytenew=0;
+ bytepos=7;
+
+
+ this.encode.displayName = "_encode_";
+
+ var imageData = image.data;
+ var width = image.width;
+ var height = image.height;
+
+ var quadWidth = width*4;
+ var tripleWidth = width*3;
+
+ var x, y = 0;
+ var r, g, b;
+ var start,p, col,row,pos;
+ while(y < height){
+ x = 0;
+ while(x < quadWidth){
+ start = quadWidth * y + x;
+ p = start;
+ col = -1;
+ row = 0;
+
+ for(pos=0; pos < 64; pos++){
+ row = pos >> 3;// /8
+ col = ( pos & 7 ) * 4; // %8
+ p = start + ( row * quadWidth ) + col;
+
+ if(y+row >= height){ // padding bottom
+ p-= (quadWidth*(y+1+row-height));
+ }
+
+ if(x+col >= quadWidth){ // padding right
+ p-= ((x+col) - quadWidth +4)
+ }
+
+ r = imageData[ p++ ];
+ g = imageData[ p++ ];
+ b = imageData[ p++ ];
+
+
+ /* // calculate YUV values dynamically
+ YDU[pos]=((( 0.29900)*r+( 0.58700)*g+( 0.11400)*b))-128; //-0x80
+ UDU[pos]=(((-0.16874)*r+(-0.33126)*g+( 0.50000)*b));
+ VDU[pos]=((( 0.50000)*r+(-0.41869)*g+(-0.08131)*b));
+ */
+
+ // use lookup table (slightly faster)
+ YDU[pos] = ((RGB_YUV_TABLE[r] + RGB_YUV_TABLE[(g + 256)>>0] + RGB_YUV_TABLE[(b + 512)>>0]) >> 16)-128;
+ UDU[pos] = ((RGB_YUV_TABLE[(r + 768)>>0] + RGB_YUV_TABLE[(g + 1024)>>0] + RGB_YUV_TABLE[(b + 1280)>>0]) >> 16)-128;
+ VDU[pos] = ((RGB_YUV_TABLE[(r + 1280)>>0] + RGB_YUV_TABLE[(g + 1536)>>0] + RGB_YUV_TABLE[(b + 1792)>>0]) >> 16)-128;
+
+ }
+
+ DCY = processDU(YDU, fdtbl_Y, DCY, YDC_HT, YAC_HT);
+ DCU = processDU(UDU, fdtbl_UV, DCU, UVDC_HT, UVAC_HT);
+ DCV = processDU(VDU, fdtbl_UV, DCV, UVDC_HT, UVAC_HT);
+ x+=32;
+ }
+ y+=8;
+ }
+
+
+ ////////////////////////////////////////////////////////////////
+
+ // Do the bit alignment of the EOI marker
+ if ( bytepos >= 0 ) {
+ var fillbits = [];
+ fillbits[1] = bytepos+1;
+ fillbits[0] = (1<<(bytepos+1))-1;
+ writeBits(fillbits);
+ }
+
+ writeWord(0xFFD9); //EOI
+
+ var jpegDataUri = 'data:image/jpeg;base64,' + btoa(byteout.join(''));
+
+ byteout = [];
+
+ // benchmarking
+ // var duration = new Date().getTime() - time_start;
+ // console.log('Encoding time: '+ currentQuality + 'ms');
+ //
+
+ return jpegDataUri
+ }
+
+ function setQuality(quality){
+ if (quality <= 0) {
+ quality = 1;
+ }
+ if (quality > 100) {
+ quality = 100;
+ }
+
+ if(currentQuality == quality) return // don't recalc if unchanged
+
+ var sf = 0;
+ if (quality < 50) {
+ sf = Math.floor(5000 / quality);
+ } else {
+ sf = Math.floor(200 - quality*2);
+ }
+
+ initQuantTables(sf);
+ currentQuality = quality;
+ // console.log('Quality set to: '+quality +'%');
+ }
+
+ function init(){
+ // var time_start = new Date().getTime();
+ if(!quality) quality = 50;
+ // Create tables
+ initCharLookupTable()
+ initHuffmanTbl();
+ initCategoryNumber();
+ initRGBYUVTable();
+
+ setQuality(quality);
+ // var duration = new Date().getTime() - time_start;
+ // console.log('Initialization '+ duration + 'ms');
+ }
+
+ init();
+
+ };
+
+ JPEGEncoder.encode = function( data, quality ) {
+ var encoder = new JPEGEncoder( quality );
+
+ return encoder.encode( data );
+ }
+
+ return JPEGEncoder;
});
- /**
- * @fileOverview FlashRuntime
- */
- define('runtime/flash/runtime',[
- 'base',
- 'runtime/runtime',
- 'runtime/compbase'
- ], function( Base, Runtime, CompBase ) {
-
- var $ = Base.$,
- type = 'flash',
- components = {};
-
-
- function getFlashVersion() {
- var version;
-
- try {
- version = navigator.plugins[ 'Shockwave Flash' ];
- version = version.description;
- } catch ( ex ) {
- try {
- version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash')
- .GetVariable('$version');
- } catch ( ex2 ) {
- version = '0.0';
- }
- }
- version = version.match( /\d+/g );
- return parseFloat( version[ 0 ] + '.' + version[ 1 ], 10 );
- }
-
- function FlashRuntime() {
- var pool = {},
- clients = {},
- destroy = this.destroy,
- me = this,
- jsreciver = Base.guid('webuploader_');
-
- Runtime.apply( me, arguments );
- me.type = type;
-
-
- // 这个方法的调用者,实际上是RuntimeClient
- me.exec = function( comp, fn/*, args...*/ ) {
- var client = this,
- uid = client.uid,
- args = Base.slice( arguments, 2 ),
- instance;
-
- clients[ uid ] = client;
-
- if ( components[ comp ] ) {
- if ( !pool[ uid ] ) {
- pool[ uid ] = new components[ comp ]( client, me );
- }
-
- instance = pool[ uid ];
-
- if ( instance[ fn ] ) {
- return instance[ fn ].apply( instance, args );
- }
- }
-
- return me.flashExec.apply( client, arguments );
- };
-
- function handler( evt, obj ) {
- var type = evt.type || evt,
- parts, uid;
-
- parts = type.split('::');
- uid = parts[ 0 ];
- type = parts[ 1 ];
-
- // console.log.apply( console, arguments );
-
- if ( type === 'Ready' && uid === me.uid ) {
- me.trigger('ready');
- } else if ( clients[ uid ] ) {
- clients[ uid ].trigger( type.toLowerCase(), evt, obj );
- }
-
- // Base.log( evt, obj );
- }
-
- // flash的接受器。
- window[ jsreciver ] = function() {
- var args = arguments;
-
- // 为了能捕获得到。
- setTimeout(function() {
- handler.apply( null, args );
- }, 1 );
- };
-
- this.jsreciver = jsreciver;
-
- this.destroy = function() {
- // @todo 删除池子中的所有实例
- return destroy && destroy.apply( this, arguments );
- };
-
- this.flashExec = function( comp, fn ) {
- var flash = me.getFlash(),
- args = Base.slice( arguments, 2 );
-
- return flash.exec( this.uid, comp, fn, args );
- };
-
- // @todo
- }
-
- Base.inherits( Runtime, {
- constructor: FlashRuntime,
-
- init: function() {
- var container = this.getContainer(),
- opts = this.options,
- html;
-
- // if not the minimal height, shims are not initialized
- // in older browsers (e.g FF3.6, IE6,7,8, Safari 4.0,5.0, etc)
- container.css({
- position: 'absolute',
- top: '-8px',
- left: '-8px',
- width: '9px',
- height: '9px',
- overflow: 'hidden'
- });
-
- // insert flash object
- html = '';
-
- container.html( html );
- },
-
- getFlash: function() {
- if ( this._flash ) {
- return this._flash;
- }
-
- this._flash = $( '#' + this.uid ).get( 0 );
- return this._flash;
- }
-
- });
-
- FlashRuntime.register = function( name, component ) {
- component = components[ name ] = Base.inherits( CompBase, $.extend({
-
- // @todo fix this later
- flashExec: function() {
- var owner = this.owner,
- runtime = this.getRuntime();
-
- return runtime.flashExec.apply( owner, arguments );
- }
- }, component ) );
-
- return component;
- };
-
- if ( getFlashVersion() >= 11.4 ) {
- Runtime.addRuntime( type, FlashRuntime );
- }
-
- return FlashRuntime;
+ /**
+ * @fileOverview Fix android canvas.toDataUrl bug.
+ */
+ define('runtime/html5/androidpatch',[
+ 'runtime/html5/util',
+ 'runtime/html5/jpegencoder',
+ 'base'
+ ], function( Util, encoder, Base ) {
+ var origin = Util.canvasToDataUrl,
+ supportJpeg;
+
+ Util.canvasToDataUrl = function( canvas, type, quality ) {
+ var ctx, w, h, fragement, parts;
+
+ // 非android手机直接跳过。
+ if ( !Base.os.android ) {
+ return origin.apply( null, arguments );
+ }
+
+ // 检测是否canvas支持jpeg导出,根据数据格式来判断。
+ // JPEG 前两位分别是:255, 216
+ if ( type === 'image/jpeg' && typeof supportJpeg === 'undefined' ) {
+ fragement = origin.apply( null, arguments );
+
+ parts = fragement.split(',');
+
+ if ( ~parts[ 0 ].indexOf('base64') ) {
+ fragement = atob( parts[ 1 ] );
+ } else {
+ fragement = decodeURIComponent( parts[ 1 ] );
+ }
+
+ fragement = fragement.substring( 0, 2 );
+
+ supportJpeg = fragement.charCodeAt( 0 ) === 255 &&
+ fragement.charCodeAt( 1 ) === 216;
+ }
+
+ // 只有在android环境下才修复
+ if ( type === 'image/jpeg' && !supportJpeg ) {
+ w = canvas.width;
+ h = canvas.height;
+ ctx = canvas.getContext('2d');
+
+ return encoder.encode( ctx.getImageData( 0, 0, w, h ), quality );
+ }
+
+ return origin.apply( null, arguments );
+ };
});
- /**
- * @fileOverview FilePicker
- */
- define('runtime/flash/filepicker',[
- 'base',
- 'runtime/flash/runtime'
- ], function( Base, FlashRuntime ) {
- var $ = Base.$;
-
- return FlashRuntime.register( 'FilePicker', {
- init: function( opts ) {
- var copy = $.extend({}, opts ),
- len, i;
-
- // 修复Flash再没有设置title的情况下无法弹出flash文件选择框的bug.
- len = copy.accept && copy.accept.length;
- for ( i = 0; i < len; i++ ) {
- if ( !copy.accept[ i ].title ) {
- copy.accept[ i ].title = 'Files';
- }
- }
-
- delete copy.button;
- delete copy.id;
- delete copy.container;
+ /**
+ * @fileOverview Image
+ */
+ define('runtime/html5/image',[
+ 'base',
+ 'runtime/html5/runtime',
+ 'runtime/html5/util'
+ ], function( Base, Html5Runtime, Util ) {
+
+ var BLANK = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D';
+
+ return Html5Runtime.register( 'Image', {
+
+ // flag: 标记是否被修改过。
+ modified: false,
+
+ init: function() {
+ var me = this,
+ img = new Image();
+
+ img.onload = function() {
+
+ me._info = {
+ type: me.type,
+ width: this.width,
+ height: this.height
+ };
+
+ //debugger;
+
+ // 读取meta信息。
+ if ( !me._metas && 'image/jpeg' === me.type ) {
+ Util.parseMeta( me._blob, function( error, ret ) {
+ me._metas = ret;
+ me.owner.trigger('load');
+ });
+ } else {
+ me.owner.trigger('load');
+ }
+ };
+
+ img.onerror = function() {
+ me.owner.trigger('error');
+ };
+
+ me._img = img;
+ },
+
+ loadFromBlob: function( blob ) {
+ var me = this,
+ img = me._img;
+
+ me._blob = blob;
+ me.type = blob.type;
+ img.src = Util.createObjectURL( blob.getSource() );
+ me.owner.once( 'load', function() {
+ Util.revokeObjectURL( img.src );
+ });
+ },
+
+ resize: function( width, height ) {
+ var canvas = this._canvas ||
+ (this._canvas = document.createElement('canvas'));
+
+ this._resize( this._img, canvas, width, height );
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'resize' );
+ },
+
+ crop: function( x, y, w, h, s ) {
+ var cvs = this._canvas ||
+ (this._canvas = document.createElement('canvas')),
+ opts = this.options,
+ img = this._img,
+ iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ orientation = this.getOrientation();
+
+ s = s || 1;
+
+ // todo 解决 orientation 的问题。
+ // values that require 90 degree rotation
+ // if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // switch ( orientation ) {
+ // case 6:
+ // tmp = x;
+ // x = y;
+ // y = iw * s - tmp - w;
+ // console.log(ih * s, tmp, w)
+ // break;
+ // }
+
+ // (w ^= h, h ^= w, w ^= h);
+ // }
+
+ cvs.width = w;
+ cvs.height = h;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+ this._renderImageToCanvas( cvs, img, -x, -y, iw * s, ih * s );
+
+ this._blob = null; // 没用了,可以删掉了。
+ this.modified = true;
+ this.owner.trigger( 'complete', 'crop' );
+ },
+
+ getAsBlob: function( type ) {
+ var blob = this._blob,
+ opts = this.options,
+ canvas;
+
+ type = type || this.type;
+
+ // blob需要重新生成。
+ if ( this.modified || this.type !== type ) {
+ canvas = this._canvas;
+
+ if ( type === 'image/jpeg' ) {
+
+ blob = Util.canvasToDataUrl( canvas, type, opts.quality );
+
+ if ( opts.preserveHeaders && this._metas &&
+ this._metas.imageHead ) {
+
+ blob = Util.dataURL2ArrayBuffer( blob );
+ blob = Util.updateImageHead( blob,
+ this._metas.imageHead );
+ blob = Util.arrayBufferToBlob( blob, type );
+ return blob;
+ }
+ } else {
+ blob = Util.canvasToDataUrl( canvas, type );
+ }
+
+ blob = Util.dataURL2Blob( blob );
+ }
+
+ return blob;
+ },
+
+ getAsDataUrl: function( type ) {
+ var opts = this.options;
+
+ type = type || this.type;
+
+ if ( type === 'image/jpeg' ) {
+ return Util.canvasToDataUrl( this._canvas, type, opts.quality );
+ } else {
+ return this._canvas.toDataURL( type );
+ }
+ },
+
+ getOrientation: function() {
+ return this._metas && this._metas.exif &&
+ this._metas.exif.get('Orientation') || 1;
+ },
+
+ info: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._info = val;
+ return this;
+ }
+
+ // getter
+ return this._info;
+ },
+
+ meta: function( val ) {
+
+ // setter
+ if ( val ) {
+ this._metas = val;
+ return this;
+ }
+
+ // getter
+ return this._metas;
+ },
+
+ destroy: function() {
+ var canvas = this._canvas;
+ this._img.onload = null;
+
+ if ( canvas ) {
+ canvas.getContext('2d')
+ .clearRect( 0, 0, canvas.width, canvas.height );
+ canvas.width = canvas.height = 0;
+ this._canvas = null;
+ }
+
+ // 释放内存。非常重要,否则释放不了image的内存。
+ this._img.src = BLANK;
+ this._img = this._blob = null;
+ },
+
+ _resize: function( img, cvs, width, height ) {
+ var opts = this.options,
+ naturalWidth = img.width,
+ naturalHeight = img.height,
+ orientation = this.getOrientation(),
+ scale, w, h, x, y;
+
+ // values that require 90 degree rotation
+ if ( ~[ 5, 6, 7, 8 ].indexOf( orientation ) ) {
+
+ // 交换width, height的值。
+ width ^= height;
+ height ^= width;
+ width ^= height;
+ }
+
+ scale = Math[ opts.crop ? 'max' : 'min' ]( width / naturalWidth,
+ height / naturalHeight );
+
+ // 不允许放大。
+ opts.allowMagnify || (scale = Math.min( 1, scale ));
+
+ w = naturalWidth * scale;
+ h = naturalHeight * scale;
+
+ if ( opts.crop ) {
+ cvs.width = width;
+ cvs.height = height;
+ } else {
+ cvs.width = w;
+ cvs.height = h;
+ }
+
+ x = (cvs.width - w) / 2;
+ y = (cvs.height - h) / 2;
+
+ opts.preserveHeaders || this._rotate2Orientaion( cvs, orientation );
+
+ this._renderImageToCanvas( cvs, img, x, y, w, h );
+ },
+
+ _rotate2Orientaion: function( canvas, orientation ) {
+ var width = canvas.width,
+ height = canvas.height,
+ ctx = canvas.getContext('2d');
+
+ switch ( orientation ) {
+ case 5:
+ case 6:
+ case 7:
+ case 8:
+ canvas.width = height;
+ canvas.height = width;
+ break;
+ }
+
+ switch ( orientation ) {
+ case 2: // horizontal flip
+ ctx.translate( width, 0 );
+ ctx.scale( -1, 1 );
+ break;
+
+ case 3: // 180 rotate left
+ ctx.translate( width, height );
+ ctx.rotate( Math.PI );
+ break;
+
+ case 4: // vertical flip
+ ctx.translate( 0, height );
+ ctx.scale( 1, -1 );
+ break;
+
+ case 5: // vertical flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.scale( 1, -1 );
+ break;
+
+ case 6: // 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( 0, -height );
+ break;
+
+ case 7: // horizontal flip + 90 rotate right
+ ctx.rotate( 0.5 * Math.PI );
+ ctx.translate( width, -height );
+ ctx.scale( -1, 1 );
+ break;
+
+ case 8: // 90 rotate left
+ ctx.rotate( -0.5 * Math.PI );
+ ctx.translate( -width, 0 );
+ break;
+ }
+ },
+
+ // https://github.com/stomita/ios-imagefile-megapixel/
+ // blob/master/src/megapix-image.js
+ _renderImageToCanvas: (function() {
+
+ // 如果不是ios, 不需要这么复杂!
+ if ( !Base.os.ios ) {
+ return function( canvas ) {
+ var args = Base.slice( arguments, 1 ),
+ ctx = canvas.getContext('2d');
+
+ ctx.drawImage.apply( ctx, args );
+ };
+ }
+
+ /**
+ * Detecting vertical squash in loaded image.
+ * Fixes a bug which squash image vertically while drawing into
+ * canvas for some images.
+ */
+ function detectVerticalSquash( img, iw, ih ) {
+ var canvas = document.createElement('canvas'),
+ ctx = canvas.getContext('2d'),
+ sy = 0,
+ ey = ih,
+ py = ih,
+ data, alpha, ratio;
+
+
+ canvas.width = 1;
+ canvas.height = ih;
+ ctx.drawImage( img, 0, 0 );
+ data = ctx.getImageData( 0, 0, 1, ih ).data;
+
+ // search image edge pixel position in case
+ // it is squashed vertically.
+ while ( py > sy ) {
+ alpha = data[ (py - 1) * 4 + 3 ];
+
+ if ( alpha === 0 ) {
+ ey = py;
+ } else {
+ sy = py;
+ }
+
+ py = (ey + sy) >> 1;
+ }
+
+ ratio = (py / ih);
+ return (ratio === 0) ? 1 : ratio;
+ }
+
+ // fix ie7 bug
+ // http://stackoverflow.com/questions/11929099/
+ // html5-canvas-drawimage-ratio-bug-ios
+ if ( Base.os.ios >= 7 ) {
+ return function( canvas, img, x, y, w, h ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ vertSquashRatio = detectVerticalSquash( img, iw, ih );
+
+ return canvas.getContext('2d').drawImage( img, 0, 0,
+ iw * vertSquashRatio, ih * vertSquashRatio,
+ x, y, w, h );
+ };
+ }
+
+ /**
+ * Detect subsampling in loaded image.
+ * In iOS, larger images than 2M pixels may be
+ * subsampled in rendering.
+ */
+ function detectSubsampling( img ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ canvas, ctx;
+
+ // subsampling may happen overmegapixel image
+ if ( iw * ih > 1024 * 1024 ) {
+ canvas = document.createElement('canvas');
+ canvas.width = canvas.height = 1;
+ ctx = canvas.getContext('2d');
+ ctx.drawImage( img, -iw + 1, 0 );
+
+ // subsampled image becomes half smaller in rendering size.
+ // check alpha channel value to confirm image is covering
+ // edge pixel or not. if alpha value is 0
+ // image is not covering, hence subsampled.
+ return ctx.getImageData( 0, 0, 1, 1 ).data[ 3 ] === 0;
+ } else {
+ return false;
+ }
+ }
+
+
+ return function( canvas, img, x, y, width, height ) {
+ var iw = img.naturalWidth,
+ ih = img.naturalHeight,
+ ctx = canvas.getContext('2d'),
+ subsampled = detectSubsampling( img ),
+ doSquash = this.type === 'image/jpeg',
+ d = 1024,
+ sy = 0,
+ dy = 0,
+ tmpCanvas, tmpCtx, vertSquashRatio, dw, dh, sx, dx;
+
+ if ( subsampled ) {
+ iw /= 2;
+ ih /= 2;
+ }
+
+ ctx.save();
+ tmpCanvas = document.createElement('canvas');
+ tmpCanvas.width = tmpCanvas.height = d;
+
+ tmpCtx = tmpCanvas.getContext('2d');
+ vertSquashRatio = doSquash ?
+ detectVerticalSquash( img, iw, ih ) : 1;
+
+ dw = Math.ceil( d * width / iw );
+ dh = Math.ceil( d * height / ih / vertSquashRatio );
+
+ while ( sy < ih ) {
+ sx = 0;
+ dx = 0;
+ while ( sx < iw ) {
+ tmpCtx.clearRect( 0, 0, d, d );
+ tmpCtx.drawImage( img, -sx, -sy );
+ ctx.drawImage( tmpCanvas, 0, 0, d, d,
+ x + dx, y + dy, dw, dh );
+ sx += d;
+ dx += dw;
+ }
+ sy += d;
+ dy += dh;
+ }
+ ctx.restore();
+ tmpCanvas = tmpCtx = null;
+ };
+ })()
+ });
+ });
- this.flashExec( 'FilePicker', 'init', copy );
- },
+ /**
+ * @fileOverview Transport
+ * @todo 支持chunked传输,优势:
+ * 可以将大文件分成小块,挨个传输,可以提高大文件成功率,当失败的时候,也只需要重传那小部分,
+ * 而不需要重头再传一次。另外断点续传也需要用chunked方式。
+ */
+ define('runtime/html5/transport',[
+ 'base',
+ 'runtime/html5/runtime'
+ ], function( Base, Html5Runtime ) {
+
+ var noop = Base.noop,
+ $ = Base.$;
+
+ return Html5Runtime.register( 'Transport', {
+ init: function() {
+ this._status = 0;
+ this._response = null;
+ },
+
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ formData, binary, fr;
+
+ if ( opts.sendAsBinary ) {
+ server += opts.attachInfoToQuery !== false ? ((/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData )) : '';
+
+ binary = blob.getSource();
+ } else {
+ formData = new FormData();
+ $.each( owner._formData, function( k, v ) {
+ formData.append( k, v );
+ });
+
+ formData.append( opts.fileVal, blob.getSource(),
+ opts.filename || owner._formData.name || '' );
+ }
+
+ if ( opts.withCredentials && 'withCredentials' in xhr ) {
+ xhr.open( opts.method, server, true );
+ xhr.withCredentials = true;
+ } else {
+ xhr.open( opts.method, server );
+ }
+
+ this._setRequestHeader( xhr, opts.headers );
+
+ if ( binary ) {
+ // 强制设置成 content-type 为文件流。
+ xhr.overrideMimeType &&
+ xhr.overrideMimeType('application/octet-stream');
+
+ // android直接发送blob会导致服务端接收到的是空文件。
+ // bug详情。
+ // https://code.google.com/p/android/issues/detail?id=39882
+ // 所以先用fileReader读取出来再通过arraybuffer的方式发送。
+ if ( Base.os.android ) {
+ fr = new FileReader();
+
+ fr.onload = function() {
+ xhr.send( this.result );
+ fr = fr.onload = null;
+ };
+
+ fr.readAsArrayBuffer( binary );
+ } else {
+ xhr.send( binary );
+ }
+ } else {
+ xhr.send( formData );
+ }
+ },
+
+ getResponse: function() {
+ return this._response;
+ },
+
+ getResponseAsJson: function() {
+ return this._parseJson( this._response );
+ },
+
+ getResponseHeaders: function() {
+ return this._headers;
+ },
+
+ getStatus: function() {
+ return this._status;
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ xhr.abort();
+
+ this._xhr = xhr = null;
+ }
+ },
+
+ destroy: function() {
+ this.abort();
+ },
+
+ _parseHeader: function(raw) {
+ var ret = {};
+
+ raw && raw.replace(/^([^\:]+):(.*)$/mg, function(_, key, value) {
+ ret[key.trim()] = value.trim();
+ });
+
+ return ret;
+ },
+
+ _initAjax: function() {
+ var me = this,
+ xhr = new XMLHttpRequest(),
+ opts = this.options;
+
+ if ( opts.withCredentials && !('withCredentials' in xhr) &&
+ typeof XDomainRequest !== 'undefined' ) {
+ xhr = new XDomainRequest();
+ }
+
+ xhr.upload.onprogress = function( e ) {
+ var percentage = 0;
+
+ if ( e.lengthComputable ) {
+ percentage = e.loaded / e.total;
+ }
+
+ return me.trigger( 'progress', percentage );
+ };
+
+ xhr.onreadystatechange = function() {
+
+ if ( xhr.readyState !== 4 ) {
+ return;
+ }
+
+ xhr.upload.onprogress = noop;
+ xhr.onreadystatechange = noop;
+ me._xhr = null;
+ me._status = xhr.status;
+
+ var separator = '|', // 分隔符
+ // 拼接的状态,在 widgets/upload.js 会有代码用到这个分隔符
+ status = separator + xhr.status +
+ separator + xhr.statusText;
+
+ if ( xhr.status >= 200 && xhr.status < 300 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger('load');
+ } else if ( xhr.status >= 500 && xhr.status < 600 ) {
+ me._response = xhr.responseText;
+ me._headers = me._parseHeader(xhr.getAllResponseHeaders());
+ return me.trigger( 'error', 'server' + status );
+ }
+
+
+ return me.trigger( 'error', me._status ? 'http' + status : 'abort' );
+ };
+
+ me._xhr = xhr;
+ return xhr;
+ },
+
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.setRequestHeader( key, val );
+ });
+ },
+
+ _parseJson: function( str ) {
+ var json;
+
+ try {
+ json = JSON.parse( str );
+ } catch ( ex ) {
+ json = {};
+ }
+
+ return json;
+ }
+ });
+ });
- destroy: function() {
- this.flashExec( 'FilePicker', 'destroy' );
- }
- });
+ /**
+ * @fileOverview Transport flash实现
+ */
+ define('runtime/html5/md5',[
+ 'runtime/html5/runtime'
+ ], function( FlashRuntime ) {
+
+ /*
+ * Fastest md5 implementation around (JKM md5)
+ * Credits: Joseph Myers
+ *
+ * @see http://www.myersdaily.org/joseph/javascript/md5-text.html
+ * @see http://jsperf.com/md5-shootout/7
+ */
+
+ /* this function is much faster,
+ so if possible we use it. Some IEs
+ are the only ones I know of that
+ need the idiotic second function,
+ generated by an if clause. */
+ var add32 = function (a, b) {
+ return (a + b) & 0xFFFFFFFF;
+ },
+
+ cmn = function (q, a, b, x, s, t) {
+ a = add32(add32(a, q), add32(x, t));
+ return add32((a << s) | (a >>> (32 - s)), b);
+ },
+
+ ff = function (a, b, c, d, x, s, t) {
+ return cmn((b & c) | ((~b) & d), a, b, x, s, t);
+ },
+
+ gg = function (a, b, c, d, x, s, t) {
+ return cmn((b & d) | (c & (~d)), a, b, x, s, t);
+ },
+
+ hh = function (a, b, c, d, x, s, t) {
+ return cmn(b ^ c ^ d, a, b, x, s, t);
+ },
+
+ ii = function (a, b, c, d, x, s, t) {
+ return cmn(c ^ (b | (~d)), a, b, x, s, t);
+ },
+
+ md5cycle = function (x, k) {
+ var a = x[0],
+ b = x[1],
+ c = x[2],
+ d = x[3];
+
+ a = ff(a, b, c, d, k[0], 7, -680876936);
+ d = ff(d, a, b, c, k[1], 12, -389564586);
+ c = ff(c, d, a, b, k[2], 17, 606105819);
+ b = ff(b, c, d, a, k[3], 22, -1044525330);
+ a = ff(a, b, c, d, k[4], 7, -176418897);
+ d = ff(d, a, b, c, k[5], 12, 1200080426);
+ c = ff(c, d, a, b, k[6], 17, -1473231341);
+ b = ff(b, c, d, a, k[7], 22, -45705983);
+ a = ff(a, b, c, d, k[8], 7, 1770035416);
+ d = ff(d, a, b, c, k[9], 12, -1958414417);
+ c = ff(c, d, a, b, k[10], 17, -42063);
+ b = ff(b, c, d, a, k[11], 22, -1990404162);
+ a = ff(a, b, c, d, k[12], 7, 1804603682);
+ d = ff(d, a, b, c, k[13], 12, -40341101);
+ c = ff(c, d, a, b, k[14], 17, -1502002290);
+ b = ff(b, c, d, a, k[15], 22, 1236535329);
+
+ a = gg(a, b, c, d, k[1], 5, -165796510);
+ d = gg(d, a, b, c, k[6], 9, -1069501632);
+ c = gg(c, d, a, b, k[11], 14, 643717713);
+ b = gg(b, c, d, a, k[0], 20, -373897302);
+ a = gg(a, b, c, d, k[5], 5, -701558691);
+ d = gg(d, a, b, c, k[10], 9, 38016083);
+ c = gg(c, d, a, b, k[15], 14, -660478335);
+ b = gg(b, c, d, a, k[4], 20, -405537848);
+ a = gg(a, b, c, d, k[9], 5, 568446438);
+ d = gg(d, a, b, c, k[14], 9, -1019803690);
+ c = gg(c, d, a, b, k[3], 14, -187363961);
+ b = gg(b, c, d, a, k[8], 20, 1163531501);
+ a = gg(a, b, c, d, k[13], 5, -1444681467);
+ d = gg(d, a, b, c, k[2], 9, -51403784);
+ c = gg(c, d, a, b, k[7], 14, 1735328473);
+ b = gg(b, c, d, a, k[12], 20, -1926607734);
+
+ a = hh(a, b, c, d, k[5], 4, -378558);
+ d = hh(d, a, b, c, k[8], 11, -2022574463);
+ c = hh(c, d, a, b, k[11], 16, 1839030562);
+ b = hh(b, c, d, a, k[14], 23, -35309556);
+ a = hh(a, b, c, d, k[1], 4, -1530992060);
+ d = hh(d, a, b, c, k[4], 11, 1272893353);
+ c = hh(c, d, a, b, k[7], 16, -155497632);
+ b = hh(b, c, d, a, k[10], 23, -1094730640);
+ a = hh(a, b, c, d, k[13], 4, 681279174);
+ d = hh(d, a, b, c, k[0], 11, -358537222);
+ c = hh(c, d, a, b, k[3], 16, -722521979);
+ b = hh(b, c, d, a, k[6], 23, 76029189);
+ a = hh(a, b, c, d, k[9], 4, -640364487);
+ d = hh(d, a, b, c, k[12], 11, -421815835);
+ c = hh(c, d, a, b, k[15], 16, 530742520);
+ b = hh(b, c, d, a, k[2], 23, -995338651);
+
+ a = ii(a, b, c, d, k[0], 6, -198630844);
+ d = ii(d, a, b, c, k[7], 10, 1126891415);
+ c = ii(c, d, a, b, k[14], 15, -1416354905);
+ b = ii(b, c, d, a, k[5], 21, -57434055);
+ a = ii(a, b, c, d, k[12], 6, 1700485571);
+ d = ii(d, a, b, c, k[3], 10, -1894986606);
+ c = ii(c, d, a, b, k[10], 15, -1051523);
+ b = ii(b, c, d, a, k[1], 21, -2054922799);
+ a = ii(a, b, c, d, k[8], 6, 1873313359);
+ d = ii(d, a, b, c, k[15], 10, -30611744);
+ c = ii(c, d, a, b, k[6], 15, -1560198380);
+ b = ii(b, c, d, a, k[13], 21, 1309151649);
+ a = ii(a, b, c, d, k[4], 6, -145523070);
+ d = ii(d, a, b, c, k[11], 10, -1120210379);
+ c = ii(c, d, a, b, k[2], 15, 718787259);
+ b = ii(b, c, d, a, k[9], 21, -343485551);
+
+ x[0] = add32(a, x[0]);
+ x[1] = add32(b, x[1]);
+ x[2] = add32(c, x[2]);
+ x[3] = add32(d, x[3]);
+ },
+
+ /* there needs to be support for Unicode here,
+ * unless we pretend that we can redefine the MD-5
+ * algorithm for multi-byte characters (perhaps
+ * by adding every four 16-bit characters and
+ * shortening the sum to 32 bits). Otherwise
+ * I suggest performing MD-5 as if every character
+ * was two bytes--e.g., 0040 0025 = @%--but then
+ * how will an ordinary MD-5 sum be matched?
+ * There is no way to standardize text to something
+ * like UTF-8 before transformation; speed cost is
+ * utterly prohibitive. The JavaScript standard
+ * itself needs to look at this: it should start
+ * providing access to strings as preformed UTF-8
+ * 8-bit unsigned value arrays.
+ */
+ md5blk = function (s) {
+ var md5blks = [],
+ i; /* Andy King said do it this way. */
+
+ for (i = 0; i < 64; i += 4) {
+ md5blks[i >> 2] = s.charCodeAt(i) + (s.charCodeAt(i + 1) << 8) + (s.charCodeAt(i + 2) << 16) + (s.charCodeAt(i + 3) << 24);
+ }
+ return md5blks;
+ },
+
+ md5blk_array = function (a) {
+ var md5blks = [],
+ i; /* Andy King said do it this way. */
+
+ for (i = 0; i < 64; i += 4) {
+ md5blks[i >> 2] = a[i] + (a[i + 1] << 8) + (a[i + 2] << 16) + (a[i + 3] << 24);
+ }
+ return md5blks;
+ },
+
+ md51 = function (s) {
+ var n = s.length,
+ state = [1732584193, -271733879, -1732584194, 271733878],
+ i,
+ length,
+ tail,
+ tmp,
+ lo,
+ hi;
+
+ for (i = 64; i <= n; i += 64) {
+ md5cycle(state, md5blk(s.substring(i - 64, i)));
+ }
+ s = s.substring(i - 64);
+ length = s.length;
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= s.charCodeAt(i) << ((i % 4) << 3);
+ }
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Beware that the final length might not fit in 32 bits so we take care of that
+ tmp = n * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+
+ md5cycle(state, tail);
+ return state;
+ },
+
+ md51_array = function (a) {
+ var n = a.length,
+ state = [1732584193, -271733879, -1732584194, 271733878],
+ i,
+ length,
+ tail,
+ tmp,
+ lo,
+ hi;
+
+ for (i = 64; i <= n; i += 64) {
+ md5cycle(state, md5blk_array(a.subarray(i - 64, i)));
+ }
+
+ // Not sure if it is a bug, however IE10 will always produce a sub array of length 1
+ // containing the last element of the parent array if the sub array specified starts
+ // beyond the length of the parent array - weird.
+ // https://connect.microsoft.com/IE/feedback/details/771452/typed-array-subarray-issue
+ a = (i - 64) < n ? a.subarray(i - 64) : new Uint8Array(0);
+
+ length = a.length;
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= a[i] << ((i % 4) << 3);
+ }
+
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Beware that the final length might not fit in 32 bits so we take care of that
+ tmp = n * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+
+ md5cycle(state, tail);
+
+ return state;
+ },
+
+ hex_chr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'],
+
+ rhex = function (n) {
+ var s = '',
+ j;
+ for (j = 0; j < 4; j += 1) {
+ s += hex_chr[(n >> (j * 8 + 4)) & 0x0F] + hex_chr[(n >> (j * 8)) & 0x0F];
+ }
+ return s;
+ },
+
+ hex = function (x) {
+ var i;
+ for (i = 0; i < x.length; i += 1) {
+ x[i] = rhex(x[i]);
+ }
+ return x.join('');
+ },
+
+ md5 = function (s) {
+ return hex(md51(s));
+ },
+
+
+
+ ////////////////////////////////////////////////////////////////////////////
+
+ /**
+ * SparkMD5 OOP implementation.
+ *
+ * Use this class to perform an incremental md5, otherwise use the
+ * static methods instead.
+ */
+ SparkMD5 = function () {
+ // call reset to init the instance
+ this.reset();
+ };
+
+
+ // In some cases the fast add32 function cannot be used..
+ if (md5('hello') !== '5d41402abc4b2a76b9719d911017c592') {
+ add32 = function (x, y) {
+ var lsw = (x & 0xFFFF) + (y & 0xFFFF),
+ msw = (x >> 16) + (y >> 16) + (lsw >> 16);
+ return (msw << 16) | (lsw & 0xFFFF);
+ };
+ }
+
+
+ /**
+ * Appends a string.
+ * A conversion will be applied if an utf8 string is detected.
+ *
+ * @param {String} str The string to be appended
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.append = function (str) {
+ // converts the string to utf8 bytes if necessary
+ if (/[\u0080-\uFFFF]/.test(str)) {
+ str = unescape(encodeURIComponent(str));
+ }
+
+ // then append as binary
+ this.appendBinary(str);
+
+ return this;
+ };
+
+ /**
+ * Appends a binary string.
+ *
+ * @param {String} contents The binary string to be appended
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.appendBinary = function (contents) {
+ this._buff += contents;
+ this._length += contents.length;
+
+ var length = this._buff.length,
+ i;
+
+ for (i = 64; i <= length; i += 64) {
+ md5cycle(this._state, md5blk(this._buff.substring(i - 64, i)));
+ }
+
+ this._buff = this._buff.substr(i - 64);
+
+ return this;
+ };
+
+ /**
+ * Finishes the incremental computation, reseting the internal state and
+ * returning the result.
+ * Use the raw parameter to obtain the raw result instead of the hex one.
+ *
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.prototype.end = function (raw) {
+ var buff = this._buff,
+ length = buff.length,
+ i,
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
+ ret;
+
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= buff.charCodeAt(i) << ((i % 4) << 3);
+ }
+
+ this._finish(tail, length);
+ ret = !!raw ? this._state : hex(this._state);
+
+ this.reset();
+
+ return ret;
+ };
+
+ /**
+ * Finish the final calculation based on the tail.
+ *
+ * @param {Array} tail The tail (will be modified)
+ * @param {Number} length The length of the remaining buffer
+ */
+ SparkMD5.prototype._finish = function (tail, length) {
+ var i = length,
+ tmp,
+ lo,
+ hi;
+
+ tail[i >> 2] |= 0x80 << ((i % 4) << 3);
+ if (i > 55) {
+ md5cycle(this._state, tail);
+ for (i = 0; i < 16; i += 1) {
+ tail[i] = 0;
+ }
+ }
+
+ // Do the final computation based on the tail and length
+ // Beware that the final length may not fit in 32 bits so we take care of that
+ tmp = this._length * 8;
+ tmp = tmp.toString(16).match(/(.*?)(.{0,8})$/);
+ lo = parseInt(tmp[2], 16);
+ hi = parseInt(tmp[1], 16) || 0;
+
+ tail[14] = lo;
+ tail[15] = hi;
+ md5cycle(this._state, tail);
+ };
+
+ /**
+ * Resets the internal state of the computation.
+ *
+ * @return {SparkMD5} The instance itself
+ */
+ SparkMD5.prototype.reset = function () {
+ this._buff = "";
+ this._length = 0;
+ this._state = [1732584193, -271733879, -1732584194, 271733878];
+
+ return this;
+ };
+
+ /**
+ * Releases memory used by the incremental buffer and other aditional
+ * resources. If you plan to use the instance again, use reset instead.
+ */
+ SparkMD5.prototype.destroy = function () {
+ delete this._state;
+ delete this._buff;
+ delete this._length;
+ };
+
+
+ /**
+ * Performs the md5 hash on a string.
+ * A conversion will be applied if utf8 string is detected.
+ *
+ * @param {String} str The string
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.hash = function (str, raw) {
+ // converts the string to utf8 bytes if necessary
+ if (/[\u0080-\uFFFF]/.test(str)) {
+ str = unescape(encodeURIComponent(str));
+ }
+
+ var hash = md51(str);
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ /**
+ * Performs the md5 hash on a binary string.
+ *
+ * @param {String} content The binary string
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.hashBinary = function (content, raw) {
+ var hash = md51(content);
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ /**
+ * SparkMD5 OOP implementation for array buffers.
+ *
+ * Use this class to perform an incremental md5 ONLY for array buffers.
+ */
+ SparkMD5.ArrayBuffer = function () {
+ // call reset to init the instance
+ this.reset();
+ };
+
+ ////////////////////////////////////////////////////////////////////////////
+
+ /**
+ * Appends an array buffer.
+ *
+ * @param {ArrayBuffer} arr The array to be appended
+ *
+ * @return {SparkMD5.ArrayBuffer} The instance itself
+ */
+ SparkMD5.ArrayBuffer.prototype.append = function (arr) {
+ // TODO: we could avoid the concatenation here but the algorithm would be more complex
+ // if you find yourself needing extra performance, please make a PR.
+ var buff = this._concatArrayBuffer(this._buff, arr),
+ length = buff.length,
+ i;
+
+ this._length += arr.byteLength;
+
+ for (i = 64; i <= length; i += 64) {
+ md5cycle(this._state, md5blk_array(buff.subarray(i - 64, i)));
+ }
+
+ // Avoids IE10 weirdness (documented above)
+ this._buff = (i - 64) < length ? buff.subarray(i - 64) : new Uint8Array(0);
+
+ return this;
+ };
+
+ /**
+ * Finishes the incremental computation, reseting the internal state and
+ * returning the result.
+ * Use the raw parameter to obtain the raw result instead of the hex one.
+ *
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.ArrayBuffer.prototype.end = function (raw) {
+ var buff = this._buff,
+ length = buff.length,
+ tail = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
+ i,
+ ret;
+
+ for (i = 0; i < length; i += 1) {
+ tail[i >> 2] |= buff[i] << ((i % 4) << 3);
+ }
+
+ this._finish(tail, length);
+ ret = !!raw ? this._state : hex(this._state);
+
+ this.reset();
+
+ return ret;
+ };
+
+ SparkMD5.ArrayBuffer.prototype._finish = SparkMD5.prototype._finish;
+
+ /**
+ * Resets the internal state of the computation.
+ *
+ * @return {SparkMD5.ArrayBuffer} The instance itself
+ */
+ SparkMD5.ArrayBuffer.prototype.reset = function () {
+ this._buff = new Uint8Array(0);
+ this._length = 0;
+ this._state = [1732584193, -271733879, -1732584194, 271733878];
+
+ return this;
+ };
+
+ /**
+ * Releases memory used by the incremental buffer and other aditional
+ * resources. If you plan to use the instance again, use reset instead.
+ */
+ SparkMD5.ArrayBuffer.prototype.destroy = SparkMD5.prototype.destroy;
+
+ /**
+ * Concats two array buffers, returning a new one.
+ *
+ * @param {ArrayBuffer} first The first array buffer
+ * @param {ArrayBuffer} second The second array buffer
+ *
+ * @return {ArrayBuffer} The new array buffer
+ */
+ SparkMD5.ArrayBuffer.prototype._concatArrayBuffer = function (first, second) {
+ var firstLength = first.length,
+ result = new Uint8Array(firstLength + second.byteLength);
+
+ result.set(first);
+ result.set(new Uint8Array(second), firstLength);
+
+ return result;
+ };
+
+ /**
+ * Performs the md5 hash on an array buffer.
+ *
+ * @param {ArrayBuffer} arr The array buffer
+ * @param {Boolean} raw True to get the raw result, false to get the hex result
+ *
+ * @return {String|Array} The result
+ */
+ SparkMD5.ArrayBuffer.hash = function (arr, raw) {
+ var hash = md51_array(new Uint8Array(arr));
+
+ return !!raw ? hash : hex(hash);
+ };
+
+ return FlashRuntime.register( 'Md5', {
+ init: function() {
+ // do nothing.
+ },
+
+ loadFromBlob: function( file ) {
+ var blob = file.getSource(),
+ chunkSize = 2 * 1024 * 1024,
+ chunks = Math.ceil( blob.size / chunkSize ),
+ chunk = 0,
+ owner = this.owner,
+ spark = new SparkMD5.ArrayBuffer(),
+ me = this,
+ blobSlice = blob.mozSlice || blob.webkitSlice || blob.slice,
+ loadNext, fr;
+
+ fr = new FileReader();
+
+ loadNext = function() {
+ var start, end;
+
+ start = chunk * chunkSize;
+ end = Math.min( start + chunkSize, blob.size );
+
+ fr.onload = function( e ) {
+ spark.append( e.target.result );
+ owner.trigger( 'progress', {
+ total: file.size,
+ loaded: end
+ });
+ };
+
+ fr.onloadend = function() {
+ fr.onloadend = fr.onload = null;
+
+ if ( ++chunk < chunks ) {
+ setTimeout( loadNext, 1 );
+ } else {
+ setTimeout(function(){
+ owner.trigger('load');
+ me.result = spark.end();
+ loadNext = file = blob = spark = null;
+ owner.trigger('complete');
+ }, 50 );
+ }
+ };
+
+ fr.readAsArrayBuffer( blobSlice.call( blob, start, end ) );
+ };
+
+ loadNext();
+ },
+
+ getResult: function() {
+ return this.result;
+ }
+ });
});
- /**
- * @fileOverview 图片压缩
- */
- define('runtime/flash/image',[
- 'runtime/flash/runtime'
- ], function( FlashRuntime ) {
-
- return FlashRuntime.register( 'Image', {
- // init: function( options ) {
- // var owner = this.owner;
-
- // this.flashExec( 'Image', 'init', options );
- // owner.on( 'load', function() {
- // debugger;
- // });
- // },
-
- loadFromBlob: function( blob ) {
- var owner = this.owner;
-
- owner.info() && this.flashExec( 'Image', 'info', owner.info() );
- owner.meta() && this.flashExec( 'Image', 'meta', owner.meta() );
-
- this.flashExec( 'Image', 'loadFromBlob', blob.uid );
- }
- });
+ /**
+ * @fileOverview FlashRuntime
+ */
+ define('runtime/flash/runtime',[
+ 'base',
+ 'runtime/runtime',
+ 'runtime/compbase'
+ ], function( Base, Runtime, CompBase ) {
+
+ var $ = Base.$,
+ type = 'flash',
+ components = {};
+
+
+ function getFlashVersion() {
+ var version;
+
+ try {
+ version = navigator.plugins[ 'Shockwave Flash' ];
+ version = version.description;
+ } catch ( ex ) {
+ try {
+ version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash')
+ .GetVariable('$version');
+ } catch ( ex2 ) {
+ version = '0.0';
+ }
+ }
+ version = version.match( /\d+/g );
+ return parseFloat( version[ 0 ] + '.' + version[ 1 ], 10 );
+ }
+
+ function FlashRuntime() {
+ var pool = {},
+ clients = {},
+ destroy = this.destroy,
+ me = this,
+ jsreciver = Base.guid('webuploader_');
+
+ Runtime.apply( me, arguments );
+ me.type = type;
+
+
+ // 这个方法的调用者,实际上是RuntimeClient
+ me.exec = function( comp, fn/*, args...*/ ) {
+ var client = this,
+ uid = client.uid,
+ args = Base.slice( arguments, 2 ),
+ instance;
+
+ clients[ uid ] = client;
+
+ if ( components[ comp ] ) {
+ if ( !pool[ uid ] ) {
+ pool[ uid ] = new components[ comp ]( client, me );
+ }
+
+ instance = pool[ uid ];
+
+ if ( instance[ fn ] ) {
+ return instance[ fn ].apply( instance, args );
+ }
+ }
+
+ return me.flashExec.apply( client, arguments );
+ };
+
+ function handler( evt, obj ) {
+ var type = evt.type || evt,
+ parts, uid;
+
+ parts = type.split('::');
+ uid = parts[ 0 ];
+ type = parts[ 1 ];
+
+ // console.log.apply( console, arguments );
+
+ if ( type === 'Ready' && uid === me.uid ) {
+ me.trigger('ready');
+ } else if ( clients[ uid ] ) {
+ clients[ uid ].trigger( type.toLowerCase(), evt, obj );
+ }
+
+ // Base.log( evt, obj );
+ }
+
+ // flash的接受器。
+ window[ jsreciver ] = function() {
+ var args = arguments;
+
+ // 为了能捕获得到。
+ setTimeout(function() {
+ handler.apply( null, args );
+ }, 1 );
+ };
+
+ this.jsreciver = jsreciver;
+
+ this.destroy = function() {
+ // @todo 删除池子中的所有实例
+ return destroy && destroy.apply( this, arguments );
+ };
+
+ this.flashExec = function( comp, fn ) {
+ var flash = me.getFlash(),
+ args = Base.slice( arguments, 2 );
+
+ return flash.exec( this.uid, comp, fn, args );
+ };
+
+ // @todo
+ }
+
+ Base.inherits( Runtime, {
+ constructor: FlashRuntime,
+
+ init: function() {
+ var container = this.getContainer(),
+ opts = this.options,
+ html;
+
+ // if not the minimal height, shims are not initialized
+ // in older browsers (e.g FF3.6, IE6,7,8, Safari 4.0,5.0, etc)
+ container.css({
+ position: 'absolute',
+ top: '-8px',
+ left: '-8px',
+ width: '9px',
+ height: '9px',
+ overflow: 'hidden'
+ });
+
+ // insert flash object
+ html = '';
+
+ container.html( html );
+ },
+
+ getFlash: function() {
+ if ( this._flash ) {
+ return this._flash;
+ }
+
+ this._flash = $( '#' + this.uid ).get( 0 );
+ return this._flash;
+ }
+
+ });
+
+ FlashRuntime.register = function( name, component ) {
+ component = components[ name ] = Base.inherits( CompBase, $.extend({
+
+ // @todo fix this later
+ flashExec: function() {
+ var owner = this.owner,
+ runtime = this.getRuntime();
+
+ return runtime.flashExec.apply( owner, arguments );
+ }
+ }, component ) );
+
+ return component;
+ };
+
+ if ( getFlashVersion() >= 11.4 ) {
+ Runtime.addRuntime( type, FlashRuntime );
+ }
+
+ return FlashRuntime;
});
- /**
- * @fileOverview Transport flash实现
- */
- define('runtime/flash/transport',[
- 'base',
- 'runtime/flash/runtime',
- 'runtime/client'
- ], function( Base, FlashRuntime, RuntimeClient ) {
- var $ = Base.$;
-
- return FlashRuntime.register( 'Transport', {
- init: function() {
- this._status = 0;
- this._response = null;
- this._responseJson = null;
- },
-
- send: function() {
- var owner = this.owner,
- opts = this.options,
- xhr = this._initAjax(),
- blob = owner._blob,
- server = opts.server,
- binary;
-
- xhr.connectRuntime( blob.ruid );
-
- if ( opts.sendAsBinary ) {
- server += (/\?/.test( server ) ? '&' : '?') +
- $.param( owner._formData );
-
- binary = blob.uid;
- } else {
- $.each( owner._formData, function( k, v ) {
- xhr.exec( 'append', k, v );
- });
-
- xhr.exec( 'appendBlob', opts.fileVal, blob.uid,
- opts.filename || owner._formData.name || '' );
- }
-
- this._setRequestHeader( xhr, opts.headers );
- xhr.exec( 'send', {
- method: opts.method,
- url: server,
- forceURLStream: opts.forceURLStream,
- mimeType: 'application/octet-stream'
- }, binary );
- },
-
- getStatus: function() {
- return this._status;
- },
-
- getResponse: function() {
- return this._response || '';
- },
-
- getResponseAsJson: function() {
- return this._responseJson;
- },
-
- getResponseHeaders: function() {
- // flash 暂不支持
- return {};
- },
-
- abort: function() {
- var xhr = this._xhr;
-
- if ( xhr ) {
- xhr.exec('abort');
- xhr.destroy();
- this._xhr = xhr = null;
- }
- },
-
- destroy: function() {
- this.abort();
- },
-
- _initAjax: function() {
- var me = this,
- xhr = new RuntimeClient('XMLHttpRequest');
-
- xhr.on( 'uploadprogress progress', function( e ) {
- var percent = e.loaded / e.total;
- percent = Math.min( 1, Math.max( 0, percent ) );
- return me.trigger( 'progress', percent );
- });
-
- xhr.on( 'load', function() {
- var status = xhr.exec('getStatus'),
- readBody = false,
- err = '',
- p;
-
- xhr.off();
- me._xhr = null;
-
- if ( status >= 200 && status < 300 ) {
- readBody = true;
- } else if ( status >= 500 && status < 600 ) {
- readBody = true;
- err = 'server-'+status;
- } else {
- err = 'http-'+status;
- }
-
- if ( readBody ) {
- me._response = xhr.exec('getResponse');
- me._response = decodeURIComponent( me._response );
-
- // flash 处理可能存在 bug, 没辙只能靠 js 了
- // try {
- // me._responseJson = xhr.exec('getResponseAsJson');
- // } catch ( error ) {
-
- p = function( s ) {
- try {
- if (window.JSON && window.JSON.parse) {
- return JSON.parse(s);
- }
-
- return new Function('return ' + s).call();
- } catch ( err ) {
- return {};
- }
- };
- me._responseJson = me._response ? p(me._response) : {};
-
- // }
- }
-
- xhr.destroy();
- xhr = null;
-
- return err ? me.trigger( 'error', err ) : me.trigger('load');
- });
-
- xhr.on( 'error', function() {
- var status = xhr.exec('getStatus'),err = status?'http-'+status:'http';
- xhr.off();
- me._xhr = null;
- me.trigger( 'error', err );
- });
-
- me._xhr = xhr;
- return xhr;
- },
-
- _setRequestHeader: function( xhr, headers ) {
- $.each( headers, function( key, val ) {
- xhr.exec( 'setRequestHeader', key, val );
- });
- }
- });
+ /**
+ * @fileOverview FilePicker
+ */
+ define('runtime/flash/filepicker',[
+ 'base',
+ 'runtime/flash/runtime'
+ ], function( Base, FlashRuntime ) {
+ var $ = Base.$;
+
+ return FlashRuntime.register( 'FilePicker', {
+ init: function( opts ) {
+ var copy = $.extend({}, opts ),
+ len, i;
+
+ // 修复Flash再没有设置title的情况下无法弹出flash文件选择框的bug.
+ len = copy.accept && copy.accept.length;
+ for ( i = 0; i < len; i++ ) {
+ if ( !copy.accept[ i ].title ) {
+ copy.accept[ i ].title = 'Files';
+ }
+ }
+
+ delete copy.button;
+ delete copy.id;
+ delete copy.container;
+
+ this.flashExec( 'FilePicker', 'init', copy );
+ },
+
+ destroy: function() {
+ this.flashExec( 'FilePicker', 'destroy' );
+ }
+ });
});
-
- /**
- * @fileOverview Blob Html实现
- */
- define('runtime/flash/blob',[
- 'runtime/flash/runtime',
- 'lib/blob'
- ], function( FlashRuntime, Blob ) {
-
- return FlashRuntime.register( 'Blob', {
- slice: function( start, end ) {
- var blob = this.flashExec( 'Blob', 'slice', start, end );
-
- return new Blob( this.getRuid(), blob );
- }
- });
+ /**
+ * @fileOverview 图片压缩
+ */
+ define('runtime/flash/image',[
+ 'runtime/flash/runtime'
+ ], function( FlashRuntime ) {
+
+ return FlashRuntime.register( 'Image', {
+ // init: function( options ) {
+ // var owner = this.owner;
+
+ // this.flashExec( 'Image', 'init', options );
+ // owner.on( 'load', function() {
+ // debugger;
+ // });
+ // },
+
+ loadFromBlob: function( blob ) {
+ var owner = this.owner;
+
+ owner.info() && this.flashExec( 'Image', 'info', owner.info() );
+ owner.meta() && this.flashExec( 'Image', 'meta', owner.meta() );
+
+ this.flashExec( 'Image', 'loadFromBlob', blob.uid );
+ }
+ });
});
- /**
- * @fileOverview Md5 flash实现
- */
- define('runtime/flash/md5',[
- 'runtime/flash/runtime'
- ], function( FlashRuntime ) {
-
- return FlashRuntime.register( 'Md5', {
- init: function() {
- // do nothing.
- },
+ /**
+ * @fileOverview Transport flash实现
+ */
+ define('runtime/flash/transport',[
+ 'base',
+ 'runtime/flash/runtime',
+ 'runtime/client'
+ ], function( Base, FlashRuntime, RuntimeClient ) {
+ var $ = Base.$;
+
+ return FlashRuntime.register( 'Transport', {
+ init: function() {
+ this._status = 0;
+ this._response = null;
+ this._responseJson = null;
+ },
+
+ send: function() {
+ var owner = this.owner,
+ opts = this.options,
+ xhr = this._initAjax(),
+ blob = owner._blob,
+ server = opts.server,
+ binary;
+
+ xhr.connectRuntime( blob.ruid );
+
+ if ( opts.sendAsBinary ) {
+ server += (/\?/.test( server ) ? '&' : '?') +
+ $.param( owner._formData );
+
+ binary = blob.uid;
+ } else {
+ $.each( owner._formData, function( k, v ) {
+ xhr.exec( 'append', k, v );
+ });
+
+ xhr.exec( 'appendBlob', opts.fileVal, blob.uid,
+ opts.filename || owner._formData.name || '' );
+ }
+
+ this._setRequestHeader( xhr, opts.headers );
+ xhr.exec( 'send', {
+ method: opts.method,
+ url: server,
+ forceURLStream: opts.forceURLStream,
+ mimeType: 'application/octet-stream'
+ }, binary );
+ },
+
+ getStatus: function() {
+ return this._status;
+ },
+
+ getResponse: function() {
+ return this._response || '';
+ },
+
+ getResponseAsJson: function() {
+ return this._responseJson;
+ },
+
+ getResponseHeaders: function() {
+ // flash 暂不支持
+ return {};
+ },
+
+ abort: function() {
+ var xhr = this._xhr;
+
+ if ( xhr ) {
+ xhr.exec('abort');
+ xhr.destroy();
+ this._xhr = xhr = null;
+ }
+ },
+
+ destroy: function() {
+ this.abort();
+ },
+
+ _initAjax: function() {
+ var me = this,
+ xhr = new RuntimeClient('XMLHttpRequest');
+
+ xhr.on( 'uploadprogress progress', function( e ) {
+ var percent = e.loaded / e.total;
+ percent = Math.min( 1, Math.max( 0, percent ) );
+ return me.trigger( 'progress', percent );
+ });
+
+ xhr.on( 'load', function() {
+ var status = xhr.exec('getStatus'),
+ readBody = false,
+ err = '',
+ p;
+
+ xhr.off();
+ me._xhr = null;
+
+ if ( status >= 200 && status < 300 ) {
+ readBody = true;
+ } else if ( status >= 500 && status < 600 ) {
+ readBody = true;
+ err = 'server-'+status;
+ } else {
+ err = 'http-'+status;
+ }
+
+ if ( readBody ) {
+ me._response = xhr.exec('getResponse');
+ me._response = decodeURIComponent( me._response );
+
+ // flash 处理可能存在 bug, 没辙只能靠 js 了
+ // try {
+ // me._responseJson = xhr.exec('getResponseAsJson');
+ // } catch ( error ) {
+
+ p = function( s ) {
+ try {
+ if (window.JSON && window.JSON.parse) {
+ return JSON.parse(s);
+ }
+
+ return new Function('return ' + s).call();
+ } catch ( err ) {
+ return {};
+ }
+ };
+ me._responseJson = me._response ? p(me._response) : {};
+
+ // }
+ }
+
+ xhr.destroy();
+ xhr = null;
+
+ return err ? me.trigger( 'error', err ) : me.trigger('load');
+ });
+
+ xhr.on( 'error', function() {
+ var status = xhr.exec('getStatus'),err = status?'http-'+status:'http';
+ xhr.off();
+ me._xhr = null;
+ me.trigger( 'error', err );
+ });
+
+ me._xhr = xhr;
+ return xhr;
+ },
+
+ _setRequestHeader: function( xhr, headers ) {
+ $.each( headers, function( key, val ) {
+ xhr.exec( 'setRequestHeader', key, val );
+ });
+ }
+ });
+ });
- loadFromBlob: function( blob ) {
- return this.flashExec( 'Md5', 'loadFromBlob', blob.uid );
- }
- });
+ /**
+ * @fileOverview Blob Html实现
+ */
+ define('runtime/flash/blob',[
+ 'runtime/flash/runtime',
+ 'lib/blob'
+ ], function( FlashRuntime, Blob ) {
+
+ return FlashRuntime.register( 'Blob', {
+ slice: function( start, end ) {
+ var blob = this.flashExec( 'Blob', 'slice', start, end );
+
+ return new Blob( this.getRuid(), blob );
+ }
+ });
});
- /**
- * @fileOverview 完全版本。
- */
- define('preset/all',[
- 'base',
-
- // widgets
- 'widgets/filednd',
- 'widgets/filepaste',
- 'widgets/filepicker',
- 'widgets/image',
- 'widgets/queue',
- 'widgets/runtime',
- 'widgets/upload',
- 'widgets/validator',
- 'widgets/md5',
-
- // runtimes
- // html5
- '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',
-
- // flash
- 'runtime/flash/filepicker',
- 'runtime/flash/image',
- 'runtime/flash/transport',
- 'runtime/flash/blob',
- 'runtime/flash/md5'
- ], function( Base ) {
- return Base;
+ /**
+ * @fileOverview Md5 flash实现
+ */
+ define('runtime/flash/md5',[
+ 'runtime/flash/runtime'
+ ], function( FlashRuntime ) {
+
+ return FlashRuntime.register( 'Md5', {
+ init: function() {
+ // do nothing.
+ },
+
+ loadFromBlob: function( blob ) {
+ return this.flashExec( 'Md5', 'loadFromBlob', blob.uid );
+ }
+ });
});
- /**
- * @fileOverview 日志组件,主要用来收集错误信息,可以帮助 webuploader 更好的定位问题和发展。
- *
- * 如果您不想要启用此功能,请在打包的时候去掉 log 模块。
- *
- * 或者可以在初始化的时候通过 options.disableWidgets 属性禁用。
- *
- * 如:
- * WebUploader.create({
- * ...
- *
- * disableWidgets: 'log',
- *
- * ...
- * })
- */
- define('widgets/log',[
- 'base',
- 'uploader',
- 'widgets/widget'
- ], function( Base, Uploader ) {
- var $ = Base.$,
- logUrl = ' http://static.tieba.baidu.com/tb/pms/img/st.gif??',
- product = (location.hostname || location.host || 'protected').toLowerCase(),
-
- // 只针对 baidu 内部产品用户做统计功能。
- enable = product && /baidu/i.exec(product),
- base;
-
- if (!enable) {
- return;
- }
-
- base = {
- dv: 3,
- master: 'webuploader',
- online: /test/.exec(product) ? 0 : 1,
- module: '',
- product: product,
- type: 0
- };
-
- function send(data) {
- var obj = $.extend({}, base, data),
- url = logUrl.replace(/^(.*)\?/, '$1' + $.param( obj )),
- image = new Image();
-
- image.src = url;
- }
-
- return Uploader.register({
- name: 'log',
-
- init: function() {
- var owner = this.owner,
- count = 0,
- size = 0;
-
- owner
- .on('error', function(code) {
- send({
- type: 2,
- c_error_code: code
- });
- })
- .on('uploadError', function(file, reason) {
- send({
- type: 2,
- c_error_code: 'UPLOAD_ERROR',
- c_reason: '' + reason
- });
- })
- .on('uploadComplete', function(file) {
- count++;
- size += file.size;
- }).
- on('uploadFinished', function() {
- send({
- c_count: count,
- c_size: size
- });
- count = size = 0;
- });
-
- send({
- c_usage: 1
- });
- }
- });
+ /**
+ * @fileOverview 完全版本。
+ */
+ define('preset/all',[
+ 'base',
+
+ // widgets
+ 'widgets/filednd',
+ 'widgets/filepaste',
+ 'widgets/filepicker',
+ 'widgets/image',
+ 'widgets/queue',
+ 'widgets/runtime',
+ 'widgets/upload',
+ 'widgets/validator',
+ 'widgets/md5',
+
+ // runtimes
+ // html5
+ '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',
+
+ // flash
+ 'runtime/flash/filepicker',
+ 'runtime/flash/image',
+ 'runtime/flash/transport',
+ 'runtime/flash/blob',
+ 'runtime/flash/md5'
+ ], function( Base ) {
+ return Base;
});
- /**
- * @fileOverview Uploader上传类
- */
- define('webuploader',[
- 'preset/all',
- 'widgets/log'
- ], function( preset ) {
- return preset;
+ /**
+ * @fileOverview 日志组件,主要用来收集错误信息,可以帮助 webuploader 更好的定位问题和发展。
+ *
+ * 如果您不想要启用此功能,请在打包的时候去掉 log 模块。
+ *
+ * 或者可以在初始化的时候通过 options.disableWidgets 属性禁用。
+ *
+ * 如:
+ * WebUploader.create({
+ * ...
+ *
+ * disableWidgets: 'log',
+ *
+ * ...
+ * })
+ */
+ define('widgets/log',[
+ 'base',
+ 'uploader',
+ 'widgets/widget'
+ ], function( Base, Uploader ) {
+ var $ = Base.$,
+ logUrl = ' http://static.tieba.baidu.com/tb/pms/img/st.gif??',
+ product = (location.hostname || location.host || 'protected').toLowerCase(),
+
+ // 只针对 baidu 内部产品用户做统计功能。
+ enable = product && /baidu/i.exec(product),
+ base;
+
+ if (!enable) {
+ return;
+ }
+
+ base = {
+ dv: 3,
+ master: 'webuploader',
+ online: /test/.exec(product) ? 0 : 1,
+ module: '',
+ product: product,
+ type: 0
+ };
+
+ function send(data) {
+ var obj = $.extend({}, base, data),
+ url = logUrl.replace(/^(.*)\?/, '$1' + $.param( obj )),
+ image = new Image();
+
+ image.src = url;
+ }
+
+ return Uploader.register({
+ name: 'log',
+
+ init: function() {
+ var owner = this.owner,
+ count = 0,
+ size = 0;
+
+ owner
+ .on('error', function(code) {
+ send({
+ type: 2,
+ c_error_code: code
+ });
+ })
+ .on('uploadError', function(file, reason) {
+ send({
+ type: 2,
+ c_error_code: 'UPLOAD_ERROR',
+ c_reason: '' + reason
+ });
+ })
+ .on('uploadComplete', function(file) {
+ count++;
+ size += file.size;
+ }).
+ on('uploadFinished', function() {
+ send({
+ c_count: count,
+ c_size: size
+ });
+ count = size = 0;
+ });
+
+ send({
+ c_usage: 1
+ });
+ }
+ });
});
- return require('webuploader');
-});
+ /**
+ * @fileOverview Uploader上传类
+ */
+ define('webuploader',[
+ 'preset/all',
+ 'widgets/log'
+ ], function( preset ) {
+ return preset;
+ });
+ return require('webuploader');
+});
diff --git a/package.json b/package.json
index e9102edcd..f34223d35 100644
--- a/package.json
+++ b/package.json
@@ -1,10 +1,11 @@
{
- "name": "WebUploader",
- "version": "0.1.8-alpha",
+ "name": "webuploader",
+ "version": "0.0.3",
"description": "WebUploader是一个简单的以Html5为主,Flash为辅的现代文件上传组件。在现代的浏览器里面能充分发挥html5的优势,同时又不摒弃主流IE浏览器,延用原来的Flash运行时。两套运行时,同样的调用方式,可供用户任意选用。WebUploader采用大文件分片并发上传,极大的提高了文件上传效率。",
"repository": {
"type": "git",
- "url": "https://github.com/fex-team/webuploader.git"
+ "url": "https://github.com/joeth/webuploader.git"
+
},
"keywords": [
"chunk",
@@ -12,9 +13,8 @@
"html5",
"flash"
],
- "author": "fex-team",
+ "author": "joeth",
"license": "BSD",
- "gitHead": "7f92712020f66940ead10f73c16a03305b03259f",
"readmeFilename": "README.md",
"devDependencies": {
"grunt": "0.4.1",
diff --git a/src/runtime/html5/filepicker.js b/src/runtime/html5/filepicker.js
index e5bd4c434..e20ea2e07 100644
--- a/src/runtime/html5/filepicker.js
+++ b/src/runtime/html5/filepicker.js
@@ -19,7 +19,7 @@ define([
arr, i, len, mouseHandler, changeHandler;
input.attr( 'type', 'file' );
- input.attr( 'capture', 'camera');
+ // input.attr( 'capture', 'camera');
input.attr( 'name', opts.name );
input.addClass('webuploader-element-invisible');
diff --git a/yarn.lock b/yarn.lock
new file mode 100644
index 000000000..5f7eee9fd
--- /dev/null
+++ b/yarn.lock
@@ -0,0 +1,1227 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+abbrev@1:
+ version "1.1.1"
+ resolved "http://r.cnpmjs.org/abbrev/download/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
+
+amdefine@>=0.0.4:
+ version "1.0.1"
+ resolved "http://r.cnpmjs.org/amdefine/download/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
+
+ansi-regex@^2.0.0:
+ version "2.1.1"
+ resolved "http://r.cnpmjs.org/ansi-regex/download/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
+
+ansi-styles@^2.2.1:
+ version "2.2.1"
+ resolved "http://r.cnpmjs.org/ansi-styles/download/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
+
+"argparse@~ 0.1.11":
+ version "0.1.16"
+ resolved "http://r.cnpmjs.org/argparse/download/argparse-0.1.16.tgz#cfd01e0fbba3d6caed049fbd758d40f65196f57c"
+ dependencies:
+ underscore "~1.7.0"
+ underscore.string "~2.4.0"
+
+asn1@~0.2.3:
+ version "0.2.4"
+ resolved "http://r.cnpmjs.org/asn1/download/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
+ dependencies:
+ safer-buffer "~2.1.0"
+
+assert-plus@1.0.0, assert-plus@^1.0.0:
+ version "1.0.0"
+ resolved "http://r.cnpmjs.org/assert-plus/download/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
+
+assert-plus@^0.2.0:
+ version "0.2.0"
+ resolved "http://r.cnpmjs.org/assert-plus/download/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
+
+async@0.1.15:
+ version "0.1.15"
+ resolved "http://r.cnpmjs.org/async/download/async-0.1.15.tgz#2180eaca2cf2a6ca5280d41c0585bec9b3e49bd3"
+
+async@0.2.9:
+ version "0.2.9"
+ resolved "http://r.cnpmjs.org/async/download/async-0.2.9.tgz#df63060fbf3d33286a76aaf6d55a2986d9ff8619"
+
+async@^2.0.1:
+ version "2.6.3"
+ resolved "http://r.cnpmjs.org/async/download/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
+ dependencies:
+ lodash "^4.17.14"
+
+async@~0.1.22:
+ version "0.1.22"
+ resolved "http://r.cnpmjs.org/async/download/async-0.1.22.tgz#0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061"
+
+async@~0.2.10, async@~0.2.6, async@~0.2.9:
+ version "0.2.10"
+ resolved "http://r.cnpmjs.org/async/download/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1"
+
+aws-sign2@~0.6.0:
+ version "0.6.0"
+ resolved "http://r.cnpmjs.org/aws-sign2/download/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
+
+balanced-match@^1.0.0:
+ version "1.0.0"
+ resolved "http://r.cnpmjs.org/balanced-match/download/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
+
+batch@0.5.0:
+ version "0.5.0"
+ resolved "http://r.cnpmjs.org/batch/download/batch-0.5.0.tgz#fd2e05a7a5d696b4db9314013e285d8ff3557ec3"
+
+bcrypt-pbkdf@^1.0.0:
+ version "1.0.2"
+ resolved "http://r.cnpmjs.org/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
+ dependencies:
+ tweetnacl "^0.14.3"
+
+bl@~1.0.0:
+ version "1.0.3"
+ resolved "http://r.cnpmjs.org/bl/download/bl-1.0.3.tgz#fc5421a28fd4226036c3b3891a66a25bc64d226e"
+ dependencies:
+ readable-stream "~2.0.5"
+
+boom@2.x.x:
+ version "2.10.1"
+ resolved "http://r.cnpmjs.org/boom/download/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
+ dependencies:
+ hoek "2.x.x"
+
+brace-expansion@^1.1.7:
+ version "1.1.11"
+ resolved "http://r.cnpmjs.org/brace-expansion/download/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
+ dependencies:
+ balanced-match "^1.0.0"
+ concat-map "0.0.1"
+
+buffer-crc32@*:
+ version "0.2.13"
+ resolved "http://r.cnpmjs.org/buffer-crc32/download/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"
+
+buffer-crc32@0.2.1:
+ version "0.2.1"
+ resolved "http://r.cnpmjs.org/buffer-crc32/download/buffer-crc32-0.2.1.tgz#be3e5382fc02b6d6324956ac1af98aa98b08534c"
+
+bytes@0.2.1, bytes@~0.2.1:
+ version "0.2.1"
+ resolved "http://r.cnpmjs.org/bytes/download/bytes-0.2.1.tgz#555b08abcb063f8975905302523e4cd4ffdfdf31"
+
+caseless@~0.11.0:
+ version "0.11.0"
+ resolved "http://r.cnpmjs.org/caseless/download/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7"
+
+chalk@^1.1.1:
+ version "1.1.3"
+ resolved "http://r.cnpmjs.org/chalk/download/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
+ dependencies:
+ ansi-styles "^2.2.1"
+ escape-string-regexp "^1.0.2"
+ has-ansi "^2.0.0"
+ strip-ansi "^3.0.0"
+ supports-color "^2.0.0"
+
+"charenc@>= 0.0.1":
+ version "0.0.2"
+ resolved "http://r.cnpmjs.org/charenc/download/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"
+
+coffee-script@~1.3.3:
+ version "1.3.3"
+ resolved "http://r.cnpmjs.org/coffee-script/download/coffee-script-1.3.3.tgz#150d6b4cb522894369efed6a2101c20bc7f4a4f4"
+
+collections@~0.1.3:
+ version "0.1.24"
+ resolved "http://r.cnpmjs.org/collections/download/collections-0.1.24.tgz#70f810c35784f3f3edfaa9cf262e64a50d9c908b"
+ dependencies:
+ weak-map "1.0.0"
+
+colors@~0.6.0-1:
+ version "0.6.2"
+ resolved "http://r.cnpmjs.org/colors/download/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc"
+
+combined-stream@^1.0.5, combined-stream@~1.0.5:
+ version "1.0.8"
+ resolved "http://r.cnpmjs.org/combined-stream/download/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
+ dependencies:
+ delayed-stream "~1.0.0"
+
+commander@^2.9.0:
+ version "2.20.0"
+ resolved "http://r.cnpmjs.org/commander/download/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
+
+commander@~1.1.1:
+ version "1.1.1"
+ resolved "http://r.cnpmjs.org/commander/download/commander-1.1.1.tgz#50d1651868ae60eccff0a2d9f34595376bc6b041"
+ dependencies:
+ keypress "0.1.x"
+
+compressible@1.0.0:
+ version "1.0.0"
+ resolved "http://r.cnpmjs.org/compressible/download/compressible-1.0.0.tgz#f83e49c1cb61421753545125a8011d68b492427d"
+
+concat-map@0.0.1:
+ version "0.0.1"
+ resolved "http://r.cnpmjs.org/concat-map/download/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+
+concat-stream@1.5.0:
+ version "1.5.0"
+ resolved "http://r.cnpmjs.org/concat-stream/download/concat-stream-1.5.0.tgz#53f7d43c51c5e43f81c8fdd03321c631be68d611"
+ dependencies:
+ inherits "~2.0.1"
+ readable-stream "~2.0.0"
+ typedarray "~0.0.5"
+
+connect-livereload@~0.3.0:
+ version "0.3.2"
+ resolved "http://r.cnpmjs.org/connect-livereload/download/connect-livereload-0.3.2.tgz#ddb70aa50901d583783662770e3d3b63d7ce40ff"
+
+connect@~2.13.0:
+ version "2.13.1"
+ resolved "http://r.cnpmjs.org/connect/download/connect-2.13.1.tgz#aab82be9f0765a423aa99431ab922aaa8081aa22"
+ dependencies:
+ batch "0.5.0"
+ buffer-crc32 "0.2.1"
+ bytes "0.2.1"
+ compressible "1.0.0"
+ cookie "0.1.0"
+ cookie-signature "1.0.1"
+ debug ">= 0.7.3 < 1"
+ fresh "0.2.0"
+ methods "0.1.0"
+ multiparty "2.2.0"
+ negotiator "0.3.0"
+ pause "0.0.1"
+ qs "0.6.6"
+ raw-body "1.1.3"
+ send "0.1.4"
+ uid2 "0.0.3"
+
+cookie-signature@1.0.1:
+ version "1.0.1"
+ resolved "http://r.cnpmjs.org/cookie-signature/download/cookie-signature-1.0.1.tgz#44e072148af01e6e8e24afbf12690d68ae698ecb"
+
+cookie@0.1.0:
+ version "0.1.0"
+ resolved "http://r.cnpmjs.org/cookie/download/cookie-0.1.0.tgz#90eb469ddce905c866de687efc43131d8801f9d0"
+
+core-util-is@1.0.2, core-util-is@~1.0.0:
+ version "1.0.2"
+ resolved "http://r.cnpmjs.org/core-util-is/download/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
+
+"crypt@>= 0.0.1":
+ version "0.0.2"
+ resolved "http://r.cnpmjs.org/crypt/download/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
+
+cryptiles@2.x.x:
+ version "2.0.5"
+ resolved "http://r.cnpmjs.org/cryptiles/download/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
+ dependencies:
+ boom "2.x.x"
+
+dashdash@^1.12.0:
+ version "1.14.1"
+ resolved "http://r.cnpmjs.org/dashdash/download/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
+ dependencies:
+ assert-plus "^1.0.0"
+
+dateformat@1.0.2-1.2.3:
+ version "1.0.2-1.2.3"
+ resolved "http://r.cnpmjs.org/dateformat/download/dateformat-1.0.2-1.2.3.tgz#b0220c02de98617433b72851cf47de3df2cdbee9"
+
+debug@*:
+ version "4.1.1"
+ resolved "http://r.cnpmjs.org/debug/download/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
+ dependencies:
+ ms "^2.1.1"
+
+debug@0.7.4, debug@~0.7.0:
+ version "0.7.4"
+ resolved "http://r.cnpmjs.org/debug/download/debug-0.7.4.tgz#06e1ea8082c2cb14e39806e22e2f6f757f92af39"
+
+"debug@>= 0.7.3 < 1":
+ version "0.8.1"
+ resolved "http://r.cnpmjs.org/debug/download/debug-0.8.1.tgz#20ff4d26f5e422cb68a1bacbbb61039ad8c1c130"
+
+delayed-stream@~1.0.0:
+ version "1.0.0"
+ resolved "http://r.cnpmjs.org/delayed-stream/download/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
+
+ecc-jsbn@~0.1.1:
+ version "0.1.2"
+ resolved "http://r.cnpmjs.org/ecc-jsbn/download/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
+ dependencies:
+ jsbn "~0.1.0"
+ safer-buffer "^2.1.0"
+
+ejs@~0.8.4:
+ version "0.8.8"
+ resolved "http://r.cnpmjs.org/ejs/download/ejs-0.8.8.tgz#ffdc56dcc35d02926dd50ad13439bbc54061d598"
+
+escape-string-regexp@^1.0.2:
+ version "1.0.5"
+ resolved "http://r.cnpmjs.org/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+
+"esprima@~ 1.0.2":
+ version "1.0.4"
+ resolved "http://r.cnpmjs.org/esprima/download/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad"
+
+eventemitter2@~0.4.9:
+ version "0.4.14"
+ resolved "http://r.cnpmjs.org/eventemitter2/download/eventemitter2-0.4.14.tgz#8f61b75cde012b2e9eb284d4545583b5643b61ab"
+
+extend@~3.0.0:
+ version "3.0.2"
+ resolved "http://r.cnpmjs.org/extend/download/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
+
+extract-zip@~1.5.0:
+ version "1.5.0"
+ resolved "http://r.cnpmjs.org/extract-zip/download/extract-zip-1.5.0.tgz#92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4"
+ dependencies:
+ concat-stream "1.5.0"
+ debug "0.7.4"
+ mkdirp "0.5.0"
+ yauzl "2.4.1"
+
+extsprintf@1.3.0:
+ version "1.3.0"
+ resolved "http://r.cnpmjs.org/extsprintf/download/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
+
+extsprintf@^1.2.0:
+ version "1.4.0"
+ resolved "http://r.cnpmjs.org/extsprintf/download/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
+
+faye-websocket@~0.4.3:
+ version "0.4.4"
+ resolved "http://r.cnpmjs.org/faye-websocket/download/faye-websocket-0.4.4.tgz#c14c5b3bf14d7417ffbfd990c0a7495cd9f337bc"
+
+fd-slicer@~1.0.1:
+ version "1.0.1"
+ resolved "http://r.cnpmjs.org/fd-slicer/download/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"
+ dependencies:
+ pend "~1.2.0"
+
+fileset@~0.1.5:
+ version "0.1.8"
+ resolved "http://r.cnpmjs.org/fileset/download/fileset-0.1.8.tgz#506b91a9396eaa7e32fb42a84077c7a0c736b741"
+ dependencies:
+ glob "3.x"
+ minimatch "0.x"
+
+findup-sync@^0.1.2, findup-sync@~0.1.0:
+ version "0.1.3"
+ resolved "http://r.cnpmjs.org/findup-sync/download/findup-sync-0.1.3.tgz#7f3e7a97b82392c653bf06589bd85190e93c3683"
+ dependencies:
+ glob "~3.2.9"
+ lodash "~2.4.1"
+
+forever-agent@~0.6.1:
+ version "0.6.1"
+ resolved "http://r.cnpmjs.org/forever-agent/download/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
+
+form-data@~1.0.0-rc3:
+ version "1.0.1"
+ resolved "http://r.cnpmjs.org/form-data/download/form-data-1.0.1.tgz#ae315db9a4907fa065502304a66d7733475ee37c"
+ dependencies:
+ async "^2.0.1"
+ combined-stream "^1.0.5"
+ mime-types "^2.1.11"
+
+fresh@0.2.0:
+ version "0.2.0"
+ resolved "http://r.cnpmjs.org/fresh/download/fresh-0.2.0.tgz#bfd9402cf3df12c4a4c310c79f99a3dde13d34a7"
+
+fs-extra@~0.26.4:
+ version "0.26.7"
+ resolved "http://r.cnpmjs.org/fs-extra/download/fs-extra-0.26.7.tgz#9ae1fdd94897798edab76d0918cf42d0c3184fa9"
+ dependencies:
+ graceful-fs "^4.1.2"
+ jsonfile "^2.1.0"
+ klaw "^1.0.0"
+ path-is-absolute "^1.0.0"
+ rimraf "^2.2.8"
+
+fs.realpath@^1.0.0:
+ version "1.0.0"
+ resolved "http://r.cnpmjs.org/fs.realpath/download/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
+
+gaze@~0.3.4:
+ version "0.3.4"
+ resolved "http://r.cnpmjs.org/gaze/download/gaze-0.3.4.tgz#5f94bdda0afe53bc710969bcd6f282548d60c279"
+ dependencies:
+ fileset "~0.1.5"
+ minimatch "~0.2.9"
+
+generate-function@^2.0.0:
+ version "2.3.1"
+ resolved "http://r.cnpmjs.org/generate-function/download/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f"
+ dependencies:
+ is-property "^1.0.2"
+
+generate-object-property@^1.1.0:
+ version "1.2.0"
+ resolved "http://r.cnpmjs.org/generate-object-property/download/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
+ dependencies:
+ is-property "^1.0.0"
+
+getpass@^0.1.1:
+ version "0.1.7"
+ resolved "http://r.cnpmjs.org/getpass/download/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
+ dependencies:
+ assert-plus "^1.0.0"
+
+glob@3.x, glob@~3.2.6, glob@~3.2.9:
+ version "3.2.11"
+ resolved "http://r.cnpmjs.org/glob/download/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d"
+ dependencies:
+ inherits "2"
+ minimatch "0.3"
+
+glob@^7.1.3:
+ version "7.1.4"
+ resolved "http://r.cnpmjs.org/glob/download/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255"
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.0.4"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
+glob@~3.1.21:
+ version "3.1.21"
+ resolved "http://r.cnpmjs.org/glob/download/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd"
+ dependencies:
+ graceful-fs "~1.2.0"
+ inherits "1"
+ minimatch "~0.2.11"
+
+gmudoc@0.0.3:
+ version "0.0.3"
+ resolved "http://r.cnpmjs.org/gmudoc/download/gmudoc-0.0.3.tgz#f1f69c91595e1285038170a4b256c0714a81ece7"
+ dependencies:
+ async "~0.2.9"
+ ejs "~0.8.4"
+ glob "~3.2.6"
+ lodash "~1.3.1"
+ marked "~0.2.9"
+ qrpng "~0.1.1"
+ sha1 "~1.1.0"
+
+graceful-fs@2.0.1:
+ version "2.0.1"
+ resolved "http://r.cnpmjs.org/graceful-fs/download/graceful-fs-2.0.1.tgz#7fd6e0a4837c35d0cc15330294d9584a3898cf84"
+
+graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
+ version "4.2.1"
+ resolved "http://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.2.1.tgz#1c1f0c364882c868f5bff6512146328336a11b1d"
+
+graceful-fs@~1.1:
+ version "1.1.14"
+ resolved "http://r.cnpmjs.org/graceful-fs/download/graceful-fs-1.1.14.tgz#07078db5f6377f6321fceaaedf497de124dc9465"
+
+graceful-fs@~1.2.0:
+ version "1.2.3"
+ resolved "http://r.cnpmjs.org/graceful-fs/download/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364"
+
+grunt-contrib-connect@0.7.1:
+ version "0.7.1"
+ resolved "http://r.cnpmjs.org/grunt-contrib-connect/download/grunt-contrib-connect-0.7.1.tgz#cad8de445a8105b34912d1c20238cce98dc13ebe"
+ dependencies:
+ async "~0.2.10"
+ connect "~2.13.0"
+ connect-livereload "~0.3.0"
+ open "0.0.4"
+ portscanner "0.2.2"
+
+grunt-contrib-copy@0.5.0:
+ version "0.5.0"
+ resolved "http://r.cnpmjs.org/grunt-contrib-copy/download/grunt-contrib-copy-0.5.0.tgz#410075ac45a5856ba191b1cc725725450d4a0215"
+
+grunt-contrib-qunit@0.4.0:
+ version "0.4.0"
+ resolved "http://r.cnpmjs.org/grunt-contrib-qunit/download/grunt-contrib-qunit-0.4.0.tgz#01a41b767d24e3edd13ff4739f514c38bfab242e"
+ dependencies:
+ grunt-lib-phantomjs "~0.5.0"
+
+grunt-contrib-uglify@0.2.1:
+ version "0.2.1"
+ resolved "http://r.cnpmjs.org/grunt-contrib-uglify/download/grunt-contrib-uglify-0.2.1.tgz#c22cf23e65aab3397fb57219c35a55db1787f6dd"
+ dependencies:
+ grunt-lib-contrib "~0.6.0"
+ uglify-js "~2.3.5"
+
+grunt-contrib-watch@0.4.4:
+ version "0.4.4"
+ resolved "http://r.cnpmjs.org/grunt-contrib-watch/download/grunt-contrib-watch-0.4.4.tgz#320fc77c5cd33b73e5446cd9ed919612116aa63c"
+ dependencies:
+ gaze "~0.3.4"
+ tiny-lr "0.0.4"
+
+grunt-gh-pages@0.9.0:
+ version "0.9.0"
+ resolved "http://r.cnpmjs.org/grunt-gh-pages/download/grunt-gh-pages-0.9.0.tgz#e85e83631de536a008365440b3812d4f8a05cb6a"
+ dependencies:
+ async "0.2.9"
+ graceful-fs "2.0.1"
+ q "0.9.3"
+ q-io "1.6.5"
+ wrench "1.5.1"
+
+grunt-jekyll@0.4.1:
+ version "0.4.1"
+ resolved "http://r.cnpmjs.org/grunt-jekyll/download/grunt-jekyll-0.4.1.tgz#a51986b528b55b6ef766ed39850ce7dc13fe0272"
+ dependencies:
+ tmp "0.0.21"
+
+grunt-jsbint@0.0.4:
+ version "0.0.4"
+ resolved "http://r.cnpmjs.org/grunt-jsbint/download/grunt-jsbint-0.0.4.tgz#74630684f7346d46aff613f858f5e59cba077023"
+ dependencies:
+ jsbint "https://github.com/gmuteam/jsbint/tarball/master"
+
+grunt-lib-contrib@~0.6.0:
+ version "0.6.1"
+ resolved "http://r.cnpmjs.org/grunt-lib-contrib/download/grunt-lib-contrib-0.6.1.tgz#3f56adb7da06e814795ee2415b0ebe5fb8903ebb"
+ dependencies:
+ zlib-browserify "0.0.1"
+
+grunt-lib-phantomjs@~0.5.0:
+ version "0.5.0"
+ resolved "http://r.cnpmjs.org/grunt-lib-phantomjs/download/grunt-lib-phantomjs-0.5.0.tgz#dfc6bd5ba01cd0234c4920c9154a4654392eeaae"
+ dependencies:
+ eventemitter2 "~0.4.9"
+ phantomjs "~1.9.0-1"
+ semver "~1.0.14"
+ temporary "~0.0.4"
+
+grunt-size@0.1.0:
+ version "0.1.0"
+ resolved "http://r.cnpmjs.org/grunt-size/download/grunt-size-0.1.0.tgz#fe82d69f28beb61853c2614dec0ac38a0d4072c0"
+ dependencies:
+ uglify-js "~2.2.5"
+ zlib-browserify "0.0.1"
+
+grunt@0.4.1:
+ version "0.4.1"
+ resolved "http://r.cnpmjs.org/grunt/download/grunt-0.4.1.tgz#d5892e5680add9ed1befde9aa635cf46b8f49729"
+ dependencies:
+ async "~0.1.22"
+ coffee-script "~1.3.3"
+ colors "~0.6.0-1"
+ dateformat "1.0.2-1.2.3"
+ eventemitter2 "~0.4.9"
+ findup-sync "~0.1.0"
+ glob "~3.1.21"
+ hooker "~0.2.3"
+ iconv-lite "~0.2.5"
+ js-yaml "~2.0.2"
+ lodash "~0.9.0"
+ minimatch "~0.2.6"
+ nopt "~1.0.10"
+ rimraf "~2.0.2"
+ underscore.string "~2.2.0rc"
+ which "~1.0.5"
+
+har-validator@~2.0.2:
+ version "2.0.6"
+ resolved "http://r.cnpmjs.org/har-validator/download/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"
+ dependencies:
+ chalk "^1.1.1"
+ commander "^2.9.0"
+ is-my-json-valid "^2.12.4"
+ pinkie-promise "^2.0.0"
+
+has-ansi@^2.0.0:
+ version "2.0.0"
+ resolved "http://r.cnpmjs.org/has-ansi/download/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
+ dependencies:
+ ansi-regex "^2.0.0"
+
+hasha@^2.2.0:
+ version "2.2.0"
+ resolved "http://r.cnpmjs.org/hasha/download/hasha-2.2.0.tgz#78d7cbfc1e6d66303fe79837365984517b2f6ee1"
+ dependencies:
+ is-stream "^1.0.1"
+ pinkie-promise "^2.0.0"
+
+hawk@~3.1.0:
+ version "3.1.3"
+ resolved "http://r.cnpmjs.org/hawk/download/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
+ dependencies:
+ boom "2.x.x"
+ cryptiles "2.x.x"
+ hoek "2.x.x"
+ sntp "1.x.x"
+
+hoek@2.x.x:
+ version "2.16.3"
+ resolved "http://r.cnpmjs.org/hoek/download/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
+
+hooker@~0.2.3:
+ version "0.2.3"
+ resolved "http://r.cnpmjs.org/hooker/download/hooker-0.2.3.tgz#b834f723cc4a242aa65963459df6d984c5d3d959"
+
+http-signature@~1.1.0:
+ version "1.1.1"
+ resolved "http://r.cnpmjs.org/http-signature/download/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
+ dependencies:
+ assert-plus "^0.2.0"
+ jsprim "^1.2.2"
+ sshpk "^1.7.0"
+
+iconv-lite@~0.2.5:
+ version "0.2.11"
+ resolved "http://r.cnpmjs.org/iconv-lite/download/iconv-lite-0.2.11.tgz#1ce60a3a57864a292d1321ff4609ca4bb965adc8"
+
+inflight@^1.0.4:
+ version "1.0.6"
+ resolved "http://r.cnpmjs.org/inflight/download/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
+ dependencies:
+ once "^1.3.0"
+ wrappy "1"
+
+inherits@1:
+ version "1.0.2"
+ resolved "http://r.cnpmjs.org/inherits/download/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b"
+
+inherits@2, inherits@~2.0.1:
+ version "2.0.4"
+ resolved "http://r.cnpmjs.org/inherits/download/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+
+is-my-ip-valid@^1.0.0:
+ version "1.0.0"
+ resolved "http://r.cnpmjs.org/is-my-ip-valid/download/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824"
+
+is-my-json-valid@^2.12.4:
+ version "2.20.0"
+ resolved "http://r.cnpmjs.org/is-my-json-valid/download/is-my-json-valid-2.20.0.tgz#1345a6fca3e8daefc10d0fa77067f54cedafd59a"
+ dependencies:
+ generate-function "^2.0.0"
+ generate-object-property "^1.1.0"
+ is-my-ip-valid "^1.0.0"
+ jsonpointer "^4.0.0"
+ xtend "^4.0.0"
+
+is-property@^1.0.0, is-property@^1.0.2:
+ version "1.0.2"
+ resolved "http://r.cnpmjs.org/is-property/download/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
+
+is-stream@^1.0.1:
+ version "1.1.0"
+ resolved "http://r.cnpmjs.org/is-stream/download/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
+
+is-typedarray@~1.0.0:
+ version "1.0.0"
+ resolved "http://r.cnpmjs.org/is-typedarray/download/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
+
+isarray@0.0.1:
+ version "0.0.1"
+ resolved "http://r.cnpmjs.org/isarray/download/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
+
+isarray@~1.0.0:
+ version "1.0.0"
+ resolved "http://r.cnpmjs.org/isarray/download/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
+
+isexe@^2.0.0:
+ version "2.0.0"
+ resolved "http://r.cnpmjs.org/isexe/download/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
+
+isstream@~0.1.2:
+ version "0.1.2"
+ resolved "http://r.cnpmjs.org/isstream/download/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
+
+js-yaml@~2.0.2:
+ version "2.0.5"
+ resolved "http://r.cnpmjs.org/js-yaml/download/js-yaml-2.0.5.tgz#a25ae6509999e97df278c6719da11bd0687743a8"
+ dependencies:
+ argparse "~ 0.1.11"
+ esprima "~ 1.0.2"
+
+"jsbint@https://github.com/gmuteam/jsbint/tarball/master":
+ version "0.0.7"
+ resolved "https://github.com/gmuteam/jsbint/tarball/master#a5ca4afe8288a4cb32f4d063f78de43ffeace24d"
+ dependencies:
+ commander "~1.1.1"
+ glob "~3.1.21"
+ underscore "1.4.x"
+
+jsbn@~0.1.0:
+ version "0.1.1"
+ resolved "http://r.cnpmjs.org/jsbn/download/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
+
+json-schema@0.2.3:
+ version "0.2.3"
+ resolved "http://r.cnpmjs.org/json-schema/download/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
+
+json-stringify-safe@~5.0.1:
+ version "5.0.1"
+ resolved "http://r.cnpmjs.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
+
+jsonfile@^2.1.0:
+ version "2.4.0"
+ resolved "http://r.cnpmjs.org/jsonfile/download/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
+ optionalDependencies:
+ graceful-fs "^4.1.6"
+
+jsonpointer@^4.0.0:
+ version "4.0.1"
+ resolved "http://r.cnpmjs.org/jsonpointer/download/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
+
+jsprim@^1.2.2:
+ version "1.4.1"
+ resolved "http://r.cnpmjs.org/jsprim/download/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
+ dependencies:
+ assert-plus "1.0.0"
+ extsprintf "1.3.0"
+ json-schema "0.2.3"
+ verror "1.10.0"
+
+kew@~0.7.0:
+ version "0.7.0"
+ resolved "http://r.cnpmjs.org/kew/download/kew-0.7.0.tgz#79d93d2d33363d6fdd2970b335d9141ad591d79b"
+
+keypress@0.1.x:
+ version "0.1.0"
+ resolved "http://r.cnpmjs.org/keypress/download/keypress-0.1.0.tgz#4a3188d4291b66b4f65edb99f806aa9ae293592a"
+
+klaw@^1.0.0:
+ version "1.3.1"
+ resolved "http://r.cnpmjs.org/klaw/download/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
+ optionalDependencies:
+ graceful-fs "^4.1.9"
+
+load-grunt-tasks@0.4.0:
+ version "0.4.0"
+ resolved "http://r.cnpmjs.org/load-grunt-tasks/download/load-grunt-tasks-0.4.0.tgz#f824663ffba251b574efda5a935afacefe0a95f4"
+ dependencies:
+ findup-sync "^0.1.2"
+ multimatch "^0.1.0"
+
+lodash@^4.17.14:
+ version "4.17.15"
+ resolved "http://r.cnpmjs.org/lodash/download/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
+
+lodash@~0.9.0:
+ version "0.9.2"
+ resolved "http://r.cnpmjs.org/lodash/download/lodash-0.9.2.tgz#8f3499c5245d346d682e5b0d3b40767e09f1a92c"
+
+lodash@~1.3.1:
+ version "1.3.1"
+ resolved "http://r.cnpmjs.org/lodash/download/lodash-1.3.1.tgz#a4663b53686b895ff074e2ba504dfb76a8e2b770"
+
+lodash@~2.4.1:
+ version "2.4.2"
+ resolved "http://r.cnpmjs.org/lodash/download/lodash-2.4.2.tgz#fadd834b9683073da179b3eae6d9c0d15053f73e"
+
+lru-cache@2:
+ version "2.7.3"
+ resolved "http://r.cnpmjs.org/lru-cache/download/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952"
+
+marked@~0.2.9:
+ version "0.2.10"
+ resolved "http://r.cnpmjs.org/marked/download/marked-0.2.10.tgz#d5fd68271caae61c55d291d07bd5034cff5e73ee"
+
+methods@0.1.0:
+ version "0.1.0"
+ resolved "http://r.cnpmjs.org/methods/download/methods-0.1.0.tgz#335d429eefd21b7bacf2e9c922a8d2bd14a30e4f"
+
+mime-db@1.40.0:
+ version "1.40.0"
+ resolved "http://r.cnpmjs.org/mime-db/download/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32"
+
+mime-types@^2.1.11, mime-types@~2.1.7:
+ version "2.1.24"
+ resolved "http://r.cnpmjs.org/mime-types/download/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81"
+ dependencies:
+ mime-db "1.40.0"
+
+mime@~1.2, mime@~1.2.9:
+ version "1.2.11"
+ resolved "http://r.cnpmjs.org/mime/download/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10"
+
+mimeparse@~0.1.4:
+ version "0.1.4"
+ resolved "http://r.cnpmjs.org/mimeparse/download/mimeparse-0.1.4.tgz#dafb02752370fd226093ae3152c271af01ac254a"
+
+minimatch@0.3:
+ version "0.3.0"
+ resolved "http://r.cnpmjs.org/minimatch/download/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd"
+ dependencies:
+ lru-cache "2"
+ sigmund "~1.0.0"
+
+minimatch@0.x:
+ version "0.4.0"
+ resolved "http://r.cnpmjs.org/minimatch/download/minimatch-0.4.0.tgz#bd2c7d060d2c8c8fd7cde7f1f2ed2d5b270fdb1b"
+ dependencies:
+ lru-cache "2"
+ sigmund "~1.0.0"
+
+minimatch@^3.0.4:
+ version "3.0.4"
+ resolved "http://r.cnpmjs.org/minimatch/download/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
+ dependencies:
+ brace-expansion "^1.1.7"
+
+minimatch@~0.2.11, minimatch@~0.2.14, minimatch@~0.2.6, minimatch@~0.2.9:
+ version "0.2.14"
+ resolved "http://r.cnpmjs.org/minimatch/download/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a"
+ dependencies:
+ lru-cache "2"
+ sigmund "~1.0.0"
+
+minimist@0.0.8:
+ version "0.0.8"
+ resolved "http://r.cnpmjs.org/minimist/download/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
+
+mkdirp@0.5.0:
+ version "0.5.0"
+ resolved "http://r.cnpmjs.org/mkdirp/download/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12"
+ dependencies:
+ minimist "0.0.8"
+
+ms@^2.1.1:
+ version "2.1.2"
+ resolved "http://r.cnpmjs.org/ms/download/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+
+multimatch@^0.1.0:
+ version "0.1.0"
+ resolved "http://r.cnpmjs.org/multimatch/download/multimatch-0.1.0.tgz#099d9f8f8463ac36cfbfa27360bc16cee87ded64"
+ dependencies:
+ lodash "~2.4.1"
+ minimatch "~0.2.14"
+
+multiparty@2.2.0:
+ version "2.2.0"
+ resolved "http://r.cnpmjs.org/multiparty/download/multiparty-2.2.0.tgz#a567c2af000ad22dc8f2a653d91978ae1f5316f4"
+ dependencies:
+ readable-stream "~1.1.9"
+ stream-counter "~0.2.0"
+
+negotiator@0.3.0:
+ version "0.3.0"
+ resolved "http://r.cnpmjs.org/negotiator/download/negotiator-0.3.0.tgz#706d692efeddf574d57ea9fb1ab89a4fa7ee8f60"
+
+node-uuid@~1.4.7:
+ version "1.4.8"
+ resolved "http://r.cnpmjs.org/node-uuid/download/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907"
+
+nopt@~1.0.10:
+ version "1.0.10"
+ resolved "http://r.cnpmjs.org/nopt/download/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee"
+ dependencies:
+ abbrev "1"
+
+nopt@~2.0.0:
+ version "2.0.0"
+ resolved "http://r.cnpmjs.org/nopt/download/nopt-2.0.0.tgz#ca7416f20a5e3f9c3b86180f96295fa3d0b52e0d"
+ dependencies:
+ abbrev "1"
+
+noptify@latest:
+ version "0.0.3"
+ resolved "http://r.cnpmjs.org/noptify/download/noptify-0.0.3.tgz#58f654a73d9753df0c51d9686dc92104a67f4bbb"
+ dependencies:
+ nopt "~2.0.0"
+
+oauth-sign@~0.8.0:
+ version "0.8.2"
+ resolved "http://r.cnpmjs.org/oauth-sign/download/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
+
+once@^1.3.0:
+ version "1.4.0"
+ resolved "http://r.cnpmjs.org/once/download/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+ dependencies:
+ wrappy "1"
+
+open@0.0.4:
+ version "0.0.4"
+ resolved "http://r.cnpmjs.org/open/download/open-0.0.4.tgz#5de46a0858b9f49f9f211aa8f26628550657f262"
+
+optimist@~0.3.5:
+ version "0.3.7"
+ resolved "http://r.cnpmjs.org/optimist/download/optimist-0.3.7.tgz#c90941ad59e4273328923074d2cf2e7cbc6ec0d9"
+ dependencies:
+ wordwrap "~0.0.2"
+
+"package@>= 1.0.0 < 1.2.0":
+ version "1.0.1"
+ resolved "http://r.cnpmjs.org/package/download/package-1.0.1.tgz#d25a1f99e2506dcb27d6704b83dca8a312e4edcc"
+
+path-is-absolute@^1.0.0:
+ version "1.0.1"
+ resolved "http://r.cnpmjs.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
+
+pause@0.0.1:
+ version "0.0.1"
+ resolved "http://r.cnpmjs.org/pause/download/pause-0.0.1.tgz#1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d"
+
+pend@~1.2.0:
+ version "1.2.0"
+ resolved "http://r.cnpmjs.org/pend/download/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
+
+phantomjs@~1.9.0-1:
+ version "1.9.20"
+ resolved "http://r.cnpmjs.org/phantomjs/download/phantomjs-1.9.20.tgz#4424aca20e14d255c0b0889af6f6b8973da10e0d"
+ dependencies:
+ extract-zip "~1.5.0"
+ fs-extra "~0.26.4"
+ hasha "^2.2.0"
+ kew "~0.7.0"
+ progress "~1.1.8"
+ request "~2.67.0"
+ request-progress "~2.0.1"
+ which "~1.2.2"
+
+pinkie-promise@^2.0.0:
+ version "2.0.1"
+ resolved "http://r.cnpmjs.org/pinkie-promise/download/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
+ dependencies:
+ pinkie "^2.0.0"
+
+pinkie@^2.0.0:
+ version "2.0.4"
+ resolved "http://r.cnpmjs.org/pinkie/download/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
+
+portscanner@0.2.2:
+ version "0.2.2"
+ resolved "http://r.cnpmjs.org/portscanner/download/portscanner-0.2.2.tgz#8393ee1284e6e1af3fd7d5f606a2fd378ce37438"
+ dependencies:
+ async "0.1.15"
+
+process-nextick-args@~1.0.6:
+ version "1.0.7"
+ resolved "http://r.cnpmjs.org/process-nextick-args/download/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
+
+progress@~1.1.8:
+ version "1.1.8"
+ resolved "http://r.cnpmjs.org/progress/download/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
+
+q-io@1.6.5:
+ version "1.6.5"
+ resolved "http://r.cnpmjs.org/q-io/download/q-io-1.6.5.tgz#335bb9b93cf7fc9337c0ec15fa2d21a65860195a"
+ dependencies:
+ collections "~0.1.3"
+ mime "~1.2"
+ mimeparse "~0.1.4"
+ q "~0.9.1"
+ qs "~0.1.0"
+ url2 "~0.0.0"
+
+q@0.9.3:
+ version "0.9.3"
+ resolved "http://r.cnpmjs.org/q/download/q-0.9.3.tgz#404eabbad0d031ed35fcb53f7c5bc06283b4e74c"
+
+q@~0.9.1:
+ version "0.9.7"
+ resolved "http://r.cnpmjs.org/q/download/q-0.9.7.tgz#4de2e6cb3b29088c9e4cbc03bf9d42fb96ce2f75"
+
+qrpng@~0.1.1:
+ version "0.1.2"
+ resolved "http://r.cnpmjs.org/qrpng/download/qrpng-0.1.2.tgz#f417cf4e2479a545ae9d4b88bb2fb39054f6535e"
+ dependencies:
+ buffer-crc32 "*"
+
+qs@0.6.6:
+ version "0.6.6"
+ resolved "http://r.cnpmjs.org/qs/download/qs-0.6.6.tgz#6e015098ff51968b8a3c819001d5f2c89bc4b107"
+
+qs@~0.1.0:
+ version "0.1.0"
+ resolved "http://r.cnpmjs.org/qs/download/qs-0.1.0.tgz#9a0d2d70d01f63d3401ea4b050822601b462ee6b"
+
+qs@~0.5.2:
+ version "0.5.6"
+ resolved "http://r.cnpmjs.org/qs/download/qs-0.5.6.tgz#31b1ad058567651c526921506b9a8793911a0384"
+
+qs@~5.2.0:
+ version "5.2.1"
+ resolved "http://r.cnpmjs.org/qs/download/qs-5.2.1.tgz#801fee030e0b9450d6385adc48a4cc55b44aedfc"
+
+range-parser@0.0.4:
+ version "0.0.4"
+ resolved "http://r.cnpmjs.org/range-parser/download/range-parser-0.0.4.tgz#c0427ffef51c10acba0782a46c9602e744ff620b"
+
+raw-body@1.1.3:
+ version "1.1.3"
+ resolved "http://r.cnpmjs.org/raw-body/download/raw-body-1.1.3.tgz#3d2f91e2449259cc67b8c3ce9f061db5b987935b"
+ dependencies:
+ bytes "~0.2.1"
+
+readable-stream@~1.1.8, readable-stream@~1.1.9:
+ version "1.1.14"
+ resolved "http://r.cnpmjs.org/readable-stream/download/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9"
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.1"
+ isarray "0.0.1"
+ string_decoder "~0.10.x"
+
+readable-stream@~2.0.0, readable-stream@~2.0.5:
+ version "2.0.6"
+ resolved "http://r.cnpmjs.org/readable-stream/download/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e"
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.1"
+ isarray "~1.0.0"
+ process-nextick-args "~1.0.6"
+ string_decoder "~0.10.x"
+ util-deprecate "~1.0.1"
+
+request-progress@~2.0.1:
+ version "2.0.1"
+ resolved "http://r.cnpmjs.org/request-progress/download/request-progress-2.0.1.tgz#5d36bb57961c673aa5b788dbc8141fdf23b44e08"
+ dependencies:
+ throttleit "^1.0.0"
+
+request@~2.67.0:
+ version "2.67.0"
+ resolved "http://r.cnpmjs.org/request/download/request-2.67.0.tgz#8af74780e2bf11ea0ae9aa965c11f11afd272742"
+ dependencies:
+ aws-sign2 "~0.6.0"
+ bl "~1.0.0"
+ caseless "~0.11.0"
+ combined-stream "~1.0.5"
+ extend "~3.0.0"
+ forever-agent "~0.6.1"
+ form-data "~1.0.0-rc3"
+ har-validator "~2.0.2"
+ hawk "~3.1.0"
+ http-signature "~1.1.0"
+ is-typedarray "~1.0.0"
+ isstream "~0.1.2"
+ json-stringify-safe "~5.0.1"
+ mime-types "~2.1.7"
+ node-uuid "~1.4.7"
+ oauth-sign "~0.8.0"
+ qs "~5.2.0"
+ stringstream "~0.0.4"
+ tough-cookie "~2.2.0"
+ tunnel-agent "~0.4.1"
+
+requirejs@2.1.9:
+ version "2.1.9"
+ resolved "http://r.cnpmjs.org/requirejs/download/requirejs-2.1.9.tgz#624e10d22863e8db9aebfb8f21809ca59da42344"
+
+rimraf@^2.2.8:
+ version "2.6.3"
+ resolved "http://r.cnpmjs.org/rimraf/download/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
+ dependencies:
+ glob "^7.1.3"
+
+rimraf@~2.0.2:
+ version "2.0.3"
+ resolved "http://r.cnpmjs.org/rimraf/download/rimraf-2.0.3.tgz#f50a2965e7144e9afd998982f15df706730f56a9"
+ optionalDependencies:
+ graceful-fs "~1.1"
+
+safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
+ version "2.1.2"
+ resolved "http://r.cnpmjs.org/safer-buffer/download/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
+
+semver@~1.0.14:
+ version "1.0.14"
+ resolved "http://r.cnpmjs.org/semver/download/semver-1.0.14.tgz#cac5e2d55a6fbf958cb220ae844045071c78f676"
+
+send@0.1.4:
+ version "0.1.4"
+ resolved "http://r.cnpmjs.org/send/download/send-0.1.4.tgz#be70d8d1be01de61821af13780b50345a4f71abd"
+ dependencies:
+ debug "*"
+ fresh "0.2.0"
+ mime "~1.2.9"
+ range-parser "0.0.4"
+
+sha1@~1.1.0:
+ version "1.1.1"
+ resolved "http://r.cnpmjs.org/sha1/download/sha1-1.1.1.tgz#addaa7a93168f393f19eb2b15091618e2700f848"
+ dependencies:
+ charenc ">= 0.0.1"
+ crypt ">= 0.0.1"
+
+sigmund@~1.0.0:
+ version "1.0.1"
+ resolved "http://r.cnpmjs.org/sigmund/download/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
+
+sntp@1.x.x:
+ version "1.0.9"
+ resolved "http://r.cnpmjs.org/sntp/download/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
+ dependencies:
+ hoek "2.x.x"
+
+source-map@~0.1.7:
+ version "0.1.43"
+ resolved "http://r.cnpmjs.org/source-map/download/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346"
+ dependencies:
+ amdefine ">=0.0.4"
+
+sshpk@^1.7.0:
+ version "1.16.1"
+ resolved "http://r.cnpmjs.org/sshpk/download/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
+ dependencies:
+ asn1 "~0.2.3"
+ assert-plus "^1.0.0"
+ bcrypt-pbkdf "^1.0.0"
+ dashdash "^1.12.0"
+ ecc-jsbn "~0.1.1"
+ getpass "^0.1.1"
+ jsbn "~0.1.0"
+ safer-buffer "^2.0.2"
+ tweetnacl "~0.14.0"
+
+stream-counter@~0.2.0:
+ version "0.2.0"
+ resolved "http://r.cnpmjs.org/stream-counter/download/stream-counter-0.2.0.tgz#ded266556319c8b0e222812b9cf3b26fa7d947de"
+ dependencies:
+ readable-stream "~1.1.8"
+
+string_decoder@~0.10.x:
+ version "0.10.31"
+ resolved "http://r.cnpmjs.org/string_decoder/download/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
+
+stringstream@~0.0.4:
+ version "0.0.6"
+ resolved "http://r.cnpmjs.org/stringstream/download/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72"
+
+strip-ansi@^3.0.0:
+ version "3.0.1"
+ resolved "http://r.cnpmjs.org/strip-ansi/download/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
+ dependencies:
+ ansi-regex "^2.0.0"
+
+supports-color@^2.0.0:
+ version "2.0.0"
+ resolved "http://r.cnpmjs.org/supports-color/download/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
+
+temporary@~0.0.4:
+ version "0.0.8"
+ resolved "http://r.cnpmjs.org/temporary/download/temporary-0.0.8.tgz#a18a981d28ba8ca36027fb3c30538c3ecb740ac0"
+ dependencies:
+ package ">= 1.0.0 < 1.2.0"
+
+throttleit@^1.0.0:
+ version "1.0.0"
+ resolved "http://r.cnpmjs.org/throttleit/download/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c"
+
+tiny-lr@0.0.4:
+ version "0.0.4"
+ resolved "http://r.cnpmjs.org/tiny-lr/download/tiny-lr-0.0.4.tgz#80618547f63f697d05cb40c4c2c4b083521aefb6"
+ dependencies:
+ debug "~0.7.0"
+ faye-websocket "~0.4.3"
+ noptify latest
+ qs "~0.5.2"
+
+tmp@0.0.21:
+ version "0.0.21"
+ resolved "http://r.cnpmjs.org/tmp/download/tmp-0.0.21.tgz#6d263fede6570dc4d4510ffcc2efc640223b1153"
+
+tough-cookie@~2.2.0:
+ version "2.2.2"
+ resolved "http://r.cnpmjs.org/tough-cookie/download/tough-cookie-2.2.2.tgz#c83a1830f4e5ef0b93ef2a3488e724f8de016ac7"
+
+tunnel-agent@~0.4.1:
+ version "0.4.3"
+ resolved "http://r.cnpmjs.org/tunnel-agent/download/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
+
+tweetnacl@^0.14.3, tweetnacl@~0.14.0:
+ version "0.14.5"
+ resolved "http://r.cnpmjs.org/tweetnacl/download/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
+
+typedarray@~0.0.5:
+ version "0.0.6"
+ resolved "http://r.cnpmjs.org/typedarray/download/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
+
+uglify-js@~2.2.5:
+ version "2.2.5"
+ resolved "http://r.cnpmjs.org/uglify-js/download/uglify-js-2.2.5.tgz#a6e02a70d839792b9780488b7b8b184c095c99c7"
+ dependencies:
+ optimist "~0.3.5"
+ source-map "~0.1.7"
+
+uglify-js@~2.3.5:
+ version "2.3.6"
+ resolved "http://r.cnpmjs.org/uglify-js/download/uglify-js-2.3.6.tgz#fa0984770b428b7a9b2a8058f46355d14fef211a"
+ dependencies:
+ async "~0.2.6"
+ optimist "~0.3.5"
+ source-map "~0.1.7"
+
+uid2@0.0.3:
+ version "0.0.3"
+ resolved "http://r.cnpmjs.org/uid2/download/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82"
+
+underscore.string@~2.2.0rc:
+ version "2.2.1"
+ resolved "http://r.cnpmjs.org/underscore.string/download/underscore.string-2.2.1.tgz#d7c0fa2af5d5a1a67f4253daee98132e733f0f19"
+
+underscore.string@~2.4.0:
+ version "2.4.0"
+ resolved "http://r.cnpmjs.org/underscore.string/download/underscore.string-2.4.0.tgz#8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b"
+
+underscore@1.4.x:
+ version "1.4.4"
+ resolved "http://r.cnpmjs.org/underscore/download/underscore-1.4.4.tgz#61a6a32010622afa07963bf325203cf12239d604"
+
+underscore@~1.7.0:
+ version "1.7.0"
+ resolved "http://r.cnpmjs.org/underscore/download/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209"
+
+url2@~0.0.0:
+ version "0.0.0"
+ resolved "http://r.cnpmjs.org/url2/download/url2-0.0.0.tgz#4eaabd1d5c3ac90d62ab4485c998422865a04b1a"
+
+util-deprecate@~1.0.1:
+ version "1.0.2"
+ resolved "http://r.cnpmjs.org/util-deprecate/download/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+
+verror@1.10.0:
+ version "1.10.0"
+ resolved "http://r.cnpmjs.org/verror/download/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
+ dependencies:
+ assert-plus "^1.0.0"
+ core-util-is "1.0.2"
+ extsprintf "^1.2.0"
+
+weak-map@1.0.0:
+ version "1.0.0"
+ resolved "http://r.cnpmjs.org/weak-map/download/weak-map-1.0.0.tgz#b66e56a9df0bd25a76bbf1b514db129080614a37"
+
+which@~1.0.5:
+ version "1.0.9"
+ resolved "http://r.cnpmjs.org/which/download/which-1.0.9.tgz#460c1da0f810103d0321a9b633af9e575e64486f"
+
+which@~1.2.2:
+ version "1.2.14"
+ resolved "http://r.cnpmjs.org/which/download/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5"
+ dependencies:
+ isexe "^2.0.0"
+
+wordwrap@~0.0.2:
+ version "0.0.3"
+ resolved "http://r.cnpmjs.org/wordwrap/download/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
+
+wrappy@1:
+ version "1.0.2"
+ resolved "http://r.cnpmjs.org/wrappy/download/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+
+wrench@1.5.1:
+ version "1.5.1"
+ resolved "http://r.cnpmjs.org/wrench/download/wrench-1.5.1.tgz#3f7a519b0e409338723bb039b209a541176baa42"
+
+xtend@^4.0.0:
+ version "4.0.2"
+ resolved "http://r.cnpmjs.org/xtend/download/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
+
+yauzl@2.4.1:
+ version "2.4.1"
+ resolved "http://r.cnpmjs.org/yauzl/download/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005"
+ dependencies:
+ fd-slicer "~1.0.1"
+
+zlib-browserify@0.0.1:
+ version "0.0.1"
+ resolved "http://r.cnpmjs.org/zlib-browserify/download/zlib-browserify-0.0.1.tgz#4fa6a45d00dbc15f318a4afa1d9afc0258e176cc"