Я пытаюсь использовать стороннюю Amazon S3 PHP Class , чтобы сделать все файлы в корзине общедоступными, но, похоже, не могу разобраться в политике управления acl - я пробовал следующий код безуспех:
if (!class_exists('S3')) require 's3/S3.php';
// AWS access info
if (!defined('awsAccessKey')) define('awsAccessKey', $as3key);
if (!defined('awsSecretKey')) define('awsSecretKey', $assecretkey);
$s3 = new S3(awsAccessKey, awsSecretKey);
$bucket = ltrim($_POST['bucket']);
$policy = ltrim($_POST['policy']);
if (($contents = $s3->getBucket($bucket)) !== false) {
foreach ($contents as $object) {
$fname = $object['name'];
$furl = "https://". $bucket . ".s3.amazonaws.com/".rawurlencode($fname);
if (($acp = S3::getAccessControlPolicy($bucket,$fname)) !== false) {
// Here you would modify the $acp array...
// For example, grant access to the S3 LogDelivery system:
$acp["acl"][] = array(
"type" => "Group", "uri" => $fname, "permission" => "FULL_CONTROL"
);
// Then update the policy using the modified $acp array:
if (S3::setAccessControlPolicy($bucket, $fname, $acp)) {
echo $fname . "Policy updated";
}
}
}
}
Может кто-нибудь помочь, пожалуйста?