Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
ed3564c1
Commit
ed3564c1
authored
Aug 01, 2014
by
Tomek Romik
Committed by
Qiang Xue
Aug 02, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added client-side image validation
parent
378b765e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
160 additions
and
19 deletions
+160
-19
yii.validation.js
framework/assets/yii.validation.js
+93
-17
FileValidator.php
framework/validators/FileValidator.php
+14
-2
ImageValidator.php
framework/validators/ImageValidator.php
+53
-0
No files found.
framework/assets/yii.validation.js
View file @
ed3564c1
...
...
@@ -68,27 +68,29 @@ yii.validation = (function ($) {
pub
.
addMessage
(
messages
,
options
.
notEqual
,
value
);
}
},
file
:
function
(
value
,
messages
,
options
,
attribute
)
{
var
files
=
$
(
attribute
.
input
).
get
(
0
).
files
,
index
,
ext
;
globalFiles
:
function
(
files
,
messages
,
options
)
{
if
(
options
.
message
&&
!
files
)
{
pub
.
addMessage
(
messages
,
options
.
message
,
value
);
pub
.
addMessage
(
messages
,
options
.
message
);
}
if
(
!
options
.
skipOnEmpty
&&
files
.
length
==
0
)
{
pub
.
addMessage
(
messages
,
options
.
uploadRequired
,
value
);
}
else
if
(
files
.
length
==
0
)
{
return
;
if
(
!
options
.
skipOnEmpty
&&
files
.
length
==
=
0
)
{
pub
.
addMessage
(
messages
,
options
.
uploadRequired
);
}
else
if
(
files
.
length
==
=
0
)
{
return
false
;
}
if
(
options
.
maxFiles
&&
options
.
maxFiles
<
files
.
length
)
{
pub
.
addMessage
(
messages
,
options
.
tooMany
);
}
$
.
each
(
files
,
function
(
i
,
file
)
{
if
(
options
.
extensions
&&
options
.
extensions
.
length
>
0
)
{
return
true
;
},
singleFile
:
function
(
file
,
messages
,
options
)
{
var
index
,
ext
;
if
(
options
.
extensions
&&
options
.
extensions
.
length
>
0
)
{
index
=
file
.
name
.
lastIndexOf
(
'.'
);
if
(
!~
index
)
{
...
...
@@ -98,25 +100,99 @@ yii.validation = (function ($) {
}
if
(
!~
options
.
extensions
.
indexOf
(
ext
))
{
messages
.
push
(
options
.
wrongExtension
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
pub
.
addMessage
(
messages
,
options
.
wrongExtension
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
}
}
if
(
options
.
mimeTypes
&&
options
.
mimeTypes
.
length
>
0
)
{
if
(
!~
options
.
mimeTypes
.
indexOf
(
file
.
type
))
{
messages
.
push
(
options
.
wrongMimeType
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
pub
.
addMessage
(
messages
,
options
.
wrongMimeType
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
}
}
if
(
options
.
maxSize
&&
options
.
maxSize
<
file
.
size
)
{
messages
.
push
(
options
.
tooBig
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
pub
.
addMessage
(
messages
,
options
.
tooBig
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
}
if
(
options
.
maxSize
&&
options
.
minSize
>
file
.
size
)
{
messages
.
push
(
options
.
tooSmall
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
pub
.
addMessage
(
messages
,
options
.
tooSmall
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
}
},
file
:
function
(
messages
,
options
,
attribute
)
{
var
files
=
$
(
attribute
.
input
).
get
(
0
).
files
,
self
=
this
;
if
(
!
self
.
globalFiles
(
files
,
messages
,
options
)
)
{
return
;
}
$
.
each
(
files
,
function
(
i
,
file
)
{
self
.
singleFile
(
file
,
messages
,
options
);
});
},
image
:
function
(
messages
,
options
,
deferred
,
attribute
)
{
var
files
=
$
(
attribute
.
input
).
get
(
0
).
files
,
self
=
this
;
if
(
!
self
.
globalFiles
(
files
,
messages
,
options
)
)
{
return
;
}
$
.
each
(
files
,
function
(
i
,
file
)
{
// Perform file validation
self
.
singleFile
(
file
,
messages
,
options
);
// Skip image validation if FileReader API is not available
if
(
typeof
FileReader
===
"undefined"
)
{
return
;
}
var
def
=
$
.
Deferred
(),
fr
=
new
FileReader
(),
img
=
new
Image
();
img
.
onload
=
function
()
{
if
(
options
.
minWidth
&&
this
.
width
<
options
.
minWidth
)
{
pub
.
addMessage
(
messages
,
options
.
underWidth
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
}
if
(
options
.
maxWidth
&&
this
.
width
>
options
.
maxWidth
)
{
pub
.
addMessage
(
messages
,
options
.
overWidth
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
}
if
(
options
.
minHeight
&&
this
.
height
<
options
.
minHeight
)
{
pub
.
addMessage
(
messages
,
options
.
underHeight
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
}
if
(
options
.
maxHeight
&&
this
.
height
>
options
.
maxHeight
)
{
pub
.
addMessage
(
messages
,
options
.
overHeight
.
replace
(
/
\{
file
\}
/g
,
file
.
name
));
}
def
.
resolve
();
};
img
.
onerror
=
function
()
{
pub
.
addMessage
(
messages
,
options
.
notImage
);
def
.
resolve
();
};
fr
.
onload
=
function
()
{
img
.
src
=
fr
.
result
;
};
// Resolve deferred if there was error while reading data
fr
.
onerror
=
function
()
{
def
.
resolve
();
};
fr
.
readAsDataURL
(
file
);
deferred
.
push
(
def
);
});
},
number
:
function
(
value
,
messages
,
options
)
{
...
...
framework/validators/FileValidator.php
View file @
ed3564c1
...
...
@@ -122,6 +122,8 @@ class FileValidator extends Validator
* - {mimeTypes}: the value of [[mimeTypes]]
*/
public
$wrongMimeType
;
protected
$_clientOptions
;
/**
...
...
@@ -342,12 +344,15 @@ class FileValidator extends Validator
$options
[
'skipOnEmpty'
]
=
$this
->
skipOnEmpty
;
if
(
!
$this
->
skipOnEmpty
)
{
$options
[
'uploadRequired'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
uploadRequired
,
[],
Yii
::
$app
->
language
);
$options
[
'uploadRequired'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
uploadRequired
,
[
'attribute'
=>
$label
,
],
Yii
::
$app
->
language
);
}
if
(
$this
->
mimeTypes
!==
null
)
{
$options
[
'mimeTypes'
]
=
$this
->
mimeTypes
;
$options
[
'wrongMimeType'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
wrongMimeType
,
[
'attribute'
=>
$label
,
'mimeTypes'
=>
join
(
', '
,
$this
->
mimeTypes
)
],
Yii
::
$app
->
language
);
}
...
...
@@ -355,6 +360,7 @@ class FileValidator extends Validator
if
(
$this
->
extensions
!==
null
)
{
$options
[
'extensions'
]
=
$this
->
extensions
;
$options
[
'wrongExtension'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
wrongExtension
,
[
'attribute'
=>
$label
,
'extensions'
=>
join
(
', '
,
$this
->
extensions
)
],
Yii
::
$app
->
language
);
}
...
...
@@ -362,6 +368,7 @@ class FileValidator extends Validator
if
(
$this
->
minSize
!==
null
)
{
$options
[
'minSize'
]
=
$this
->
minSize
;
$options
[
'tooSmall'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
tooSmall
,
[
'attribute'
=>
$label
,
'limit'
=>
$this
->
minSize
],
Yii
::
$app
->
language
);
}
...
...
@@ -369,6 +376,7 @@ class FileValidator extends Validator
if
(
$this
->
maxSize
!==
null
)
{
$options
[
'maxSize'
]
=
$this
->
maxSize
;
$options
[
'tooBig'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
tooBig
,
[
'attribute'
=>
$label
,
'limit'
=>
$this
->
maxSize
],
Yii
::
$app
->
language
);
}
...
...
@@ -376,12 +384,16 @@ class FileValidator extends Validator
if
(
$this
->
maxFiles
!==
null
)
{
$options
[
'maxFiles'
]
=
$this
->
maxFiles
;
$options
[
'tooMany'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
tooMany
,
[
'attribute'
=>
$label
,
'limit'
=>
$this
->
maxFiles
],
Yii
::
$app
->
language
);
}
ValidationAsset
::
register
(
$view
);
return
'yii.validation.file(value, messages, '
.
json_encode
(
$options
)
.
', attribute);'
;
// Store options for ImageValidator
$this
->
_clientOptions
=
$options
;
return
'yii.validation.file(messages, '
.
json_encode
(
$options
)
.
', attribute);'
;
}
}
framework/validators/ImageValidator.php
View file @
ed3564c1
...
...
@@ -158,4 +158,57 @@ class ImageValidator extends FileValidator
return
null
;
}
/**
* @inheritdoc
*/
public
function
clientValidateAttribute
(
$object
,
$attribute
,
$view
)
{
parent
::
clientValidateAttribute
(
$object
,
$attribute
,
$view
);
$label
=
$object
->
getAttributeLabel
(
$attribute
);
// Inherit options from FileValidator
$options
=
$this
->
_clientOptions
;
if
(
$this
->
notImage
!==
null
)
{
$options
[
'notImage'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
notImage
,
[
'attribute'
=>
$label
],
Yii
::
$app
->
language
);
}
if
(
$this
->
minWidth
!==
null
)
{
$options
[
'minWidth'
]
=
$this
->
minWidth
;
$options
[
'underWidth'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
underWidth
,
[
'attribute'
=>
$label
,
'limit'
=>
$this
->
minWidth
],
Yii
::
$app
->
language
);
}
if
(
$this
->
maxWidth
!==
null
)
{
$options
[
'maxWidth'
]
=
$this
->
maxWidth
;
$options
[
'overWidth'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
overWidth
,
[
'attribute'
=>
$label
,
'limit'
=>
$this
->
maxWidth
],
Yii
::
$app
->
language
);
}
if
(
$this
->
minHeight
!==
null
)
{
$options
[
'minHeight'
]
=
$this
->
minHeight
;
$options
[
'underHeight'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
underHeight
,
[
'attribute'
=>
$label
,
'limit'
=>
$this
->
maxHeight
],
Yii
::
$app
->
language
);
}
if
(
$this
->
maxHeight
!==
null
)
{
$options
[
'maxHeight'
]
=
$this
->
maxHeight
;
$options
[
'overHeight'
]
=
Yii
::
$app
->
getI18n
()
->
format
(
$this
->
overHeight
,
[
'attribute'
=>
$label
,
'limit'
=>
$this
->
maxHeight
],
Yii
::
$app
->
language
);
}
return
'yii.validation.image(messages, '
.
json_encode
(
$options
)
.
', deferred, attribute);'
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment