App::import(
'Lib'
,
'Media.Media'
);
class
Attachment
extends
AppModel
{
public
$name
=
'Attachment'
;
public
$useTable
=
'attachments'
;
public
$useVersions
=
array
();
public
$actsAs
=
array
(
'Media.Transfer'
=>
array
(
'trustClient'
=> false,
'transferDirectory'
=> MEDIA_TRANSFER,
'createDirectory'
=> true,
'alternativeFile'
=> 100
),
'Media.Generator'
=>
array
(
'baseDirectory'
=> MEDIA,
'filterDirectory'
=> MEDIA_FILTER,
'createDirectory'
=> true,
),
'Media.Polymorphic'
,
'Media.Coupler'
=>
array
(
'baseDirectory'
=> MEDIA
),
'Media.Meta'
=>
array
(
'level'
=> 2
)
);
public
$validate
=
array
(
'file'
=>
array
(
'resource'
=>
array
(
'rule'
=>
'checkResource'
),
'access'
=>
array
(
'rule'
=>
'checkAccess'
),
'location'
=>
array
(
'rule'
=>
array
(
'checkLocation'
,
array
(
MEDIA_TRANSFER,
'/tmp/'
))),
'permission'
=>
array
(
'rule'
=>
array
(
'checkPermission'
,
'*'
)),
'size'
=>
array
(
'rule'
=>
array
(
'checkSize'
,
'5M'
)),
'pixels'
=>
array
(
'rule'
=>
array
(
'checkPixels'
,
'1600x1600'
)),
'extension'
=>
array
(
'rule'
=>
array
(
'checkExtension'
, false,
array
(
'jpg'
,
'jpeg'
,
'png'
,
'tif'
,
'tiff'
,
'gif'
,
'pdf'
,
'tmp'
))),
'mimeType'
=>
array
(
'rule'
=>
array
(
'checkMimeType'
, false,
array
(
'image/jpeg'
,
'image/png'
,
'image/tiff'
,
'image/gif'
,
'application/pdf'
)))),
'alternative'
=>
array
(
'rule'
=>
'checkRepresent'
,
'on'
=>
'create'
,
'required'
=> false,
'allowEmpty'
=> true,
)
);
public
function
makeVersion(
$file
,
$process
)
{
if
(!
is_array
(
$this
->useVersions) && !
empty
(
$this
->useVersions)) {
$this
->useVersions =
array
(
$this
->useVersions);
}
if
(
$this
->useVersions === false || !
empty
(
$this
->useVersions) && !in_array(
$process
[
'version'
],
$this
->useVersions)) {
return
true;
}
return
$this
->Behaviors->Generator->makeVersion(
$this
,
$file
,
$process
);
}
}