You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							40 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							40 lines
						
					
					
						
							1.6 KiB
						
					
					
				| <?php | |
| 
 | |
| include_once dirname(dirname(__FILE__)). "/Model/ListPartsInfo.php"; | |
| include_once dirname(dirname(__FILE__)). "/Model/PartInfo.php"; | |
| 
 | |
| 
 | |
| /** | |
|  * Class ListPartsResult | |
|  * @package OSS\Result | |
|  */ | |
| class ListPartsResult extends Result | |
| { | |
|     /** | |
|      * Parse the xml data returned by the ListParts interface | |
|      * | |
|      * @return ListPartsInfo | |
|      */ | |
|     protected function parseDataFromResponse() | |
|     { | |
|         $content = $this->rawResponse->body; | |
|         $xml = simplexml_load_string($content); | |
|         $bucket = isset($xml->Bucket) ? strval($xml->Bucket) : ""; | |
|         $key = isset($xml->Key) ? strval($xml->Key) : ""; | |
|         $uploadId = isset($xml->UploadId) ? strval($xml->UploadId) : ""; | |
|         $nextPartNumberMarker = isset($xml->NextPartNumberMarker) ? intval($xml->NextPartNumberMarker) : ""; | |
|         $maxParts = isset($xml->MaxParts) ? intval($xml->MaxParts) : ""; | |
|         $isTruncated = isset($xml->IsTruncated) ? strval($xml->IsTruncated) : ""; | |
|         $partList = array(); | |
|         if (isset($xml->Part)) { | |
|             foreach ($xml->Part as $part) { | |
|                 $partNumber = isset($part->PartNumber) ? intval($part->PartNumber) : ""; | |
|                 $lastModified = isset($part->LastModified) ? strval($part->LastModified) : ""; | |
|                 $eTag = isset($part->ETag) ? strval($part->ETag) : ""; | |
|                 $size = isset($part->Size) ? intval($part->Size) : ""; | |
|                 $partList[] = new PartInfo($partNumber, $lastModified, $eTag, $size); | |
|             } | |
|         } | |
|         return new ListPartsInfo($bucket, $key, $uploadId, $nextPartNumberMarker, $maxParts, $isTruncated, $partList); | |
|     } | |
| } |