118 行
		
	
	
	
		
			4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			118 行
		
	
	
	
		
			4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
|  | <?php | ||
|  | 
 | ||
|  | // Set the content-type for browsers
 | ||
|  | header("Content-type: text/xml"); | ||
|  | 
 | ||
|  | // Create the DOMDocument for the XML output
 | ||
|  | $xmlDoc = new DOMDocument("1.0"); | ||
|  | // Add reference to the XSLT
 | ||
|  | $xsl = $xmlDoc->createProcessingInstruction("xml-stylesheet", "type=\"text/xsl\" href=\"/css/api.xsl\""); | ||
|  | $xmlDoc->appendChild($xsl); | ||
|  | 
 | ||
|  | // Get the method called, and build the root node
 | ||
|  | $call = $data['queryInfo']['call']; | ||
|  | $rootNode = $xmlDoc->createElement("HRDWebLogbook-API"); | ||
|  | $parentNode = $xmlDoc->appendChild($rootNode); | ||
|  | 
 | ||
|  | // Get the results output
 | ||
|  | $output = $data[$call."_Result"]; | ||
|  | 
 | ||
|  | // Add the queryInfo node
 | ||
|  | $node = $xmlDoc->createElement("queryInfo"); | ||
|  | $queryElement = $parentNode->appendChild($node); | ||
|  | $queryElement->setAttribute("timeStamp", date("r", time())); | ||
|  | $queryElement->setAttribute("calledMethod", $data['queryInfo']['call']); | ||
|  | //$queryElement->setAttribute("queryArgs", $queryArgsString);
 | ||
|  | $queryElement->setAttribute("resultsCount", count($data['queryInfo']['numResults'])); | ||
|  | if(ENVIRONMENT == "development") { | ||
|  | 	$debugInfo = $xmlDoc->createElement("debugInfo"); | ||
|  | 	$debugElement = $queryElement->appendChild($debugInfo); | ||
|  | 	$debugElement->setAttribute("dbQuery", $data['queryInfo']['dbQuery']); | ||
|  | 	$debugElement->setAttribute("clientVersion", $_SERVER['HTTP_USER_AGENT']); | ||
|  | 	$debugElement->setAttribute("requestURI", $_SERVER['REQUEST_URI']); | ||
|  | 	$debugElement->setAttribute("benchMark", $this->benchmark->marker['total_execution_time_start'].", ".$this->benchmark->marker['loading_time:_base_classes_start'].", ".$this->benchmark->marker['loading_time:_base_classes_end'].", ".$this->benchmark->marker['controller_execution_time_( api / search )_start']); | ||
|  | } | ||
|  | $queryElement->setAttribute("executionTime", $data['queryInfo']['executionTime']); | ||
|  | $queryElement->setAttribute("logbookURL", $this->config->item('base_url')); | ||
|  | 
 | ||
|  | // Add the main results node
 | ||
|  | $node = $xmlDoc->createElement("elements"); | ||
|  | $elementsNode = $parentNode->appendChild($node); | ||
|  | 
 | ||
|  | // Cycle through the results and add to the results node
 | ||
|  | if($output['results']) | ||
|  | { | ||
|  | 	foreach($output['results'] as $e) { | ||
|  | 		$node = $xmlDoc->createElement("element"); | ||
|  | 		$element = $elementsNode->appendChild($node); | ||
|  | 
 | ||
|  | 		foreach($e as $attr) { | ||
|  | 		#while($attr = current($e)) {
 | ||
|  | 		    if(is_array($attr)) | ||
|  | 			{ | ||
|  | 			  foreach($attr as $subattr) | ||
|  | 			  { | ||
|  | 				$node = $xmlDoc->createElement(key($e)); | ||
|  | 				foreach($subattr as $subsubattr) | ||
|  | 				{ | ||
|  | 				  $node->setAttribute(key($subattr), $subsubattr); | ||
|  | 				  next($subattr); | ||
|  | 				} | ||
|  | 				$element->appendChild($node); | ||
|  | 			  } | ||
|  | 			} | ||
|  | 			else | ||
|  | 			{ | ||
|  | 			  $element->setAttribute(key($e), $attr); | ||
|  | 			} | ||
|  | 			next($e); | ||
|  | 		} | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | // Output formatted XML
 | ||
|  | echo formatXmlString($xmlDoc->saveXML()); | ||
|  | 
 | ||
|  | // This function tidies up the outputted XML
 | ||
|  | function formatXmlString($xml) { | ||
|  | 
 | ||
|  |   // add marker linefeeds to aid the pretty-tokeniser (adds a linefeed between all tag-end boundaries)
 | ||
|  |   $xml = preg_replace('/(>)(<)(\/*)/', "$1\n$2$3", $xml); | ||
|  | 
 | ||
|  |   // now indent the tags
 | ||
|  |   $token      = strtok($xml, "\n"); | ||
|  |   $result     = ''; // holds formatted version as it is built
 | ||
|  |   $pad        = 0; // initial indent
 | ||
|  |   $matches    = array(); // returns from preg_matches()
 | ||
|  | 
 | ||
|  |   // scan each line and adjust indent based on opening/closing tags
 | ||
|  |   while ($token !== false) : | ||
|  | 
 | ||
|  |     // test for the various tag states
 | ||
|  | 
 | ||
|  |     // 1. open and closing tags on same line - no change
 | ||
|  |     if (preg_match('/.+<\/\w[^>]*>$/', $token, $matches)) : | ||
|  |       $indent=0; | ||
|  |     // 2. closing tag - outdent now
 | ||
|  |     elseif (preg_match('/^<\/\w/', $token, $matches)) : | ||
|  |       $pad--; | ||
|  |     // 3. opening tag - don't pad this one, only subsequent tags
 | ||
|  |     elseif (preg_match('/^<\w[^>]*[^\/]>.*$/', $token, $matches)) : | ||
|  |       $indent=1; | ||
|  |     // 4. no indentation needed
 | ||
|  |     else : | ||
|  |       $indent = 0; | ||
|  |     endif; | ||
|  | 
 | ||
|  |     // pad the line with the required number of leading spaces
 | ||
|  |     $line    = str_pad($token, strlen($token)+$pad, ' ', STR_PAD_LEFT); | ||
|  |     $result .= $line . "\n"; // add to the cumulative result, with linefeed
 | ||
|  |     $token   = strtok("\n"); // get the next token
 | ||
|  |     $pad    += $indent; // update the pad size for subsequent lines
 | ||
|  |   endwhile; | ||
|  | 
 | ||
|  |   return $result; | ||
|  | } | ||
|  | 
 | ||
|  | ?>
 |