Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.10.5
-
Fix Version/s: 1.11.0
-
Component/s: Zend_Service_Amazon
-
Labels:None
Description
All public methods on Zend_Service_Amazon_S3 operating on objects internally call _fixupObjectName() to rawurlencode path parts.
Except, isObjectAvailable() does not do that. So, this code fails:
$objectName = 'mybucket/path with spaces/file.txt';
$s3->putObject('path/to/file.txt', $objectName); // OK, file is uploaded
$s3->isObjectAvailable($objectName); // throws Zend_Uri_Exception due to spaces in the object path
The solution is to add a call to _fixupObjectName($object) in isObjectAvailable().
Attachments
Issue Links
| This issue is duplicated by: | ||||
| ZF-9565 | isObjectAvailable does not fix bad object names |
|
|
|
Patch with test attached.