如何在欧盟地区创建存储桶?

时间:2012-09-14 00:31:48

标签: php rest google-cloud-storage

我正在尝试使用PHP和REST在Google云端存储上创建一个存储桶。我可以在美国地区制作好的水桶,但似乎无法在欧盟地区创造一个。

这就是我正在做的事情 -

function createBucket($accessToken, $bucket, $region)
{
    $version_header = "x-goog-api-version: 2";
    $project_header = "x-goog-project-id: ".$this->projectID;
    $url = 'https://'.$bucket.'.commondatastorage.googleapis.com';
    $timestamp = date("r");
    define('XML_PAYLOAD','<xml version=\'1.0\' ? ><CreateBucketConfiguration><LocationConstraint>'.$region.'</LocationConstraint></CreateBucketConfiguration>');

    $headers = array(
                'Host: '.$bucket.'.commondatastorage.googleapis.com',
                'Date: '.$timestamp, 
                $version_header,
                $project_header, 
                'Content-Length: 0',
                'Authorization: OAuth '.$accessToken);

    $c   = curl_init($url);
    curl_setopt($c, CURLOPT_HEADER, 1);
    curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($c, CURLOPT_HTTPHEADER,$headers);
    curl_setopt($c, CURLOPT_POSTFIELDS,XML_PAYLOAD);
    curl_setopt($c, CURLOPT_CUSTOMREQUEST, "PUT");
    $response = curl_exec($c);
    curl_close($c);

    // split up the response into header and xml body
    list($header, $xml) = explode("\r\n\r\n", $response, 2);
    // tokenize - first token is the status
    $status = strtok($header, "\r\n"); 

    if(stristr($status,"200 OK"))
    {
        //success
        $result = "success";
    }
    else
    {
        //failed
        $result = "fail";
    }

    return $result;
}

此功能适用于美国水桶但在欧盟情况下会失败。我确保为存储桶生成的名称是一个唯一的名称(相同的模式适用于美国存储桶)。

编辑:实际上该功能没有失败,它确实会创建一个存储桶......它只是在美国地区创建存储桶,尽管指定了EU区域。

1 个答案:

答案 0 :(得分:1)

你怎么知道它是否成功了? gsutil -L?

我刚刚使用gsutil来指定位置并使用-DD转储请求的内容,并注意到请求正文中发送的XML文档不包含XML标头。接下来,我尝试使用curl使用类似的无标题XML文档来制定REST请求,它对我来说很好。接下来,我再次使用XML标头尝试curl,但由于此错误而失败:

  

您提供的XML格式不正确或未经过验证   我们发布的架构。

您是否可以在没有XML标头的情况下重试PHP代码,看看是否有帮助?如果是这样,我可以为此提交一个错误。