Most of it
This commit is contained in:
commit
89f33c7cf3
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
upload_base/uploads/*
|
12
docker-compose.yml
Normal file
12
docker-compose.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
version: '2.2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
upload:
|
||||||
|
image: webdevops/php-nginx:7.4-alpine
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ./upload_base:/app
|
||||||
|
# - ./upload_files:/app/store
|
||||||
|
ports:
|
||||||
|
- 127.0.0.1:8016:80
|
||||||
|
|
28
store.eris.cc.conf
Normal file
28
store.eris.cc.conf
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name store.eris.cc;
|
||||||
|
#include /etc/nginx/headers.conf;
|
||||||
|
location / {
|
||||||
|
return 301 https://store.eris.cc$request_uri;
|
||||||
|
}
|
||||||
|
location ^~ /.well-known/acme-challenge/ {
|
||||||
|
default_type "text/plain";
|
||||||
|
root /srv/http/acme.sh/;
|
||||||
|
}
|
||||||
|
|
||||||
|
access_log off;
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
server_name store.eris.cc;
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
#include /etc/nginx/headers.conf;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://127.0.0.1:8016/;
|
||||||
|
proxy_buffering off;
|
||||||
|
}
|
||||||
|
access_log off;
|
||||||
|
}
|
260
upload_base/assets/css/style.css
Executable file
260
upload_base/assets/css/style.css
Executable file
|
@ -0,0 +1,260 @@
|
||||||
|
/*-------------------------
|
||||||
|
Simple reset
|
||||||
|
--------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
*{
|
||||||
|
margin:0;
|
||||||
|
padding:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*-------------------------
|
||||||
|
General Styles
|
||||||
|
--------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
html{
|
||||||
|
background-color:#ebebec;
|
||||||
|
|
||||||
|
background-image:-webkit-radial-gradient(center, #ebebec, #b4b4b4);
|
||||||
|
background-image:-moz-radial-gradient(center, #ebebec, #b4b4b4);
|
||||||
|
background-image:radial-gradient(center, #ebebec, #b4b4b4);
|
||||||
|
|
||||||
|
min-height:900px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body{
|
||||||
|
font:15px/1.3 Arial, sans-serif;
|
||||||
|
color: #4f4f4f;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited {
|
||||||
|
outline:none;
|
||||||
|
color:#389dc1;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover{
|
||||||
|
text-decoration:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
section, footer, header, aside{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*----------------------------
|
||||||
|
The file upload form
|
||||||
|
-----------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
#upload{
|
||||||
|
font-family:'PT Sans Narrow', sans-serif;
|
||||||
|
background-color:#373a3d;
|
||||||
|
|
||||||
|
background-image:-webkit-linear-gradient(top, #373a3d, #313437);
|
||||||
|
background-image:-moz-linear-gradient(top, #373a3d, #313437);
|
||||||
|
background-image:linear-gradient(top, #373a3d, #313437);
|
||||||
|
|
||||||
|
width:250px;
|
||||||
|
padding:30px;
|
||||||
|
border-radius:3px;
|
||||||
|
|
||||||
|
margin:200px auto 100px;
|
||||||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
#drop{
|
||||||
|
background-color: #2E3134;
|
||||||
|
padding: 40px 50px;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
border: 20px solid rgba(0, 0, 0, 0);
|
||||||
|
border-radius: 3px;
|
||||||
|
border-image: url('../img/border-image.png') 25 repeat;
|
||||||
|
text-align: center;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
font-size:16px;
|
||||||
|
font-weight:bold;
|
||||||
|
color:#7f858a;
|
||||||
|
}
|
||||||
|
|
||||||
|
#drop a{
|
||||||
|
background-color:#007a96;
|
||||||
|
padding:12px 26px;
|
||||||
|
color:#fff;
|
||||||
|
font-size:14px;
|
||||||
|
border-radius:2px;
|
||||||
|
cursor:pointer;
|
||||||
|
display:inline-block;
|
||||||
|
margin-top:12px;
|
||||||
|
line-height:1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#drop a:hover{
|
||||||
|
background-color:#0986a3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#drop input{
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#upload ul{
|
||||||
|
list-style:none;
|
||||||
|
margin:0 -30px;
|
||||||
|
border-top:1px solid #2b2e31;
|
||||||
|
border-bottom:1px solid #3d4043;
|
||||||
|
}
|
||||||
|
|
||||||
|
#upload ul li{
|
||||||
|
|
||||||
|
background-color:#333639;
|
||||||
|
|
||||||
|
background-image:-webkit-linear-gradient(top, #333639, #303335);
|
||||||
|
background-image:-moz-linear-gradient(top, #333639, #303335);
|
||||||
|
background-image:linear-gradient(top, #333639, #303335);
|
||||||
|
|
||||||
|
border-top:1px solid #3d4043;
|
||||||
|
border-bottom:1px solid #2b2e31;
|
||||||
|
padding:15px;
|
||||||
|
height: 52px;
|
||||||
|
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#upload ul li input{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#upload ul li p{
|
||||||
|
width: 144px;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
color: #EEE;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
position: absolute;
|
||||||
|
top: 20px;
|
||||||
|
left: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#upload ul li i{
|
||||||
|
font-weight: normal;
|
||||||
|
font-style:normal;
|
||||||
|
color:#7f7f7f;
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#upload ul li canvas{
|
||||||
|
top: 15px;
|
||||||
|
left: 32px;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
#upload ul li span{
|
||||||
|
width: 15px;
|
||||||
|
height: 12px;
|
||||||
|
background: url('../img/icons.png') no-repeat;
|
||||||
|
position: absolute;
|
||||||
|
top: 34px;
|
||||||
|
right: 33px;
|
||||||
|
cursor:pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#upload ul li.working span{
|
||||||
|
height: 16px;
|
||||||
|
background-position: 0 -12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#upload ul li.error p{
|
||||||
|
color:red;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*----------------------------
|
||||||
|
The Demo Footer
|
||||||
|
-----------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
footer{
|
||||||
|
background-color: #080808;
|
||||||
|
bottom: 0;
|
||||||
|
box-shadow: 0 -1px 2px rgba(0,0,0,0.4);
|
||||||
|
height: 40px;
|
||||||
|
left: 0;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 100000;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer h2{
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: normal;
|
||||||
|
position: absolute;
|
||||||
|
top:0;
|
||||||
|
left: 50%;
|
||||||
|
bottom:0;
|
||||||
|
margin-left: -420px;
|
||||||
|
padding:13px 20px 0;
|
||||||
|
border:1px solid #000;
|
||||||
|
border-width:0 1px;
|
||||||
|
background-color:rgba(0,0,0,0.6);
|
||||||
|
box-shadow:0 0 5px #000 inset;
|
||||||
|
line-height: 1;
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer h2 a{
|
||||||
|
color: #EEEEEE !important;
|
||||||
|
text-decoration:none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer h2 i{
|
||||||
|
font-style:normal;
|
||||||
|
color:#888;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tzine-download{
|
||||||
|
opacity:0.9;
|
||||||
|
background-color:#257691;
|
||||||
|
font-size:11px;
|
||||||
|
text-align:center;
|
||||||
|
text-transform:uppercase;
|
||||||
|
width:150px;
|
||||||
|
height:28px;
|
||||||
|
line-height:28px;
|
||||||
|
text-decoration:none !important;
|
||||||
|
|
||||||
|
display: inline-block;
|
||||||
|
border-radius: 2px;
|
||||||
|
color: #fff !Important;
|
||||||
|
font-weight: bold;
|
||||||
|
box-shadow: 0 -1px 2px #1e5e74 inset;
|
||||||
|
|
||||||
|
border-top:1px solid #26849c;
|
||||||
|
|
||||||
|
text-shadow:1px 1px 1px #1e6176;
|
||||||
|
margin-top:6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tzine-download:hover{
|
||||||
|
opacity:1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tzine-actions{
|
||||||
|
position:absolute;
|
||||||
|
top:0;
|
||||||
|
width:500px;
|
||||||
|
right:50%;
|
||||||
|
margin-right:-420px;
|
||||||
|
text-align:right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tzine-actions iframe{
|
||||||
|
display: inline-block;
|
||||||
|
height: 21px;
|
||||||
|
width: 95px;
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
margin-top: 11px;
|
||||||
|
}
|
BIN
upload_base/assets/img/border-image.png
Executable file
BIN
upload_base/assets/img/border-image.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
BIN
upload_base/assets/img/icons.png
Executable file
BIN
upload_base/assets/img/icons.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
1201
upload_base/assets/js/jquery.fileupload.js
vendored
Executable file
1201
upload_base/assets/js/jquery.fileupload.js
vendored
Executable file
File diff suppressed because it is too large
Load diff
185
upload_base/assets/js/jquery.iframe-transport.js
Executable file
185
upload_base/assets/js/jquery.iframe-transport.js
Executable file
|
@ -0,0 +1,185 @@
|
||||||
|
/*
|
||||||
|
* jQuery Iframe Transport Plugin 1.6.1
|
||||||
|
* https://github.com/blueimp/jQuery-File-Upload
|
||||||
|
*
|
||||||
|
* Copyright 2011, Sebastian Tschan
|
||||||
|
* https://blueimp.net
|
||||||
|
*
|
||||||
|
* Licensed under the MIT license:
|
||||||
|
* http://www.opensource.org/licenses/MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*jslint unparam: true, nomen: true */
|
||||||
|
/*global define, window, document */
|
||||||
|
|
||||||
|
(function (factory) {
|
||||||
|
'use strict';
|
||||||
|
if (typeof define === 'function' && define.amd) {
|
||||||
|
// Register as an anonymous AMD module:
|
||||||
|
define(['jquery'], factory);
|
||||||
|
} else {
|
||||||
|
// Browser globals:
|
||||||
|
factory(window.jQuery);
|
||||||
|
}
|
||||||
|
}(function ($) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
// Helper variable to create unique names for the transport iframes:
|
||||||
|
var counter = 0;
|
||||||
|
|
||||||
|
// The iframe transport accepts three additional options:
|
||||||
|
// options.fileInput: a jQuery collection of file input fields
|
||||||
|
// options.paramName: the parameter name for the file form data,
|
||||||
|
// overrides the name property of the file input field(s),
|
||||||
|
// can be a string or an array of strings.
|
||||||
|
// options.formData: an array of objects with name and value properties,
|
||||||
|
// equivalent to the return data of .serializeArray(), e.g.:
|
||||||
|
// [{name: 'a', value: 1}, {name: 'b', value: 2}]
|
||||||
|
$.ajaxTransport('iframe', function (options) {
|
||||||
|
if (options.async) {
|
||||||
|
var form,
|
||||||
|
iframe,
|
||||||
|
addParamChar;
|
||||||
|
return {
|
||||||
|
send: function (_, completeCallback) {
|
||||||
|
form = $('<form style="display:none;"></form>');
|
||||||
|
form.attr('accept-charset', options.formAcceptCharset);
|
||||||
|
addParamChar = /\?/.test(options.url) ? '&' : '?';
|
||||||
|
// XDomainRequest only supports GET and POST:
|
||||||
|
if (options.type === 'DELETE') {
|
||||||
|
options.url = options.url + addParamChar + '_method=DELETE';
|
||||||
|
options.type = 'POST';
|
||||||
|
} else if (options.type === 'PUT') {
|
||||||
|
options.url = options.url + addParamChar + '_method=PUT';
|
||||||
|
options.type = 'POST';
|
||||||
|
} else if (options.type === 'PATCH') {
|
||||||
|
options.url = options.url + addParamChar + '_method=PATCH';
|
||||||
|
options.type = 'POST';
|
||||||
|
}
|
||||||
|
// javascript:false as initial iframe src
|
||||||
|
// prevents warning popups on HTTPS in IE6.
|
||||||
|
// IE versions below IE8 cannot set the name property of
|
||||||
|
// elements that have already been added to the DOM,
|
||||||
|
// so we set the name along with the iframe HTML markup:
|
||||||
|
iframe = $(
|
||||||
|
'<iframe src="javascript:false;" name="iframe-transport-' +
|
||||||
|
(counter += 1) + '"></iframe>'
|
||||||
|
).bind('load', function () {
|
||||||
|
var fileInputClones,
|
||||||
|
paramNames = $.isArray(options.paramName) ?
|
||||||
|
options.paramName : [options.paramName];
|
||||||
|
iframe
|
||||||
|
.unbind('load')
|
||||||
|
.bind('load', function () {
|
||||||
|
var response;
|
||||||
|
// Wrap in a try/catch block to catch exceptions thrown
|
||||||
|
// when trying to access cross-domain iframe contents:
|
||||||
|
try {
|
||||||
|
response = iframe.contents();
|
||||||
|
// Google Chrome and Firefox do not throw an
|
||||||
|
// exception when calling iframe.contents() on
|
||||||
|
// cross-domain requests, so we unify the response:
|
||||||
|
if (!response.length || !response[0].firstChild) {
|
||||||
|
throw new Error();
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
response = undefined;
|
||||||
|
}
|
||||||
|
// The complete callback returns the
|
||||||
|
// iframe content document as response object:
|
||||||
|
completeCallback(
|
||||||
|
200,
|
||||||
|
'success',
|
||||||
|
{'iframe': response}
|
||||||
|
);
|
||||||
|
// Fix for IE endless progress bar activity bug
|
||||||
|
// (happens on form submits to iframe targets):
|
||||||
|
$('<iframe src="javascript:false;"></iframe>')
|
||||||
|
.appendTo(form);
|
||||||
|
form.remove();
|
||||||
|
});
|
||||||
|
form
|
||||||
|
.prop('target', iframe.prop('name'))
|
||||||
|
.prop('action', options.url)
|
||||||
|
.prop('method', options.type);
|
||||||
|
if (options.formData) {
|
||||||
|
$.each(options.formData, function (index, field) {
|
||||||
|
$('<input type="hidden"/>')
|
||||||
|
.prop('name', field.name)
|
||||||
|
.val(field.value)
|
||||||
|
.appendTo(form);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (options.fileInput && options.fileInput.length &&
|
||||||
|
options.type === 'POST') {
|
||||||
|
fileInputClones = options.fileInput.clone();
|
||||||
|
// Insert a clone for each file input field:
|
||||||
|
options.fileInput.after(function (index) {
|
||||||
|
return fileInputClones[index];
|
||||||
|
});
|
||||||
|
if (options.paramName) {
|
||||||
|
options.fileInput.each(function (index) {
|
||||||
|
$(this).prop(
|
||||||
|
'name',
|
||||||
|
paramNames[index] || options.paramName
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// Appending the file input fields to the hidden form
|
||||||
|
// removes them from their original location:
|
||||||
|
form
|
||||||
|
.append(options.fileInput)
|
||||||
|
.prop('enctype', 'multipart/form-data')
|
||||||
|
// enctype must be set as encoding for IE:
|
||||||
|
.prop('encoding', 'multipart/form-data');
|
||||||
|
}
|
||||||
|
form.submit();
|
||||||
|
// Insert the file input fields at their original location
|
||||||
|
// by replacing the clones with the originals:
|
||||||
|
if (fileInputClones && fileInputClones.length) {
|
||||||
|
options.fileInput.each(function (index, input) {
|
||||||
|
var clone = $(fileInputClones[index]);
|
||||||
|
$(input).prop('name', clone.prop('name'));
|
||||||
|
clone.replaceWith(input);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
form.append(iframe).appendTo(document.body);
|
||||||
|
},
|
||||||
|
abort: function () {
|
||||||
|
if (iframe) {
|
||||||
|
// javascript:false as iframe src aborts the request
|
||||||
|
// and prevents warning popups on HTTPS in IE6.
|
||||||
|
// concat is used to avoid the "Script URL" JSLint error:
|
||||||
|
iframe
|
||||||
|
.unbind('load')
|
||||||
|
.prop('src', 'javascript'.concat(':false;'));
|
||||||
|
}
|
||||||
|
if (form) {
|
||||||
|
form.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// The iframe transport returns the iframe content document as response.
|
||||||
|
// The following adds converters from iframe to text, json, html, and script:
|
||||||
|
$.ajaxSetup({
|
||||||
|
converters: {
|
||||||
|
'iframe text': function (iframe) {
|
||||||
|
return iframe && $(iframe[0].body).text();
|
||||||
|
},
|
||||||
|
'iframe json': function (iframe) {
|
||||||
|
return iframe && $.parseJSON($(iframe[0].body).text());
|
||||||
|
},
|
||||||
|
'iframe html': function (iframe) {
|
||||||
|
return iframe && $(iframe[0].body).html();
|
||||||
|
},
|
||||||
|
'iframe script': function (iframe) {
|
||||||
|
return iframe && $.globalEval($(iframe[0].body).text());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}));
|
661
upload_base/assets/js/jquery.knob.js
Executable file
661
upload_base/assets/js/jquery.knob.js
Executable file
|
@ -0,0 +1,661 @@
|
||||||
|
/*!jQuery Knob*/
|
||||||
|
/**
|
||||||
|
* Downward compatible, touchable dial
|
||||||
|
*
|
||||||
|
* Version: 1.2.0 (15/07/2012)
|
||||||
|
* Requires: jQuery v1.7+
|
||||||
|
*
|
||||||
|
* Copyright (c) 2012 Anthony Terrien
|
||||||
|
* Under MIT and GPL licenses:
|
||||||
|
* http://www.opensource.org/licenses/mit-license.php
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Thanks to vor, eskimoblood, spiffistan, FabrizioC
|
||||||
|
*/
|
||||||
|
(function($) {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Kontrol library
|
||||||
|
*/
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Definition of globals and core
|
||||||
|
*/
|
||||||
|
var k = {}, // kontrol
|
||||||
|
max = Math.max,
|
||||||
|
min = Math.min;
|
||||||
|
|
||||||
|
k.c = {};
|
||||||
|
k.c.d = $(document);
|
||||||
|
k.c.t = function (e) {
|
||||||
|
return e.originalEvent.touches.length - 1;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Kontrol Object
|
||||||
|
*
|
||||||
|
* Definition of an abstract UI control
|
||||||
|
*
|
||||||
|
* Each concrete component must call this one.
|
||||||
|
* <code>
|
||||||
|
* k.o.call(this);
|
||||||
|
* </code>
|
||||||
|
*/
|
||||||
|
k.o = function () {
|
||||||
|
var s = this;
|
||||||
|
|
||||||
|
this.o = null; // array of options
|
||||||
|
this.$ = null; // jQuery wrapped element
|
||||||
|
this.i = null; // mixed HTMLInputElement or array of HTMLInputElement
|
||||||
|
this.g = null; // 2D graphics context for 'pre-rendering'
|
||||||
|
this.v = null; // value ; mixed array or integer
|
||||||
|
this.cv = null; // change value ; not commited value
|
||||||
|
this.x = 0; // canvas x position
|
||||||
|
this.y = 0; // canvas y position
|
||||||
|
this.$c = null; // jQuery canvas element
|
||||||
|
this.c = null; // rendered canvas context
|
||||||
|
this.t = 0; // touches index
|
||||||
|
this.isInit = false;
|
||||||
|
this.fgColor = null; // main color
|
||||||
|
this.pColor = null; // previous color
|
||||||
|
this.dH = null; // draw hook
|
||||||
|
this.cH = null; // change hook
|
||||||
|
this.eH = null; // cancel hook
|
||||||
|
this.rH = null; // release hook
|
||||||
|
|
||||||
|
this.run = function () {
|
||||||
|
var cf = function (e, conf) {
|
||||||
|
var k;
|
||||||
|
for (k in conf) {
|
||||||
|
s.o[k] = conf[k];
|
||||||
|
}
|
||||||
|
s.init();
|
||||||
|
s._configure()
|
||||||
|
._draw();
|
||||||
|
};
|
||||||
|
|
||||||
|
if(this.$.data('kontroled')) return;
|
||||||
|
this.$.data('kontroled', true);
|
||||||
|
|
||||||
|
this.extend();
|
||||||
|
this.o = $.extend(
|
||||||
|
{
|
||||||
|
// Config
|
||||||
|
min : this.$.data('min') || 0,
|
||||||
|
max : this.$.data('max') || 100,
|
||||||
|
stopper : true,
|
||||||
|
readOnly : this.$.data('readonly'),
|
||||||
|
|
||||||
|
// UI
|
||||||
|
cursor : (this.$.data('cursor') === true && 30)
|
||||||
|
|| this.$.data('cursor')
|
||||||
|
|| 0,
|
||||||
|
thickness : this.$.data('thickness') || 0.35,
|
||||||
|
lineCap : this.$.data('linecap') || 'butt',
|
||||||
|
width : this.$.data('width') || 200,
|
||||||
|
height : this.$.data('height') || 200,
|
||||||
|
displayInput : this.$.data('displayinput') == null || this.$.data('displayinput'),
|
||||||
|
displayPrevious : this.$.data('displayprevious'),
|
||||||
|
fgColor : this.$.data('fgcolor') || '#87CEEB',
|
||||||
|
inputColor: this.$.data('inputcolor') || this.$.data('fgcolor') || '#87CEEB',
|
||||||
|
inline : false,
|
||||||
|
step : this.$.data('step') || 1,
|
||||||
|
|
||||||
|
// Hooks
|
||||||
|
draw : null, // function () {}
|
||||||
|
change : null, // function (value) {}
|
||||||
|
cancel : null, // function () {}
|
||||||
|
release : null // function (value) {}
|
||||||
|
}, this.o
|
||||||
|
);
|
||||||
|
|
||||||
|
// routing value
|
||||||
|
if(this.$.is('fieldset')) {
|
||||||
|
|
||||||
|
// fieldset = array of integer
|
||||||
|
this.v = {};
|
||||||
|
this.i = this.$.find('input')
|
||||||
|
this.i.each(function(k) {
|
||||||
|
var $this = $(this);
|
||||||
|
s.i[k] = $this;
|
||||||
|
s.v[k] = $this.val();
|
||||||
|
|
||||||
|
$this.bind(
|
||||||
|
'change'
|
||||||
|
, function () {
|
||||||
|
var val = {};
|
||||||
|
val[k] = $this.val();
|
||||||
|
s.val(val);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
this.$.find('legend').remove();
|
||||||
|
|
||||||
|
} else {
|
||||||
|
// input = integer
|
||||||
|
this.i = this.$;
|
||||||
|
this.v = this.$.val();
|
||||||
|
(this.v == '') && (this.v = this.o.min);
|
||||||
|
|
||||||
|
this.$.bind(
|
||||||
|
'change'
|
||||||
|
, function () {
|
||||||
|
s.val(s._validate(s.$.val()));
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
(!this.o.displayInput) && this.$.hide();
|
||||||
|
|
||||||
|
this.$c = $('<canvas width="' +
|
||||||
|
this.o.width + 'px" height="' +
|
||||||
|
this.o.height + 'px"></canvas>');
|
||||||
|
this.c = this.$c[0].getContext("2d");
|
||||||
|
|
||||||
|
this.$
|
||||||
|
.wrap($('<div style="' + (this.o.inline ? 'display:inline;' : '') +
|
||||||
|
'width:' + this.o.width + 'px;height:' +
|
||||||
|
this.o.height + 'px;"></div>'))
|
||||||
|
.before(this.$c);
|
||||||
|
|
||||||
|
if (this.v instanceof Object) {
|
||||||
|
this.cv = {};
|
||||||
|
this.copy(this.v, this.cv);
|
||||||
|
} else {
|
||||||
|
this.cv = this.v;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$
|
||||||
|
.bind("configure", cf)
|
||||||
|
.parent()
|
||||||
|
.bind("configure", cf);
|
||||||
|
|
||||||
|
this._listen()
|
||||||
|
._configure()
|
||||||
|
._xy()
|
||||||
|
.init();
|
||||||
|
|
||||||
|
this.isInit = true;
|
||||||
|
|
||||||
|
this._draw();
|
||||||
|
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
this._draw = function () {
|
||||||
|
|
||||||
|
// canvas pre-rendering
|
||||||
|
var d = true,
|
||||||
|
c = document.createElement('canvas');
|
||||||
|
|
||||||
|
c.width = s.o.width;
|
||||||
|
c.height = s.o.height;
|
||||||
|
s.g = c.getContext('2d');
|
||||||
|
|
||||||
|
s.clear();
|
||||||
|
|
||||||
|
s.dH
|
||||||
|
&& (d = s.dH());
|
||||||
|
|
||||||
|
(d !== false) && s.draw();
|
||||||
|
|
||||||
|
s.c.drawImage(c, 0, 0);
|
||||||
|
c = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
this._touch = function (e) {
|
||||||
|
|
||||||
|
var touchMove = function (e) {
|
||||||
|
|
||||||
|
var v = s.xy2val(
|
||||||
|
e.originalEvent.touches[s.t].pageX,
|
||||||
|
e.originalEvent.touches[s.t].pageY
|
||||||
|
);
|
||||||
|
|
||||||
|
if (v == s.cv) return;
|
||||||
|
|
||||||
|
if (
|
||||||
|
s.cH
|
||||||
|
&& (s.cH(v) === false)
|
||||||
|
) return;
|
||||||
|
|
||||||
|
|
||||||
|
s.change(s._validate(v));
|
||||||
|
s._draw();
|
||||||
|
};
|
||||||
|
|
||||||
|
// get touches index
|
||||||
|
this.t = k.c.t(e);
|
||||||
|
|
||||||
|
// First touch
|
||||||
|
touchMove(e);
|
||||||
|
|
||||||
|
// Touch events listeners
|
||||||
|
k.c.d
|
||||||
|
.bind("touchmove.k", touchMove)
|
||||||
|
.bind(
|
||||||
|
"touchend.k"
|
||||||
|
, function () {
|
||||||
|
k.c.d.unbind('touchmove.k touchend.k');
|
||||||
|
|
||||||
|
if (
|
||||||
|
s.rH
|
||||||
|
&& (s.rH(s.cv) === false)
|
||||||
|
) return;
|
||||||
|
|
||||||
|
s.val(s.cv);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
this._mouse = function (e) {
|
||||||
|
|
||||||
|
var mouseMove = function (e) {
|
||||||
|
var v = s.xy2val(e.pageX, e.pageY);
|
||||||
|
if (v == s.cv) return;
|
||||||
|
|
||||||
|
if (
|
||||||
|
s.cH
|
||||||
|
&& (s.cH(v) === false)
|
||||||
|
) return;
|
||||||
|
|
||||||
|
s.change(s._validate(v));
|
||||||
|
s._draw();
|
||||||
|
};
|
||||||
|
|
||||||
|
// First click
|
||||||
|
mouseMove(e);
|
||||||
|
|
||||||
|
// Mouse events listeners
|
||||||
|
k.c.d
|
||||||
|
.bind("mousemove.k", mouseMove)
|
||||||
|
.bind(
|
||||||
|
// Escape key cancel current change
|
||||||
|
"keyup.k"
|
||||||
|
, function (e) {
|
||||||
|
if (e.keyCode === 27) {
|
||||||
|
k.c.d.unbind("mouseup.k mousemove.k keyup.k");
|
||||||
|
|
||||||
|
if (
|
||||||
|
s.eH
|
||||||
|
&& (s.eH() === false)
|
||||||
|
) return;
|
||||||
|
|
||||||
|
s.cancel();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.bind(
|
||||||
|
"mouseup.k"
|
||||||
|
, function (e) {
|
||||||
|
k.c.d.unbind('mousemove.k mouseup.k keyup.k');
|
||||||
|
|
||||||
|
if (
|
||||||
|
s.rH
|
||||||
|
&& (s.rH(s.cv) === false)
|
||||||
|
) return;
|
||||||
|
|
||||||
|
s.val(s.cv);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
this._xy = function () {
|
||||||
|
var o = this.$c.offset();
|
||||||
|
this.x = o.left;
|
||||||
|
this.y = o.top;
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
this._listen = function () {
|
||||||
|
|
||||||
|
if (!this.o.readOnly) {
|
||||||
|
this.$c
|
||||||
|
.bind(
|
||||||
|
"mousedown"
|
||||||
|
, function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
s._xy()._mouse(e);
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.bind(
|
||||||
|
"touchstart"
|
||||||
|
, function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
s._xy()._touch(e);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
this.listen();
|
||||||
|
} else {
|
||||||
|
this.$.attr('readonly', 'readonly');
|
||||||
|
}
|
||||||
|
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
this._configure = function () {
|
||||||
|
|
||||||
|
// Hooks
|
||||||
|
if (this.o.draw) this.dH = this.o.draw;
|
||||||
|
if (this.o.change) this.cH = this.o.change;
|
||||||
|
if (this.o.cancel) this.eH = this.o.cancel;
|
||||||
|
if (this.o.release) this.rH = this.o.release;
|
||||||
|
|
||||||
|
if (this.o.displayPrevious) {
|
||||||
|
this.pColor = this.h2rgba(this.o.fgColor, "0.4");
|
||||||
|
this.fgColor = this.h2rgba(this.o.fgColor, "0.6");
|
||||||
|
} else {
|
||||||
|
this.fgColor = this.o.fgColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
this._clear = function () {
|
||||||
|
this.$c[0].width = this.$c[0].width;
|
||||||
|
};
|
||||||
|
|
||||||
|
this._validate = function(v) {
|
||||||
|
return (~~ (((v < 0) ? -0.5 : 0.5) + (v/this.o.step))) * this.o.step;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Abstract methods
|
||||||
|
this.listen = function () {}; // on start, one time
|
||||||
|
this.extend = function () {}; // each time configure triggered
|
||||||
|
this.init = function () {}; // each time configure triggered
|
||||||
|
this.change = function (v) {}; // on change
|
||||||
|
this.val = function (v) {}; // on release
|
||||||
|
this.xy2val = function (x, y) {}; //
|
||||||
|
this.draw = function () {}; // on change / on release
|
||||||
|
this.clear = function () { this._clear(); };
|
||||||
|
|
||||||
|
// Utils
|
||||||
|
this.h2rgba = function (h, a) {
|
||||||
|
var rgb;
|
||||||
|
h = h.substring(1,7)
|
||||||
|
rgb = [parseInt(h.substring(0,2),16)
|
||||||
|
,parseInt(h.substring(2,4),16)
|
||||||
|
,parseInt(h.substring(4,6),16)];
|
||||||
|
return "rgba(" + rgb[0] + "," + rgb[1] + "," + rgb[2] + "," + a + ")";
|
||||||
|
};
|
||||||
|
|
||||||
|
this.copy = function (f, t) {
|
||||||
|
for (var i in f) { t[i] = f[i]; }
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* k.Dial
|
||||||
|
*/
|
||||||
|
k.Dial = function () {
|
||||||
|
k.o.call(this);
|
||||||
|
|
||||||
|
this.startAngle = null;
|
||||||
|
this.xy = null;
|
||||||
|
this.radius = null;
|
||||||
|
this.lineWidth = null;
|
||||||
|
this.cursorExt = null;
|
||||||
|
this.w2 = null;
|
||||||
|
this.PI2 = 2*Math.PI;
|
||||||
|
|
||||||
|
this.extend = function () {
|
||||||
|
this.o = $.extend(
|
||||||
|
{
|
||||||
|
bgColor : this.$.data('bgcolor') || '#EEEEEE',
|
||||||
|
angleOffset : this.$.data('angleoffset') || 0,
|
||||||
|
angleArc : this.$.data('anglearc') || 360,
|
||||||
|
inline : true
|
||||||
|
}, this.o
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
this.val = function (v) {
|
||||||
|
if (null != v) {
|
||||||
|
this.cv = this.o.stopper ? max(min(v, this.o.max), this.o.min) : v;
|
||||||
|
this.v = this.cv;
|
||||||
|
this.$.val(this.v);
|
||||||
|
this._draw();
|
||||||
|
} else {
|
||||||
|
return this.v;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
this.xy2val = function (x, y) {
|
||||||
|
var a, ret;
|
||||||
|
|
||||||
|
a = Math.atan2(
|
||||||
|
x - (this.x + this.w2)
|
||||||
|
, - (y - this.y - this.w2)
|
||||||
|
) - this.angleOffset;
|
||||||
|
|
||||||
|
if(this.angleArc != this.PI2 && (a < 0) && (a > -0.5)) {
|
||||||
|
// if isset angleArc option, set to min if .5 under min
|
||||||
|
a = 0;
|
||||||
|
} else if (a < 0) {
|
||||||
|
a += this.PI2;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = ~~ (0.5 + (a * (this.o.max - this.o.min) / this.angleArc))
|
||||||
|
+ this.o.min;
|
||||||
|
|
||||||
|
this.o.stopper
|
||||||
|
&& (ret = max(min(ret, this.o.max), this.o.min));
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
};
|
||||||
|
|
||||||
|
this.listen = function () {
|
||||||
|
// bind MouseWheel
|
||||||
|
var s = this,
|
||||||
|
mw = function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
var ori = e.originalEvent
|
||||||
|
,deltaX = ori.detail || ori.wheelDeltaX
|
||||||
|
,deltaY = ori.detail || ori.wheelDeltaY
|
||||||
|
,v = parseInt(s.$.val()) + (deltaX>0 || deltaY>0 ? s.o.step : deltaX<0 || deltaY<0 ? -s.o.step : 0);
|
||||||
|
|
||||||
|
if (
|
||||||
|
s.cH
|
||||||
|
&& (s.cH(v) === false)
|
||||||
|
) return;
|
||||||
|
|
||||||
|
s.val(v);
|
||||||
|
}
|
||||||
|
, kval, to, m = 1, kv = {37:-s.o.step, 38:s.o.step, 39:s.o.step, 40:-s.o.step};
|
||||||
|
|
||||||
|
this.$
|
||||||
|
.bind(
|
||||||
|
"keydown"
|
||||||
|
,function (e) {
|
||||||
|
var kc = e.keyCode;
|
||||||
|
|
||||||
|
// numpad support
|
||||||
|
if(kc >= 96 && kc <= 105) {
|
||||||
|
kc = e.keyCode = kc - 48;
|
||||||
|
}
|
||||||
|
|
||||||
|
kval = parseInt(String.fromCharCode(kc));
|
||||||
|
|
||||||
|
if (isNaN(kval)) {
|
||||||
|
|
||||||
|
(kc !== 13) // enter
|
||||||
|
&& (kc !== 8) // bs
|
||||||
|
&& (kc !== 9) // tab
|
||||||
|
&& (kc !== 189) // -
|
||||||
|
&& e.preventDefault();
|
||||||
|
|
||||||
|
// arrows
|
||||||
|
if ($.inArray(kc,[37,38,39,40]) > -1) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
var v = parseInt(s.$.val()) + kv[kc] * m;
|
||||||
|
|
||||||
|
s.o.stopper
|
||||||
|
&& (v = max(min(v, s.o.max), s.o.min));
|
||||||
|
|
||||||
|
s.change(v);
|
||||||
|
s._draw();
|
||||||
|
|
||||||
|
// long time keydown speed-up
|
||||||
|
to = window.setTimeout(
|
||||||
|
function () { m*=2; }
|
||||||
|
,30
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.bind(
|
||||||
|
"keyup"
|
||||||
|
,function (e) {
|
||||||
|
if (isNaN(kval)) {
|
||||||
|
if (to) {
|
||||||
|
window.clearTimeout(to);
|
||||||
|
to = null;
|
||||||
|
m = 1;
|
||||||
|
s.val(s.$.val());
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// kval postcond
|
||||||
|
(s.$.val() > s.o.max && s.$.val(s.o.max))
|
||||||
|
|| (s.$.val() < s.o.min && s.$.val(s.o.min));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
this.$c.bind("mousewheel DOMMouseScroll", mw);
|
||||||
|
this.$.bind("mousewheel DOMMouseScroll", mw)
|
||||||
|
};
|
||||||
|
|
||||||
|
this.init = function () {
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.v < this.o.min
|
||||||
|
|| this.v > this.o.max
|
||||||
|
) this.v = this.o.min;
|
||||||
|
|
||||||
|
this.$.val(this.v);
|
||||||
|
this.w2 = this.o.width / 2;
|
||||||
|
this.cursorExt = this.o.cursor / 100;
|
||||||
|
this.xy = this.w2;
|
||||||
|
this.lineWidth = this.xy * this.o.thickness;
|
||||||
|
this.lineCap = this.o.lineCap;
|
||||||
|
this.radius = this.xy - this.lineWidth / 2;
|
||||||
|
|
||||||
|
this.o.angleOffset
|
||||||
|
&& (this.o.angleOffset = isNaN(this.o.angleOffset) ? 0 : this.o.angleOffset);
|
||||||
|
|
||||||
|
this.o.angleArc
|
||||||
|
&& (this.o.angleArc = isNaN(this.o.angleArc) ? this.PI2 : this.o.angleArc);
|
||||||
|
|
||||||
|
// deg to rad
|
||||||
|
this.angleOffset = this.o.angleOffset * Math.PI / 180;
|
||||||
|
this.angleArc = this.o.angleArc * Math.PI / 180;
|
||||||
|
|
||||||
|
// compute start and end angles
|
||||||
|
this.startAngle = 1.5 * Math.PI + this.angleOffset;
|
||||||
|
this.endAngle = 1.5 * Math.PI + this.angleOffset + this.angleArc;
|
||||||
|
|
||||||
|
var s = max(
|
||||||
|
String(Math.abs(this.o.max)).length
|
||||||
|
, String(Math.abs(this.o.min)).length
|
||||||
|
, 2
|
||||||
|
) + 2;
|
||||||
|
|
||||||
|
this.o.displayInput
|
||||||
|
&& this.i.css({
|
||||||
|
'width' : ((this.o.width / 2 + 4) >> 0) + 'px'
|
||||||
|
,'height' : ((this.o.width / 3) >> 0) + 'px'
|
||||||
|
,'position' : 'absolute'
|
||||||
|
,'vertical-align' : 'middle'
|
||||||
|
,'margin-top' : ((this.o.width / 3) >> 0) + 'px'
|
||||||
|
,'margin-left' : '-' + ((this.o.width * 3 / 4 + 2) >> 0) + 'px'
|
||||||
|
,'border' : 0
|
||||||
|
,'background' : 'none'
|
||||||
|
,'font' : 'bold ' + ((this.o.width / s) >> 0) + 'px Arial'
|
||||||
|
,'text-align' : 'center'
|
||||||
|
,'color' : this.o.inputColor || this.o.fgColor
|
||||||
|
,'padding' : '0px'
|
||||||
|
,'-webkit-appearance': 'none'
|
||||||
|
})
|
||||||
|
|| this.i.css({
|
||||||
|
'width' : '0px'
|
||||||
|
,'visibility' : 'hidden'
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
this.change = function (v) {
|
||||||
|
this.cv = v;
|
||||||
|
this.$.val(v);
|
||||||
|
};
|
||||||
|
|
||||||
|
this.angle = function (v) {
|
||||||
|
return (v - this.o.min) * this.angleArc / (this.o.max - this.o.min);
|
||||||
|
};
|
||||||
|
|
||||||
|
this.draw = function () {
|
||||||
|
|
||||||
|
var c = this.g, // context
|
||||||
|
a = this.angle(this.cv) // Angle
|
||||||
|
, sat = this.startAngle // Start angle
|
||||||
|
, eat = sat + a // End angle
|
||||||
|
, sa, ea // Previous angles
|
||||||
|
, r = 1;
|
||||||
|
|
||||||
|
c.lineWidth = this.lineWidth;
|
||||||
|
|
||||||
|
c.lineCap = this.lineCap;
|
||||||
|
|
||||||
|
this.o.cursor
|
||||||
|
&& (sat = eat - this.cursorExt)
|
||||||
|
&& (eat = eat + this.cursorExt);
|
||||||
|
|
||||||
|
c.beginPath();
|
||||||
|
c.strokeStyle = this.o.bgColor;
|
||||||
|
c.arc(this.xy, this.xy, this.radius, this.endAngle, this.startAngle, true);
|
||||||
|
c.stroke();
|
||||||
|
|
||||||
|
if (this.o.displayPrevious) {
|
||||||
|
ea = this.startAngle + this.angle(this.v);
|
||||||
|
sa = this.startAngle;
|
||||||
|
this.o.cursor
|
||||||
|
&& (sa = ea - this.cursorExt)
|
||||||
|
&& (ea = ea + this.cursorExt);
|
||||||
|
|
||||||
|
c.beginPath();
|
||||||
|
c.strokeStyle = this.pColor;
|
||||||
|
c.arc(this.xy, this.xy, this.radius, sa, ea, false);
|
||||||
|
c.stroke();
|
||||||
|
r = (this.cv == this.v);
|
||||||
|
}
|
||||||
|
|
||||||
|
c.beginPath();
|
||||||
|
c.strokeStyle = r ? this.o.fgColor : this.fgColor ;
|
||||||
|
c.arc(this.xy, this.xy, this.radius, sat, eat, false);
|
||||||
|
c.stroke();
|
||||||
|
};
|
||||||
|
|
||||||
|
this.cancel = function () {
|
||||||
|
this.val(this.v);
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
$.fn.dial = $.fn.knob = function (o) {
|
||||||
|
return this.each(
|
||||||
|
function () {
|
||||||
|
var d = new k.Dial();
|
||||||
|
d.o = o;
|
||||||
|
d.$ = $(this);
|
||||||
|
d.run();
|
||||||
|
}
|
||||||
|
).parent();
|
||||||
|
};
|
||||||
|
|
||||||
|
})(jQuery);
|
5
upload_base/assets/js/jquery.min.js
vendored
Executable file
5
upload_base/assets/js/jquery.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
530
upload_base/assets/js/jquery.ui.widget.js
vendored
Executable file
530
upload_base/assets/js/jquery.ui.widget.js
vendored
Executable file
|
@ -0,0 +1,530 @@
|
||||||
|
/*
|
||||||
|
* jQuery UI Widget 1.10.1+amd
|
||||||
|
* https://github.com/blueimp/jQuery-File-Upload
|
||||||
|
*
|
||||||
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
|
* Released under the MIT license.
|
||||||
|
* http://jquery.org/license
|
||||||
|
*
|
||||||
|
* http://api.jqueryui.com/jQuery.widget/
|
||||||
|
*/
|
||||||
|
|
||||||
|
(function (factory) {
|
||||||
|
if (typeof define === "function" && define.amd) {
|
||||||
|
// Register as an anonymous AMD module:
|
||||||
|
define(["jquery"], factory);
|
||||||
|
} else {
|
||||||
|
// Browser globals:
|
||||||
|
factory(jQuery);
|
||||||
|
}
|
||||||
|
}(function( $, undefined ) {
|
||||||
|
|
||||||
|
var uuid = 0,
|
||||||
|
slice = Array.prototype.slice,
|
||||||
|
_cleanData = $.cleanData;
|
||||||
|
$.cleanData = function( elems ) {
|
||||||
|
for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {
|
||||||
|
try {
|
||||||
|
$( elem ).triggerHandler( "remove" );
|
||||||
|
// http://bugs.jquery.com/ticket/8235
|
||||||
|
} catch( e ) {}
|
||||||
|
}
|
||||||
|
_cleanData( elems );
|
||||||
|
};
|
||||||
|
|
||||||
|
$.widget = function( name, base, prototype ) {
|
||||||
|
var fullName, existingConstructor, constructor, basePrototype,
|
||||||
|
// proxiedPrototype allows the provided prototype to remain unmodified
|
||||||
|
// so that it can be used as a mixin for multiple widgets (#8876)
|
||||||
|
proxiedPrototype = {},
|
||||||
|
namespace = name.split( "." )[ 0 ];
|
||||||
|
|
||||||
|
name = name.split( "." )[ 1 ];
|
||||||
|
fullName = namespace + "-" + name;
|
||||||
|
|
||||||
|
if ( !prototype ) {
|
||||||
|
prototype = base;
|
||||||
|
base = $.Widget;
|
||||||
|
}
|
||||||
|
|
||||||
|
// create selector for plugin
|
||||||
|
$.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) {
|
||||||
|
return !!$.data( elem, fullName );
|
||||||
|
};
|
||||||
|
|
||||||
|
$[ namespace ] = $[ namespace ] || {};
|
||||||
|
existingConstructor = $[ namespace ][ name ];
|
||||||
|
constructor = $[ namespace ][ name ] = function( options, element ) {
|
||||||
|
// allow instantiation without "new" keyword
|
||||||
|
if ( !this._createWidget ) {
|
||||||
|
return new constructor( options, element );
|
||||||
|
}
|
||||||
|
|
||||||
|
// allow instantiation without initializing for simple inheritance
|
||||||
|
// must use "new" keyword (the code above always passes args)
|
||||||
|
if ( arguments.length ) {
|
||||||
|
this._createWidget( options, element );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
// extend with the existing constructor to carry over any static properties
|
||||||
|
$.extend( constructor, existingConstructor, {
|
||||||
|
version: prototype.version,
|
||||||
|
// copy the object used to create the prototype in case we need to
|
||||||
|
// redefine the widget later
|
||||||
|
_proto: $.extend( {}, prototype ),
|
||||||
|
// track widgets that inherit from this widget in case this widget is
|
||||||
|
// redefined after a widget inherits from it
|
||||||
|
_childConstructors: []
|
||||||
|
});
|
||||||
|
|
||||||
|
basePrototype = new base();
|
||||||
|
// we need to make the options hash a property directly on the new instance
|
||||||
|
// otherwise we'll modify the options hash on the prototype that we're
|
||||||
|
// inheriting from
|
||||||
|
basePrototype.options = $.widget.extend( {}, basePrototype.options );
|
||||||
|
$.each( prototype, function( prop, value ) {
|
||||||
|
if ( !$.isFunction( value ) ) {
|
||||||
|
proxiedPrototype[ prop ] = value;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
proxiedPrototype[ prop ] = (function() {
|
||||||
|
var _super = function() {
|
||||||
|
return base.prototype[ prop ].apply( this, arguments );
|
||||||
|
},
|
||||||
|
_superApply = function( args ) {
|
||||||
|
return base.prototype[ prop ].apply( this, args );
|
||||||
|
};
|
||||||
|
return function() {
|
||||||
|
var __super = this._super,
|
||||||
|
__superApply = this._superApply,
|
||||||
|
returnValue;
|
||||||
|
|
||||||
|
this._super = _super;
|
||||||
|
this._superApply = _superApply;
|
||||||
|
|
||||||
|
returnValue = value.apply( this, arguments );
|
||||||
|
|
||||||
|
this._super = __super;
|
||||||
|
this._superApply = __superApply;
|
||||||
|
|
||||||
|
return returnValue;
|
||||||
|
};
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
constructor.prototype = $.widget.extend( basePrototype, {
|
||||||
|
// TODO: remove support for widgetEventPrefix
|
||||||
|
// always use the name + a colon as the prefix, e.g., draggable:start
|
||||||
|
// don't prefix for widgets that aren't DOM-based
|
||||||
|
widgetEventPrefix: existingConstructor ? basePrototype.widgetEventPrefix : name
|
||||||
|
}, proxiedPrototype, {
|
||||||
|
constructor: constructor,
|
||||||
|
namespace: namespace,
|
||||||
|
widgetName: name,
|
||||||
|
widgetFullName: fullName
|
||||||
|
});
|
||||||
|
|
||||||
|
// If this widget is being redefined then we need to find all widgets that
|
||||||
|
// are inheriting from it and redefine all of them so that they inherit from
|
||||||
|
// the new version of this widget. We're essentially trying to replace one
|
||||||
|
// level in the prototype chain.
|
||||||
|
if ( existingConstructor ) {
|
||||||
|
$.each( existingConstructor._childConstructors, function( i, child ) {
|
||||||
|
var childPrototype = child.prototype;
|
||||||
|
|
||||||
|
// redefine the child widget using the same prototype that was
|
||||||
|
// originally used, but inherit from the new version of the base
|
||||||
|
$.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto );
|
||||||
|
});
|
||||||
|
// remove the list of existing child constructors from the old constructor
|
||||||
|
// so the old child constructors can be garbage collected
|
||||||
|
delete existingConstructor._childConstructors;
|
||||||
|
} else {
|
||||||
|
base._childConstructors.push( constructor );
|
||||||
|
}
|
||||||
|
|
||||||
|
$.widget.bridge( name, constructor );
|
||||||
|
};
|
||||||
|
|
||||||
|
$.widget.extend = function( target ) {
|
||||||
|
var input = slice.call( arguments, 1 ),
|
||||||
|
inputIndex = 0,
|
||||||
|
inputLength = input.length,
|
||||||
|
key,
|
||||||
|
value;
|
||||||
|
for ( ; inputIndex < inputLength; inputIndex++ ) {
|
||||||
|
for ( key in input[ inputIndex ] ) {
|
||||||
|
value = input[ inputIndex ][ key ];
|
||||||
|
if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) {
|
||||||
|
// Clone objects
|
||||||
|
if ( $.isPlainObject( value ) ) {
|
||||||
|
target[ key ] = $.isPlainObject( target[ key ] ) ?
|
||||||
|
$.widget.extend( {}, target[ key ], value ) :
|
||||||
|
// Don't extend strings, arrays, etc. with objects
|
||||||
|
$.widget.extend( {}, value );
|
||||||
|
// Copy everything else by reference
|
||||||
|
} else {
|
||||||
|
target[ key ] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return target;
|
||||||
|
};
|
||||||
|
|
||||||
|
$.widget.bridge = function( name, object ) {
|
||||||
|
var fullName = object.prototype.widgetFullName || name;
|
||||||
|
$.fn[ name ] = function( options ) {
|
||||||
|
var isMethodCall = typeof options === "string",
|
||||||
|
args = slice.call( arguments, 1 ),
|
||||||
|
returnValue = this;
|
||||||
|
|
||||||
|
// allow multiple hashes to be passed on init
|
||||||
|
options = !isMethodCall && args.length ?
|
||||||
|
$.widget.extend.apply( null, [ options ].concat(args) ) :
|
||||||
|
options;
|
||||||
|
|
||||||
|
if ( isMethodCall ) {
|
||||||
|
this.each(function() {
|
||||||
|
var methodValue,
|
||||||
|
instance = $.data( this, fullName );
|
||||||
|
if ( !instance ) {
|
||||||
|
return $.error( "cannot call methods on " + name + " prior to initialization; " +
|
||||||
|
"attempted to call method '" + options + "'" );
|
||||||
|
}
|
||||||
|
if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) {
|
||||||
|
return $.error( "no such method '" + options + "' for " + name + " widget instance" );
|
||||||
|
}
|
||||||
|
methodValue = instance[ options ].apply( instance, args );
|
||||||
|
if ( methodValue !== instance && methodValue !== undefined ) {
|
||||||
|
returnValue = methodValue && methodValue.jquery ?
|
||||||
|
returnValue.pushStack( methodValue.get() ) :
|
||||||
|
methodValue;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.each(function() {
|
||||||
|
var instance = $.data( this, fullName );
|
||||||
|
if ( instance ) {
|
||||||
|
instance.option( options || {} )._init();
|
||||||
|
} else {
|
||||||
|
$.data( this, fullName, new object( options, this ) );
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return returnValue;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
$.Widget = function( /* options, element */ ) {};
|
||||||
|
$.Widget._childConstructors = [];
|
||||||
|
|
||||||
|
$.Widget.prototype = {
|
||||||
|
widgetName: "widget",
|
||||||
|
widgetEventPrefix: "",
|
||||||
|
defaultElement: "<div>",
|
||||||
|
options: {
|
||||||
|
disabled: false,
|
||||||
|
|
||||||
|
// callbacks
|
||||||
|
create: null
|
||||||
|
},
|
||||||
|
_createWidget: function( options, element ) {
|
||||||
|
element = $( element || this.defaultElement || this )[ 0 ];
|
||||||
|
this.element = $( element );
|
||||||
|
this.uuid = uuid++;
|
||||||
|
this.eventNamespace = "." + this.widgetName + this.uuid;
|
||||||
|
this.options = $.widget.extend( {},
|
||||||
|
this.options,
|
||||||
|
this._getCreateOptions(),
|
||||||
|
options );
|
||||||
|
|
||||||
|
this.bindings = $();
|
||||||
|
this.hoverable = $();
|
||||||
|
this.focusable = $();
|
||||||
|
|
||||||
|
if ( element !== this ) {
|
||||||
|
$.data( element, this.widgetFullName, this );
|
||||||
|
this._on( true, this.element, {
|
||||||
|
remove: function( event ) {
|
||||||
|
if ( event.target === element ) {
|
||||||
|
this.destroy();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.document = $( element.style ?
|
||||||
|
// element within the document
|
||||||
|
element.ownerDocument :
|
||||||
|
// element is window or document
|
||||||
|
element.document || element );
|
||||||
|
this.window = $( this.document[0].defaultView || this.document[0].parentWindow );
|
||||||
|
}
|
||||||
|
|
||||||
|
this._create();
|
||||||
|
this._trigger( "create", null, this._getCreateEventData() );
|
||||||
|
this._init();
|
||||||
|
},
|
||||||
|
_getCreateOptions: $.noop,
|
||||||
|
_getCreateEventData: $.noop,
|
||||||
|
_create: $.noop,
|
||||||
|
_init: $.noop,
|
||||||
|
|
||||||
|
destroy: function() {
|
||||||
|
this._destroy();
|
||||||
|
// we can probably remove the unbind calls in 2.0
|
||||||
|
// all event bindings should go through this._on()
|
||||||
|
this.element
|
||||||
|
.unbind( this.eventNamespace )
|
||||||
|
// 1.9 BC for #7810
|
||||||
|
// TODO remove dual storage
|
||||||
|
.removeData( this.widgetName )
|
||||||
|
.removeData( this.widgetFullName )
|
||||||
|
// support: jquery <1.6.3
|
||||||
|
// http://bugs.jquery.com/ticket/9413
|
||||||
|
.removeData( $.camelCase( this.widgetFullName ) );
|
||||||
|
this.widget()
|
||||||
|
.unbind( this.eventNamespace )
|
||||||
|
.removeAttr( "aria-disabled" )
|
||||||
|
.removeClass(
|
||||||
|
this.widgetFullName + "-disabled " +
|
||||||
|
"ui-state-disabled" );
|
||||||
|
|
||||||
|
// clean up events and states
|
||||||
|
this.bindings.unbind( this.eventNamespace );
|
||||||
|
this.hoverable.removeClass( "ui-state-hover" );
|
||||||
|
this.focusable.removeClass( "ui-state-focus" );
|
||||||
|
},
|
||||||
|
_destroy: $.noop,
|
||||||
|
|
||||||
|
widget: function() {
|
||||||
|
return this.element;
|
||||||
|
},
|
||||||
|
|
||||||
|
option: function( key, value ) {
|
||||||
|
var options = key,
|
||||||
|
parts,
|
||||||
|
curOption,
|
||||||
|
i;
|
||||||
|
|
||||||
|
if ( arguments.length === 0 ) {
|
||||||
|
// don't return a reference to the internal hash
|
||||||
|
return $.widget.extend( {}, this.options );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( typeof key === "string" ) {
|
||||||
|
// handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } }
|
||||||
|
options = {};
|
||||||
|
parts = key.split( "." );
|
||||||
|
key = parts.shift();
|
||||||
|
if ( parts.length ) {
|
||||||
|
curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] );
|
||||||
|
for ( i = 0; i < parts.length - 1; i++ ) {
|
||||||
|
curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {};
|
||||||
|
curOption = curOption[ parts[ i ] ];
|
||||||
|
}
|
||||||
|
key = parts.pop();
|
||||||
|
if ( value === undefined ) {
|
||||||
|
return curOption[ key ] === undefined ? null : curOption[ key ];
|
||||||
|
}
|
||||||
|
curOption[ key ] = value;
|
||||||
|
} else {
|
||||||
|
if ( value === undefined ) {
|
||||||
|
return this.options[ key ] === undefined ? null : this.options[ key ];
|
||||||
|
}
|
||||||
|
options[ key ] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this._setOptions( options );
|
||||||
|
|
||||||
|
return this;
|
||||||
|
},
|
||||||
|
_setOptions: function( options ) {
|
||||||
|
var key;
|
||||||
|
|
||||||
|
for ( key in options ) {
|
||||||
|
this._setOption( key, options[ key ] );
|
||||||
|
}
|
||||||
|
|
||||||
|
return this;
|
||||||
|
},
|
||||||
|
_setOption: function( key, value ) {
|
||||||
|
this.options[ key ] = value;
|
||||||
|
|
||||||
|
if ( key === "disabled" ) {
|
||||||
|
this.widget()
|
||||||
|
.toggleClass( this.widgetFullName + "-disabled ui-state-disabled", !!value )
|
||||||
|
.attr( "aria-disabled", value );
|
||||||
|
this.hoverable.removeClass( "ui-state-hover" );
|
||||||
|
this.focusable.removeClass( "ui-state-focus" );
|
||||||
|
}
|
||||||
|
|
||||||
|
return this;
|
||||||
|
},
|
||||||
|
|
||||||
|
enable: function() {
|
||||||
|
return this._setOption( "disabled", false );
|
||||||
|
},
|
||||||
|
disable: function() {
|
||||||
|
return this._setOption( "disabled", true );
|
||||||
|
},
|
||||||
|
|
||||||
|
_on: function( suppressDisabledCheck, element, handlers ) {
|
||||||
|
var delegateElement,
|
||||||
|
instance = this;
|
||||||
|
|
||||||
|
// no suppressDisabledCheck flag, shuffle arguments
|
||||||
|
if ( typeof suppressDisabledCheck !== "boolean" ) {
|
||||||
|
handlers = element;
|
||||||
|
element = suppressDisabledCheck;
|
||||||
|
suppressDisabledCheck = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// no element argument, shuffle and use this.element
|
||||||
|
if ( !handlers ) {
|
||||||
|
handlers = element;
|
||||||
|
element = this.element;
|
||||||
|
delegateElement = this.widget();
|
||||||
|
} else {
|
||||||
|
// accept selectors, DOM elements
|
||||||
|
element = delegateElement = $( element );
|
||||||
|
this.bindings = this.bindings.add( element );
|
||||||
|
}
|
||||||
|
|
||||||
|
$.each( handlers, function( event, handler ) {
|
||||||
|
function handlerProxy() {
|
||||||
|
// allow widgets to customize the disabled handling
|
||||||
|
// - disabled as an array instead of boolean
|
||||||
|
// - disabled class as method for disabling individual parts
|
||||||
|
if ( !suppressDisabledCheck &&
|
||||||
|
( instance.options.disabled === true ||
|
||||||
|
$( this ).hasClass( "ui-state-disabled" ) ) ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
return ( typeof handler === "string" ? instance[ handler ] : handler )
|
||||||
|
.apply( instance, arguments );
|
||||||
|
}
|
||||||
|
|
||||||
|
// copy the guid so direct unbinding works
|
||||||
|
if ( typeof handler !== "string" ) {
|
||||||
|
handlerProxy.guid = handler.guid =
|
||||||
|
handler.guid || handlerProxy.guid || $.guid++;
|
||||||
|
}
|
||||||
|
|
||||||
|
var match = event.match( /^(\w+)\s*(.*)$/ ),
|
||||||
|
eventName = match[1] + instance.eventNamespace,
|
||||||
|
selector = match[2];
|
||||||
|
if ( selector ) {
|
||||||
|
delegateElement.delegate( selector, eventName, handlerProxy );
|
||||||
|
} else {
|
||||||
|
element.bind( eventName, handlerProxy );
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
_off: function( element, eventName ) {
|
||||||
|
eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) + this.eventNamespace;
|
||||||
|
element.unbind( eventName ).undelegate( eventName );
|
||||||
|
},
|
||||||
|
|
||||||
|
_delay: function( handler, delay ) {
|
||||||
|
function handlerProxy() {
|
||||||
|
return ( typeof handler === "string" ? instance[ handler ] : handler )
|
||||||
|
.apply( instance, arguments );
|
||||||
|
}
|
||||||
|
var instance = this;
|
||||||
|
return setTimeout( handlerProxy, delay || 0 );
|
||||||
|
},
|
||||||
|
|
||||||
|
_hoverable: function( element ) {
|
||||||
|
this.hoverable = this.hoverable.add( element );
|
||||||
|
this._on( element, {
|
||||||
|
mouseenter: function( event ) {
|
||||||
|
$( event.currentTarget ).addClass( "ui-state-hover" );
|
||||||
|
},
|
||||||
|
mouseleave: function( event ) {
|
||||||
|
$( event.currentTarget ).removeClass( "ui-state-hover" );
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
_focusable: function( element ) {
|
||||||
|
this.focusable = this.focusable.add( element );
|
||||||
|
this._on( element, {
|
||||||
|
focusin: function( event ) {
|
||||||
|
$( event.currentTarget ).addClass( "ui-state-focus" );
|
||||||
|
},
|
||||||
|
focusout: function( event ) {
|
||||||
|
$( event.currentTarget ).removeClass( "ui-state-focus" );
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
_trigger: function( type, event, data ) {
|
||||||
|
var prop, orig,
|
||||||
|
callback = this.options[ type ];
|
||||||
|
|
||||||
|
data = data || {};
|
||||||
|
event = $.Event( event );
|
||||||
|
event.type = ( type === this.widgetEventPrefix ?
|
||||||
|
type :
|
||||||
|
this.widgetEventPrefix + type ).toLowerCase();
|
||||||
|
// the original event may come from any element
|
||||||
|
// so we need to reset the target on the new event
|
||||||
|
event.target = this.element[ 0 ];
|
||||||
|
|
||||||
|
// copy original event properties over to the new event
|
||||||
|
orig = event.originalEvent;
|
||||||
|
if ( orig ) {
|
||||||
|
for ( prop in orig ) {
|
||||||
|
if ( !( prop in event ) ) {
|
||||||
|
event[ prop ] = orig[ prop ];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.element.trigger( event, data );
|
||||||
|
return !( $.isFunction( callback ) &&
|
||||||
|
callback.apply( this.element[0], [ event ].concat( data ) ) === false ||
|
||||||
|
event.isDefaultPrevented() );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) {
|
||||||
|
$.Widget.prototype[ "_" + method ] = function( element, options, callback ) {
|
||||||
|
if ( typeof options === "string" ) {
|
||||||
|
options = { effect: options };
|
||||||
|
}
|
||||||
|
var hasOptions,
|
||||||
|
effectName = !options ?
|
||||||
|
method :
|
||||||
|
options === true || typeof options === "number" ?
|
||||||
|
defaultEffect :
|
||||||
|
options.effect || defaultEffect;
|
||||||
|
options = options || {};
|
||||||
|
if ( typeof options === "number" ) {
|
||||||
|
options = { duration: options };
|
||||||
|
}
|
||||||
|
hasOptions = !$.isEmptyObject( options );
|
||||||
|
options.complete = callback;
|
||||||
|
if ( options.delay ) {
|
||||||
|
element.delay( options.delay );
|
||||||
|
}
|
||||||
|
if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {
|
||||||
|
element[ method ]( options );
|
||||||
|
} else if ( effectName !== method && element[ effectName ] ) {
|
||||||
|
element[ effectName ]( options.duration, options.easing, callback );
|
||||||
|
} else {
|
||||||
|
element.queue(function( next ) {
|
||||||
|
$( this )[ method ]();
|
||||||
|
if ( callback ) {
|
||||||
|
callback.call( element[ 0 ] );
|
||||||
|
}
|
||||||
|
next();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
}));
|
184
upload_base/assets/js/md5.js
Normal file
184
upload_base/assets/js/md5.js
Normal file
|
@ -0,0 +1,184 @@
|
||||||
|
function md5cycle(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]);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function cmn(q, a, b, x, s, t) {
|
||||||
|
a = add32(add32(a, q), add32(x, t));
|
||||||
|
return add32((a << s) | (a >>> (32 - s)), b);
|
||||||
|
}
|
||||||
|
|
||||||
|
function ff(a, b, c, d, x, s, t) {
|
||||||
|
return cmn((b & c) | ((~b) & d), a, b, x, s, t);
|
||||||
|
}
|
||||||
|
|
||||||
|
function gg(a, b, c, d, x, s, t) {
|
||||||
|
return cmn((b & d) | (c & (~d)), a, b, x, s, t);
|
||||||
|
}
|
||||||
|
|
||||||
|
function hh(a, b, c, d, x, s, t) {
|
||||||
|
return cmn(b ^ c ^ d, a, b, x, s, t);
|
||||||
|
}
|
||||||
|
|
||||||
|
function ii(a, b, c, d, x, s, t) {
|
||||||
|
return cmn(c ^ (b | (~d)), a, b, x, s, t);
|
||||||
|
}
|
||||||
|
|
||||||
|
function md51(s) {
|
||||||
|
txt = '';
|
||||||
|
var n = s.length,
|
||||||
|
state = [1732584193, -271733879, -1732584194, 271733878], i;
|
||||||
|
for (i=64; i<=s.length; i+=64) {
|
||||||
|
md5cycle(state, md5blk(s.substring(i-64, i)));
|
||||||
|
}
|
||||||
|
s = s.substring(i-64);
|
||||||
|
var tail = [0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0];
|
||||||
|
for (i=0; i<s.length; i++)
|
||||||
|
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++) tail[i] = 0;
|
||||||
|
}
|
||||||
|
tail[14] = n*8;
|
||||||
|
md5cycle(state, tail);
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 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.
|
||||||
|
*/
|
||||||
|
function md5blk(s) { /* I figured global was faster. */
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
var hex_chr = '0123456789abcdef'.split('');
|
||||||
|
|
||||||
|
function rhex(n)
|
||||||
|
{
|
||||||
|
var s='', j=0;
|
||||||
|
for(; j<4; j++)
|
||||||
|
s += hex_chr[(n >> (j * 8 + 4)) & 0x0F]
|
||||||
|
+ hex_chr[(n >> (j * 8)) & 0x0F];
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
function hex(x) {
|
||||||
|
for (var i=0; i<x.length; i++)
|
||||||
|
x[i] = rhex(x[i]);
|
||||||
|
return x.join('');
|
||||||
|
}
|
||||||
|
|
||||||
|
function md5(s) {
|
||||||
|
return hex(md51(s));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 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. */
|
||||||
|
|
||||||
|
function add32(a, b) {
|
||||||
|
return (a + b) & 0xFFFFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (md5('hello') != '5d41402abc4b2a76b9719d911017c592') {
|
||||||
|
function add32(x, y) {
|
||||||
|
var lsw = (x & 0xFFFF) + (y & 0xFFFF),
|
||||||
|
msw = (x >> 16) + (y >> 16) + (lsw >> 16);
|
||||||
|
return (msw << 16) | (lsw & 0xFFFF);
|
||||||
|
}
|
||||||
|
}
|
98
upload_base/assets/js/script.js
Executable file
98
upload_base/assets/js/script.js
Executable file
|
@ -0,0 +1,98 @@
|
||||||
|
$(function(){
|
||||||
|
|
||||||
|
var ul = $('#upload ul');
|
||||||
|
|
||||||
|
$('#drop a').click(function(){
|
||||||
|
// Simulate a click on the file input button
|
||||||
|
// to show the file browser dialog
|
||||||
|
$(this).parent().find('input').click();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Initialize the jQuery File Upload plugin
|
||||||
|
$('#upload').fileupload({
|
||||||
|
|
||||||
|
// This element will accept file drag/drop uploading
|
||||||
|
dropZone: $('#drop'),
|
||||||
|
|
||||||
|
// This function is called when a file is added to the queue;
|
||||||
|
// either via the browse button, or via drag/drop:
|
||||||
|
add: function (e, data) {
|
||||||
|
|
||||||
|
var tpl = $('<li class="working"><input type="text" value="0" data-width="48" data-height="48"'+
|
||||||
|
' data-fgColor="#0788a5" data-readOnly="1" data-bgColor="#3e4043" /><a><p></p></a><span></span></li>');
|
||||||
|
|
||||||
|
// Append the file name and file size
|
||||||
|
tpl.find('p').text(md5(data.files[0].name) + data.files[0].name )
|
||||||
|
.append('<i>' + formatFileSize(data.files[0].size) + '</i>');
|
||||||
|
var mag = (data.files[0].name).split(".").pop();
|
||||||
|
|
||||||
|
//tpl.find('a').attr("href","uploads/" + md5(data.files[0].name) + data.files[0].name );
|
||||||
|
tpl.find('a').attr("href","uploads/" + md5(data.files[0].name) + '.' + mag );
|
||||||
|
// Add the HTML to the UL element
|
||||||
|
data.context = tpl.appendTo(ul);
|
||||||
|
|
||||||
|
// Initialize the knob plugin
|
||||||
|
tpl.find('input').knob();
|
||||||
|
|
||||||
|
// Listen for clicks on the cancel icon
|
||||||
|
tpl.find('span').click(function(){
|
||||||
|
|
||||||
|
if(tpl.hasClass('working')){
|
||||||
|
jqXHR.abort();
|
||||||
|
}
|
||||||
|
|
||||||
|
tpl.fadeOut(function(){
|
||||||
|
tpl.remove();
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
// Automatically upload the file once it is added to the queue
|
||||||
|
var jqXHR = data.submit();
|
||||||
|
},
|
||||||
|
|
||||||
|
progress: function(e, data){
|
||||||
|
|
||||||
|
// Calculate the completion percentage of the upload
|
||||||
|
var progress = parseInt(data.loaded / data.total * 100, 10);
|
||||||
|
|
||||||
|
// Update the hidden input field and trigger a change
|
||||||
|
// so that the jQuery knob plugin knows to update the dial
|
||||||
|
data.context.find('input').val(progress).change();
|
||||||
|
|
||||||
|
if(progress == 100){
|
||||||
|
data.context.removeClass('working');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
fail:function(e, data){
|
||||||
|
// Something has gone wrong!
|
||||||
|
data.context.addClass('error');
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// Prevent the default action when a file is dropped on the window
|
||||||
|
$(document).on('drop dragover', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Helper function that formats the file sizes
|
||||||
|
function formatFileSize(bytes) {
|
||||||
|
if (typeof bytes !== 'number') {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bytes >= 1000000000) {
|
||||||
|
return (bytes / 1000000000).toFixed(2) + ' GB';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bytes >= 1000000) {
|
||||||
|
return (bytes / 1000000).toFixed(2) + ' MB';
|
||||||
|
}
|
||||||
|
|
||||||
|
return (bytes / 1000).toFixed(2) + ' KB';
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
54
upload_base/index.php
Executable file
54
upload_base/index.php
Executable file
|
@ -0,0 +1,54 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<title>Mini Ajax File Upload Form</title>
|
||||||
|
|
||||||
|
<!-- Google web fonts -->
|
||||||
|
<link href="http://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700" rel='stylesheet' />
|
||||||
|
|
||||||
|
<!-- The main CSS file -->
|
||||||
|
<link href="assets/css/style.css" rel="stylesheet" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<form id="upload" method="post" action="upload.php" enctype="multipart/form-data">
|
||||||
|
<div id="drop">
|
||||||
|
Drop Here
|
||||||
|
|
||||||
|
<a>Browse</a>
|
||||||
|
<input type="file" name="upl" multiple />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<!-- The file uploads will be shown here -->
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<div id="tzine-actions">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<!-- JavaScript Includes -->
|
||||||
|
<script src="assets/js/jquery.min.js"></script>
|
||||||
|
<script src="assets/js/jquery.knob.js"></script>
|
||||||
|
|
||||||
|
<!-- jQuery File Upload Dependencies -->
|
||||||
|
<script src="assets/js/jquery.ui.widget.js"></script>
|
||||||
|
<script src="assets/js/jquery.iframe-transport.js"></script>
|
||||||
|
<script src="assets/js/jquery.fileupload.js"></script>
|
||||||
|
|
||||||
|
<!-- Our main JS file -->
|
||||||
|
<script src="assets/js/md5.js"></script>
|
||||||
|
<script src="assets/js/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Only used for the demos. Please ignore and remove. -->
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
24
upload_base/upload.php
Executable file
24
upload_base/upload.php
Executable file
|
@ -0,0 +1,24 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
// A list of permitted file extensions
|
||||||
|
$allowed = array('png', 'jpg', 'gif','zip','pdf');
|
||||||
|
|
||||||
|
if(isset($_FILES['upl']) && $_FILES['upl']['error'] == 0){
|
||||||
|
|
||||||
|
$extension = pathinfo($_FILES['upl']['name'], PATHINFO_EXTENSION);
|
||||||
|
|
||||||
|
if(!in_array(strtolower($extension), $allowed)){
|
||||||
|
echo '{"status":"error"}';
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
$nname = md5($_FILES['upl']['name']);
|
||||||
|
$mag = end(array_values(explode(".",$_FILES['upl']['name'])));
|
||||||
|
//if(move_uploaded_file($_FILES['upl']['tmp_name'], 'uploads/'.$nname.$_FILES['upl']['name'])){
|
||||||
|
if(move_uploaded_file($_FILES['upl']['tmp_name'], 'uploads/'.$nname.'.'.$mag)){
|
||||||
|
echo '{"status":"success"}';
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
echo '{"status":"error"}';
|
||||||
|
exit;
|
Loading…
Reference in a new issue