API Documentation RunningExamples domain.get domain orders PHP

Aus EUserv Wiki

(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
Zeile 3: Zeile 3:
   <nowiki>
   <nowiki>
<?php
<?php
 +
//includes the class library
//includes the class library
include_once("lib/xmlrpc.inc");
include_once("lib/xmlrpc.inc");
$xmlrpc_internalencoding = 'UTF-8';
$xmlrpc_internalencoding = 'UTF-8';
 +
$host="api.test.euserv.net";
$host="api.test.euserv.net";
$port=443;
$port=443;
Zeile 11: Zeile 13:
$password="<API_USER_PASSWORD>";
$password="<API_USER_PASSWORD>";
$api_path="/";
$api_path="/";
 +
//defines the function
//defines the function
function domain_get_domain_orders($host,$port,$username,$password,$api_path)
function domain_get_domain_orders($host,$port,$username,$password,$api_path)
{
{
-
//creates the serverurl
+
 
-
$serverurl = 'https://'.$host.':'.$port.'/'.$api_path;
+
  //creates the serverurl
-
//----------creates the message which will be send to the server----------
+
  $serverurl = 'https://'.$host.':'.$port.'/'.$api_path;
-
//creates the request for the XML-RPC Server
+
 
-
$request = new xmlrpcmsg('domain.get_domain_orders');
+
  //----------creates the message which will be send to the server----------
-
//adds parameters to the request
+
 
-
$request->addParam
+
  //creates the request for the XML-RPC Server
-
(
+
  $request = new xmlrpcmsg('domain.get_domain_orders');
-
//creates a value of type struct which contains an array with the username and password
+
 
-
new xmlrpcval
+
  //adds parameters to the request
-
(
+
  $request->addParam
-
array
+
    (
-
(
+
   
-
//creates a value of type string which contains the "$username"
+
    //creates a value of type struct which contains an array with the username and password
-
'login' => new xmlrpcval($username, 'string'),
+
    new xmlrpcval
-
//creates a value of type string which contains the "$password"
+
      (
-
'password' => new xmlrpcval($password, 'string'),
+
      array
-
)
+
 
-
,'struct'
+
      (
-
)
+
        //creates a value of type string which contains the "$username"
-
);
+
        'login' => new xmlrpcval($username, 'string'),
-
//----------creates the XML-RPC client which represent a client of an XML-RPC server----------
+
       
-
//creates the client
+
        //creates a value of type string which contains the "$password"
-
$client = new xmlrpc_client($serverurl);
+
        'password' => new xmlrpcval($password, 'string'),
-
//disable SSL Keycheck
+
     
-
$client->setSSLVerifyPeer(0);
+
      )
-
//----------sends the request to the server and gets the response----------
+
      ,'struct'
-
//sends the request via https and writes it into $response. timeout is set to 0
+
      )
-
$response = $client->send($request,0,'https');
+
    );
-
//generates a storable representation of $response and writes it into $result_xml
+
 
-
//echo $response->serialize();
+
  //----------creates the XML-RPC client which represent a client of an XML-RPC server----------
-
//checks the response. if the method "faultCode" returns zero, the response was succesfull
+
 
-
if (0==$response->faultCode())
+
  //creates the client
-
{
+
  $client = new xmlrpc_client($serverurl);
-
//returns the value sent by the server
+
 
-
$value = $response->value();
+
  //disable SSL Keycheck
-
//returns the actual PHP-language value of "value"
+
  $client->setSSLVerifyPeer(0);
-
$result_obj = $value->scalarval();
+
 
-
//destroys "value"
+
  //----------sends the request to the server and gets the response----------
-
unset($value);
+
 
-
}
+
  //sends the request via https and writes it into $response. timeout is set to 0
-
else
+
  $response = $client->send($request,0,'https');
-
{
+
 
-
//returns the faultCode and the faultString
+
  //generates a storable representation of $response and writes it into $result_xml
-
return $error = array ( 'faultCode' => $response->faultCode(), 'faultString' => $response->faultString());
+
  //echo $response->serialize();
-
}
+
 
-
//destroys "client"
+
  //checks the response. if the method "faultCode" returns zero, the response was succesfull
-
unset($client);
+
  if (0==$response->faultCode())  
-
//destroys "response"
+
  {
-
unset($response);
+
    //returns the value sent by the server
-
//----------reads the result_obj----------
+
    $value = $response->value();
-
//if result_obj is set then it returns the actual PHP-language value of "result_obj"
+
     
-
if (isset($result_obj['status']))
+
    //returns the actual PHP-language value of "value"
-
{
+
    $result_obj = $value->scalarval();
-
$value['status'] = $result_obj['status']->scalarval();
+
     
-
}
+
    //destroys "value"
-
if (isset($result_obj['domain_orders']))
+
    unset($value);    
-
{
+
  }
-
//reads the keys and values and list returns an array. if no keys and values are read out list returns no array and the while-loop
+
  else
-
stops execution
+
  {
-
while (list($keyname, $data) = $result_obj['domain_orders']->structEach())
+
    //returns the faultCode and the faultString
-
{
+
    return $error = array ( 'faultCode' => $response->faultCode(), 'faultString' => $response->faultString());
-
$data = $data->scalarval();
+
  }
-
$domain_orders[$keyname]['domain_id'] = $data['domain_id']->scalarval();
+
   
-
$domain_orders[$keyname]['domain_name'] = $data['domain_name']->scalarval();
+
  //destroys "client"
-
$domain_orders[$keyname]['domain_name_idn'] = $data['domain_name_idn']->scalarval();
+
  unset($client);
-
$domain_orders[$keyname]['feature_redirect'] = $data['feature_redirect']->scalarval();
+
   
-
$domain_orders[$keyname]['feature_dns'] = $data['feature_dns']->scalarval();
+
  //destroys "response"
-
}
+
  unset($response);
-
//writes the array into the array "value"
+
 
-
$value['domain_orders'] = $domain_orders;
+
  //----------reads the result_obj----------
-
}
+
   
-
return $value;
+
  //if result_obj is set then it returns the actual PHP-language value of "result_obj"
 +
   
 +
  if (isset($result_obj['status']))
 +
  {
 +
    $value['status'] = $result_obj['status']->scalarval();
 +
  }
 +
 
 +
  if (isset($result_obj['domain_orders']))
 +
  {
 +
    //reads the keys and values and list returns an array. if no keys and values are read out list returns no array and the while-loop stops execution
 +
    while (list($keyname, $data) = $result_obj['domain_orders']->structEach())
 +
    {
 +
      $data = $data->scalarval();
 +
      $domain_orders[$keyname]['domain_id'] = $data['domain_id']->scalarval();
 +
      $domain_orders[$keyname]['domain_name'] = $data['domain_name']->scalarval();
 +
      $domain_orders[$keyname]['domain_name_idn'] = $data['domain_name_idn']->scalarval();
 +
      $domain_orders[$keyname]['feature_redirect'] = $data['feature_redirect']->scalarval();
 +
      $domain_orders[$keyname]['feature_dns'] = $data['feature_dns']->scalarval();
 +
    }
 +
   
 +
    //writes the array into the array "value"
 +
    $value['domain_orders'] = $domain_orders;
 +
  }
 +
  return $value;  
}
}
 +
//calls the function
//calls the function
$result = domain_get_domain_orders($host,$port,$username,$password,$api_path);
$result = domain_get_domain_orders($host,$port,$username,$password,$api_path);
 +
if(0==$result['faultCode'])
if(0==$result['faultCode'])
{
{
-
echo "Status: ".$result['status']."<br><br>";
+
  echo "Status: ".$result['status']."<br><br>";
-
//writes the array "server_details" into "daten"
+
 
-
$daten = $result["domain_orders"];
+
  //writes the array "server_details" into "daten"
-
//gets the array_keys(members)
+
  $daten = $result["domain_orders"];
-
$datenkeys = array_keys($daten);
+
 
-
$k=0;
+
  //gets the array_keys(members)
-
//counts the arraykeys, the number of arraykeys will be used in the do-while construct
+
  $datenkeys = array_keys($daten);
-
$anzahlkeys = count($datenkeys);
+
 
-
do
+
  $k=0;
-
{
+
  //counts the arraykeys, the number of arraykeys will be used in the do-while construct
-
//outputs the data
+
  $anzahlkeys = count($datenkeys);
-
echo " <u>domain_id:</u> ".$datenkeys[$k];
+
 
-
echo " <u>domain_name:</u> ".$daten[$datenkeys[$k]]['domain_name'];
+
  do
-
echo " <u>domain_name_idn:</u> ".$daten[$datenkeys[$k]]['domain_name_idn'];
+
  {
-
echo " <u>feature_redirect:</u> ".$daten[$datenkeys[$k]]['feature_redirect'];
+
    //outputs the data
-
echo " <u>feature_dns:</u> ".$daten[$datenkeys[$k]]['feature_dns'];
+
    echo " <u>domain_id:</u> ".$datenkeys[$k];
-
echo "<br>";
+
    echo " <u>domain_name:</u> ".$daten[$datenkeys[$k]]['domain_name'];
-
$k=$k+1;
+
    echo " <u>domain_name_idn:</u> ".$daten[$datenkeys[$k]]['domain_name_idn'];
-
}
+
    echo " <u>feature_redirect:</u> ".$daten[$datenkeys[$k]]['feature_redirect'];
-
while($k<$anzahlkeys);
+
    echo " <u>feature_dns:</u> ".$daten[$datenkeys[$k]]['feature_dns'];
 +
    echo "<br>";
 +
    $k=$k+1;
 +
 
 +
  }
 +
  while($k<$anzahlkeys);
}
}
else
else
{
{
-
echo "faultCode: ".$result['faultCode']." faultString: ".$result['faultString'];
+
  echo "faultCode: ".$result['faultCode']." faultString: ".$result['faultString'];
}
}
?>
?>
   </nowiki>
   </nowiki>

Version vom 07:48, 6. Sep. 2012

back to API Documentation

domain.get_domain_orders

 
<?php

//includes the class library
include_once("lib/xmlrpc.inc");
$xmlrpc_internalencoding = 'UTF-8';

$host="api.test.euserv.net";
$port=443;
$username="<API_USER>";
$password="<API_USER_PASSWORD>";
$api_path="/";

//defines the function
function domain_get_domain_orders($host,$port,$username,$password,$api_path)
{

  //creates the serverurl
  $serverurl = 'https://'.$host.':'.$port.'/'.$api_path;

  //----------creates the message which will be send to the server----------

  //creates the request for the XML-RPC Server
  $request = new xmlrpcmsg('domain.get_domain_orders');
  
  //adds parameters to the request
  $request->addParam
    (
    
    //creates a value of type struct which contains an array with the username and password
    new xmlrpcval
      (
      array

      (
        //creates a value of type string which contains the "$username"
        'login' => new xmlrpcval($username, 'string'),
        
        //creates a value of type string which contains the "$password"
        'password' => new xmlrpcval($password, 'string'),
      
      )
      ,'struct'
      )
    );

  //----------creates the XML-RPC client which represent a client of an XML-RPC server----------

  //creates the client
  $client = new xmlrpc_client($serverurl);
  
  //disable SSL Keycheck
  $client->setSSLVerifyPeer(0);
  
  //----------sends the request to the server and gets the response----------

  //sends the request via https and writes it into $response. timeout is set to 0
  $response = $client->send($request,0,'https');
  
  //generates a storable representation of $response and writes it into $result_xml
  //echo $response->serialize();
  
  //checks the response. if the method "faultCode" returns zero, the response was succesfull
  if (0==$response->faultCode()) 
  {
    //returns the value sent by the server
    $value = $response->value();
      
    //returns the actual PHP-language value of "value"
    $result_obj = $value->scalarval();
      
    //destroys "value"
    unset($value);      
  }
  else
  {
    //returns the faultCode and the faultString
    return $error = array ( 'faultCode' => $response->faultCode(), 'faultString' => $response->faultString());
  }
    
  //destroys "client"
  unset($client);
    
  //destroys "response"
  unset($response);  
  
  //----------reads the result_obj----------
    
  //if result_obj is set then it returns the actual PHP-language value of "result_obj"
    
  if (isset($result_obj['status']))
  {
    $value['status'] = $result_obj['status']->scalarval();
  }

  if (isset($result_obj['domain_orders']))
  {
    //reads the keys and values and list returns an array. if no keys and values are read out list returns no array and the while-loop stops execution
    while (list($keyname, $data) = $result_obj['domain_orders']->structEach())
    {
      $data = $data->scalarval();
      $domain_orders[$keyname]['domain_id'] = $data['domain_id']->scalarval();
      $domain_orders[$keyname]['domain_name'] = $data['domain_name']->scalarval();
      $domain_orders[$keyname]['domain_name_idn'] = $data['domain_name_idn']->scalarval();
      $domain_orders[$keyname]['feature_redirect'] = $data['feature_redirect']->scalarval();
      $domain_orders[$keyname]['feature_dns'] = $data['feature_dns']->scalarval();
    }
    
    //writes the array into the array "value"
    $value['domain_orders'] = $domain_orders;
  }  
  return $value;    
}

//calls the function
$result = domain_get_domain_orders($host,$port,$username,$password,$api_path);

if(0==$result['faultCode'])
{
  echo "Status: ".$result['status']."<br><br>";

  //writes the array "server_details" into "daten"
  $daten = $result["domain_orders"];

  //gets the array_keys(members)
  $datenkeys = array_keys($daten);

  $k=0;
  //counts the arraykeys, the number of arraykeys will be used in the do-while construct
  $anzahlkeys = count($datenkeys);

  do
  {
    //outputs the data
    echo " <u>domain_id:</u> ".$datenkeys[$k];
    echo " <u>domain_name:</u> ".$daten[$datenkeys[$k]]['domain_name'];
    echo " <u>domain_name_idn:</u> ".$daten[$datenkeys[$k]]['domain_name_idn'];
    echo " <u>feature_redirect:</u> ".$daten[$datenkeys[$k]]['feature_redirect'];
    echo " <u>feature_dns:</u> ".$daten[$datenkeys[$k]]['feature_dns'];
    echo "<br>";
    $k=$k+1;

  }
  while($k<$anzahlkeys);
}
else
{
  echo "faultCode: ".$result['faultCode']." faultString: ".$result['faultString'];
}
?>