dh-api
[ class tree: dh-api ] [ index: dh-api ] [ all elements ]

Source for file dh-api.php

Documentation is available at dh-api.php

  1. <?php
  2. /**
  3. *
  4. * Ok I suck at phpdoc.org but it might be useful to use it!
  5. * Thanks boldmanuk for
  6. * http://discussion.dreamhost.com/showthreaded.pl?Board=forum_programming&Number=59785
  7. *
  8. * This file needs two more variables to work : $dh_username and $dh_password, your credentials to the DreamHost Panel.
  9. *
  10. * It is a work in progress, please contribute !
  11. *
  12. @package dh-api
  13. */
  14. /**
  15. * This is the email pattern to check for valid email address.
  16. * To use in a regex, wrap into special characters (#) and optionnaly add "^" and/or "$".
  17. @var string 
  18. */
  19. $dhapi_emailPattern="[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})";
  20.  
  21.  
  22.  
  23. /**
  24. * This var (array) contains the fake browser's headers.
  25. * "Standard browser header."
  26. @var array 
  27. */
  28. $dhapi_headerArray=array();
  29. $dhapi_headerArray['Host'"panel.dreamhost.com";
  30. $dhapi_headerArray['Accept'"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
  31. $dhapi_headerArray['Accept-Language'"en-us,en;q=0.5";
  32. $dhapi_headerArray['Accept-Encoding'"gzip,deflate";
  33. $dhapi_headerArray['Accept-Charset'"ISO-8859-1,utf-8;q=0.7,*;q=0.7";
  34. $dhapi_headerArray['Keep-Alive'"300";
  35. $dhapi_headerArray['Connection'"keep-alive";
  36.  
  37.  
  38.  
  39. /**
  40. * User-agent identifier.
  41. @var string 
  42. */
  43. $dhapi_userAgent "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7 with dh-api (http://api.dreamhosters.com/)";
  44.  
  45.  
  46.  
  47. /**
  48. * This var (string) stores the first cookie.
  49. * "I'm using two cookie jars, one for before the login, one for after. Not sure if this is neccessary however."
  50. * note: not sure if it's "mixed"
  51. @var string 
  52. @name $dhapi_cookieJar1
  53. @todo Check if the second one is absolutely necessary.
  54. */
  55. $dhapi_cookieJar1 tempnam($_SERVER['DOCUMENT_ROOT']."/admin",'cookie1');
  56.  
  57.  
  58.  
  59. /**
  60. * This var (string) stores the second cookie.
  61. * note: not sure if it's "mixed"
  62. @name $dhapi_cookieJar2
  63. @todo Check if this is absolutely necessary.
  64. */
  65. $dhapi_cookieJar2 tempnam($_SERVER['DOCUMENT_ROOT']."/admin",'cookie2');
  66.  
  67.  
  68.  
  69. /**
  70. * This function output eventuals cURL errors.
  71. @param mixed $chan This is the result of curl_init().
  72. */
  73. function dhapi_showCurlErrors($dhapi_curlhan{
  74.  if (curl_errno($dhapi_curlhan!= 0{
  75.   print "Last cURL error : ".curl_errno($dhapi_curlhan)."\n";
  76.   print "Last cURL error : ".curl_error($dhapi_curlhan)."\n";
  77.  }
  78. // dhapi_showCurlErrors()
  79.  
  80.  
  81.  
  82. /**
  83. * This function takes the HTML of the page and returns the security hash contained in the hidden form field "security key".
  84. @param string $dhapi_page The HTML of the page returned by cURL.
  85. @return mixed The security_key found in the HTML of the page.
  86. @todo Maybe check that the key was found, and if not return false to break the rest?
  87. */
  88. function dhapi_getSecurityKey($dhapi_page{
  89.  $code preg_match("#name=\"security_key\" value=\"(.{32,32})\"#"$dhapi_page$matches);
  90.  return $matches[1];
  91. // dhapi_getSecurityKey()
  92.  
  93.  
  94.  
  95. /**
  96. * This function disconnects from the panel (deletes the cookie associated with the connection).
  97. */
  98.  global $dhapi_cookieJar2;
  99.  unlink($dhapi_cookieJar2);
  100. //  exit;
  101. // dhapi_panelDisconnect()
  102.  
  103.  
  104.  
  105. /**
  106. * This actually connects to the panel. Three steps:
  107. * <ol>
  108. * <li>connect to the start page and gets the cookies,</li>
  109. * <li>send credentials to authenticate and get the panel,</li>
  110. * <li>reget the panel, in case of loss (...?)</li>
  111. * </ol>
  112. @return bool True or false whether connection succeeded (true) or failed (false).
  113. */
  114.  global $dh_username$dh_password;
  115.  global $dhapi_headerArray$dhapi_userAgent;
  116.  global $dhapi_cookieJar1$dhapi_cookieJar2;
  117.  # start session on index/login page
  118.  $dhapi_ref_url "";
  119.  $dhapi_url     "https://panel.dreamhost.com/";
  120.  
  121.  $dhapi_curl curl_init($dhapi_url);
  122.  curl_setopt($dhapi_curlCURLOPT_VERBOSE1);
  123.  curl_setopt($dhapi_curlCURLOPT_RETURNTRANSFER1);
  124.  curl_setopt($dhapi_curlCURLOPT_HEADER1);
  125.  curl_setopt($dhapi_curlCURLOPT_HTTPAUTHCURLAUTH_ANY);
  126.  curl_setopt($dhapi_curlCURLOPT_HTTPHEADER$dhapi_headerArray);
  127.  curl_setopt($dhapi_curlCURLOPT_USERAGENT,  $dhapi_userAgent);
  128.  curl_setopt($dhapi_curlCURLOPT_COOKIEJAR,  $dhapi_cookieJar1);
  129.  curl_setopt($dhapi_curlCURLOPT_POST0);
  130.  $dhapi_page curl_exec($dhapi_curl);
  131.  dhapi_showCurlErrors($dhapi_curl);
  132.  curl_close($dhapi_curl);
  133.  
  134.  $dhapi_post    "Nscmd=Nlogin&username=$dh_username&password=$dh_password";
  135.  
  136.  # Submit login request
  137.  $dhapi_ref_url $dhapi_url;
  138.  $dhapi_url     "https://panel.dreamhost.com/index.cgi";
  139.  
  140.  $dhapi_curl curl_init($dhapi_url);
  141.  curl_setopt($dhapi_curlCURLOPT_VERBOSE1);
  142.  curl_setopt($dhapi_curlCURLOPT_RETURNTRANSFER1);
  143.  curl_setopt($dhapi_curlCURLOPT_HEADER1);
  144.  curl_setopt($dhapi_curlCURLOPT_REFERER$dhapi_ref_url);
  145.  curl_setopt($dhapi_curlCURLOPT_HTTPAUTHCURLAUTH_ANY);
  146.  curl_setopt($dhapi_curlCURLOPT_HTTPHEADER$dhapi_headerArray);
  147.  curl_setopt($dhapi_curlCURLOPT_USERAGENT,  $dhapi_userAgent);
  148.  curl_setopt($dhapi_curlCURLOPT_COOKIEFILE$dhapi_cookieJar1);
  149.  curl_setopt($dhapi_curlCURLOPT_COOKIEJAR,  $dhapi_cookieJar2);
  150.  curl_setopt($dhapi_curlCURLOPT_POST1);
  151.  curl_setopt($dhapi_curlCURLOPT_POSTFIELDS$dhapi_post);
  152.  $dhapi_page curl_exec($dhapi_curl);
  153.  dhapi_showCurlErrors ($dhapi_curl);
  154.  curl_close($dhapi_curl);
  155.  unlink($dhapi_cookieJar1);
  156.  
  157.  # Resubmit the index page request - often get a blank response from the login page. This makes sure the session is legit
  158.  $dhapi_ref_url $dhapi_url;
  159.  $dhapi_url     "https://panel.dreamhost.com/index.cgi";
  160.  
  161.  $dhapi_curl curl_init($dhapi_url);
  162.  curl_setopt($dhapi_curlCURLOPT_VERBOSE1);
  163.  curl_setopt($dhapi_curlCURLOPT_RETURNTRANSFER1);
  164.  curl_setopt($dhapi_curlCURLOPT_HEADER1);
  165.  curl_setopt($dhapi_curlCURLOPT_REFERER$dhapi_ref_url);
  166.  curl_setopt($dhapi_curlCURLOPT_HTTPAUTHCURLAUTH_ANY);
  167.  curl_setopt($dhapi_curlCURLOPT_HTTPHEADER$dhapi_headerArray);
  168.  curl_setopt($dhapi_curlCURLOPT_USERAGENT,  $dhapi_userAgent);
  169.  curl_setopt($dhapi_curlCURLOPT_COOKIEFILE$dhapi_cookieJar2);
  170.  curl_setopt($dhapi_curlCURLOPT_POST0);
  171.  $dhapi_page curl_exec($dhapi_curl);
  172.  dhapi_showCurlErrors ($dhapi_curl);
  173.  curl_close($dhapi_curl);
  174.  
  175.  $success strpos($dhapi_page"Welcome to your DreamHost Control Panel!");
  176.  if ($success>0return trueelse return false}
  177. // dhapi_panelConnect()
  178.  
  179.  
  180.  
  181. /**
  182. * This function creates a new email account. Steps:
  183. * <ol>
  184. *  <li>Get the "Create New Email Address" page to extract the security_key.</li>
  185. *  <li>Post the variables to the "?" page.</li>
  186. *  <li>Extract from the result page "error" or "success"</li>
  187. * </ol>
  188. @param string    $email        (input "text")        The email address, like user@example.com. The hashing is done inside the function.
  189. @param string    $redirect     (input "textarea")    The email address(es) to redirect the new one to, or empty (""). One or many line-separated addresses (NOTE: is this \\n, \\r, mix?).
  190. @param mixed    $redirect_only    (input "hidden")    Boolean "false" creates a normal inbox (also with forward capabilities) ; boolean "true" creates a forward-only email-address (no actual inbox is created) ; string "null" creates a "garbage email address. Warning : Last two value dump gecos and other values...
  191. @param mixed    $name         (input "text")        The "name" (ex: John Doe), facultative.
  192. @param string    $pass         (input "text")        The password for this account. It is used twice, so have it confirmed/checked before. Min 6 chars. TODO: Max?
  193. @param mixed    $limMB        (input "text")        Limit value of disk usage (in MB or empty), or "false".
  194. @param bool    $warning     (input "checkbox")    The "email me if my usage is within 10% of my limit (or 100MB, whichever is smaller)".
  195. @param int    $rem_qty     (input "text")        Remove read messages when inbox reaches this message quantity (max 2000). Set to false for 0. NOTE: MIN:0, MAX:2000.
  196. @param int    $rem_age     (input "text")        Remove read messages older than this numbers of days (max 9999). Set to false for 0. NOTE: MIN:0, MAX:9999.
  197. @param bool    $rem_new     (input "checkbox")    Remove even unread messages.
  198. @param mixed    $rem_fol     (input "text")        Save removed messages in this folder. Leave empty or set to false to really deleted them. NOTE: This will be formatted with imap_utf7_encode() so warn the user if input does not match formatted.
  199. @param bool    $rem_mai     (input "checkbox")    Email me when messages are removed.
  200. @return bool True If the email was created, false otherwise.
  201. */
  202. function dhapi_panelEmailCreate($email$redirect$redirect_only$name$pass$limMB$warning$rem_qty$rem_age$rem_new$rem_fol$rem_mai{
  203.  global $dhapi_headerArray$dhapi_userAgent$dhapi_url;
  204.  global $dhapi_cookieJar2;
  205.  
  206.  # ask for the "Create New Email" page and get the security_key
  207.  $dhapi_ref_url=$dhapi_url;
  208.  $dhapi_url  "https://panel.dreamhost.com/index.cgi?tree=mail.addresses&current_step=Index&next_step=New";
  209.  $dhapi_curl curl_init($dhapi_url);
  210.  curl_setopt($dhapi_curlCURLOPT_VERBOSE1);
  211.  curl_setopt($dhapi_curlCURLOPT_RETURNTRANSFER1);
  212.  curl_setopt($dhapi_curlCURLOPT_HEADER1);
  213.  curl_setopt($dhapi_curlCURLOPT_REFERER$dhapi_ref_url);
  214.  curl_setopt($dhapi_curlCURLOPT_HTTPAUTHCURLAUTH_ANY);
  215.  curl_setopt($dhapi_curlCURLOPT_HTTPHEADER$dhapi_headerArray);
  216.  curl_setopt($dhapi_curlCURLOPT_USERAGENT,  $dhapi_userAgent);
  217.  curl_setopt($dhapi_curlCURLOPT_COOKIEFILE$dhapi_cookieJar2);
  218.  curl_setopt($dhapi_curlCURLOPT_POST0);
  219.  $dhapi_page curl_exec($dhapi_curl);
  220.  dhapi_showCurlErrors ($dhapi_curl);
  221.  curl_close($dhapi_curl);
  222.  $dhapi_skey dhapi_getSecurityKey($dhapi_page);
  223.  
  224.  # post vars after they are created
  225.  $mail=split("@"$email);
  226.  $alias=$mail[0];
  227.  $domain=$mail[1];
  228.  if ($limMB)    $enable_quota="on"$hard_quota=intval($limMB)}
  229.  if (!$warning)    $notify_disk=""else $notify_disk="on"}
  230.  if ($rem_qty)    $max_messages=intval($rem_qty)else $max_messages="2000"}
  231.  if ($rem_age)    $days=intval($rem_age)else $days=9999}
  232.  if ($rem_new)    $rotate_new="on"else $rotate_new=""}
  233.  if ($rem_fol)    $archive="on"$archive_folder=imap_utf7_encode($rem_fol)}
  234.  if ($rem_mai)    $notify="on"else $notify=""}
  235.  
  236.  $dhapi_ref_url $dhapi_url;
  237.  $dhapi_url  "https://panel.dreamhost.com/index.cgi?";
  238.  
  239.  if ($redirect_only==="null"{
  240.   $dhapi_post "tree=mail.addresses&current_step=New&next_step=NewFinal&security_key=$dhapi_skey&dest=null";
  241.   $dhapi_post.= "alias=$alias&domain=$domain";
  242.  }
  243.  elseif ($redirect_only==true{
  244.   $dhapi_post "tree=mail.addresses&current_step=New&next_step=NewFinal&security_key=$dhapi_skey&dest=forward";
  245.   $dhapi_post.= "&alias=$alias&domain=$domain&addresses=$redirect";
  246.  }
  247.  elseif ($redirect_only==false{
  248.   $dhapi_post "tree=mail.addresses&current_step=New&next_step=NewFinal&security_key=$dhapi_skey&dest=forward&mailbox=1";    // basic from hidden
  249.   $dhapi_post.= "&alias=$alias&domain=$domain&gecos=$name&random=&password1=$pass&password2=$pass";    // basic login
  250.   $dhapi_post.= "&enable_quota=$enable_quota&hard_quota=$hard_quota&notify_disk=$notify_disk&addresses=$redirect";    // advanced login, archive and forward
  251.   $dhapi_post.= "&max_messages=$max_messages&days=$days&rotate_new=$rotate_new&archive=$archive&archive_folder=$archive_folder&notify=$notify";    // tidy inboxes...
  252.  }
  253.  
  254.  $dhapi_curl curl_init($dhapi_url);
  255.  curl_setopt($dhapi_curlCURLOPT_VERBOSE1);
  256.  curl_setopt($dhapi_curlCURLOPT_RETURNTRANSFER1);
  257.  curl_setopt($dhapi_curlCURLOPT_HEADER1);
  258.  curl_setopt($dhapi_curlCURLOPT_REFERER$dhapi_ref_url);
  259.  curl_setopt($dhapi_curlCURLOPT_HTTPAUTHCURLAUTH_ANY);
  260.  curl_setopt($dhapi_curlCURLOPT_HTTPHEADER$dhapi_headerArray);
  261.  curl_setopt($dhapi_curlCURLOPT_USERAGENT,  $dhapi_userAgent);
  262.  curl_setopt($dhapi_curlCURLOPT_COOKIEFILE$dhapi_cookieJar2);
  263.  curl_setopt($dhapi_curlCURLOPT_POST1);
  264.  curl_setopt($dhapi_curlCURLOPT_POSTFIELDS$dhapi_post);
  265.  $dhapi_page curl_exec($dhapi_curl);
  266.  dhapi_showCurlErrors ($dhapi_curl);
  267.  curl_close($dhapi_curl);
  268. //  echo "<div style=\"width:500px;height:500px;overflow:auto\">$dhapi_page</div>";
  269. //  echo "\n<br />dhapi_post=$dhapi_post";
  270.  
  271.  $success=strpos($dhapi_page"Successfully added");
  272. //  echo "success=$success;\n";
  273.  
  274.  if ($success>0{return true}
  275.  else return false}
  276. // dhapi_panelEmailCreate()
  277.  
  278.  
  279. /**
  280. * This function edits an existing email account. Steps:
  281. * <ol>
  282. *  <li>Get the "edit" page to extract the security_key.</li>
  283. *  <li>Post the variables into the "?" page.</li>
  284. *  <li>Extract from the result page...</li>
  285. * </ol>
  286. @param string    $email        (input "text")        The email address (user@domain) to edit.
  287. @param string    $redirect    (input "text")        The email address(es) to redirect this one, or empty (""). One or many line-separated addresses (NOTE: is this \\n, \\r, mix?).
  288. @param mixed    $redirect_only    (input "hidden")    Boolean "false" creates a normal inbox (also with forward capabilities) ; boolean "true" creates a forward-only email-address (no actual inbox is created) ; string "null" creates a "garbage email address. Warning : Last two value dump gecos and other values...
  289. @param mixed    $name        (input "text")        The "name" (ex: John Doe), facultative.
  290. @param string    $pass        (input "text")        The password for the account. It is used twice, so have it confirmed/checked before. Min 6 chars. TODO: Max?
  291. @param mixed    $limMB        (input "text")        Limit value of disk usage (in MB or empty), or "false".
  292. @param bool    $warning    (input "checkbox")    The "email me if my usage is within 10% of my limit (or 100MB, whichever is smaller)".
  293. @param int    $rem_qty    (input "text")        Remove read messages when inbox reaches this message quantity (max 2000). Set to false for 0. NOTE: MIN:0, MAX:2000.
  294. @param int    $rem_age    (input "text")        Remove read messages older than this numbers of days (max 9999). Set to false for 0. NOTE: MIN:0, MAX:9999.
  295. @param bool    $rem_new    (input "checkbox")    Remove even unread messages.
  296. @param mixed    $rem_fol    (input "text")        Save removed messages in this folder. Leave empty or set to false to really deleted them. NOTE: This will be formatted with imap_utf7_encode() so warn the user if input does not match formatted.
  297. @param bool    $rem_mai     (input "checkbox")    Email me when messages are removed.
  298. @return bool True If the email was edited, false otherwise.
  299. */
  300. function dhapi_panelEmailEdit($email$redirect$redirect_only$name$pass$limMB$warning$rem_qty$rem_age$rem_new$rem_fol$rem_mai{
  301.  global $dhapi_headerArray$dhapi_userAgent$dhapi_url;
  302.  global $dhapi_cookieJar2;
  303.  
  304.  $mail=split("@"$email);
  305.  $alias=$mail[0];
  306.  $domain=$mail[1];
  307.  if ($limMB)    $enable_quota="on"$hard_quota=intval($limMB)}
  308.  if (!$warning)    $notify_disk=""else $notify_disk="on"}
  309.  if ($rem_qty)    $max_messages=intval($rem_qty)else $max_messages="2000"}
  310.  if ($rem_age)    $days=intval($rem_age)else $days=9999}
  311.  if ($rem_new)    $rotate_new="on"else $rotate_new=""}
  312.  if ($rem_fol)    $archive="on"$archive_folder=imap_utf7_encode($rem_fol)}
  313.  if ($rem_mai)    $notify="on"else $notify=""}
  314.  
  315.  # get the security_key
  316.  $dhapi_ref_url $dhapi_url;
  317.  $dhapi_url "https://panel.dreamhost.com/index.cgi?tree=mail.addresses&odomain=$domain&current_step=Index&next_step=Edit&oalias=$alias";
  318.  $dhapi_curl curl_init($dhapi_url);
  319.  curl_setopt($dhapi_curlCURLOPT_VERBOSE1);
  320.  curl_setopt($dhapi_curlCURLOPT_RETURNTRANSFER1);
  321.  curl_setopt($dhapi_curlCURLOPT_HEADER1);
  322.  curl_setopt($dhapi_curlCURLOPT_REFERER$dhapi_ref_url);
  323.  curl_setopt($dhapi_curlCURLOPT_HTTPAUTHCURLAUTH_ANY);
  324.  curl_setopt($dhapi_curlCURLOPT_HTTPHEADER$dhapi_headerArray);
  325.  curl_setopt($dhapi_curlCURLOPT_USERAGENT,  $dhapi_userAgent);
  326.  curl_setopt($dhapi_curlCURLOPT_COOKIEFILE$dhapi_cookieJar2);
  327.  curl_setopt($dhapi_curlCURLOPT_POST0);
  328.  $dhapi_page curl_exec($dhapi_curl);
  329.  dhapi_showCurlErrors ($dhapi_curl);
  330.  curl_close($dhapi_curl);
  331.  $dhapi_skey dhapi_getSecurityKey($dhapi_page);
  332.  
  333.  # post vars after they are created
  334.  $dhapi_ref_url=$dhapi_url;
  335.  $dhapi_url  "https://panel.dreamhost.com/index.cgi?";
  336.  
  337.  if ($redirect_only==="null"{
  338.   $dhapi_post "tree=mail.addresses&current_step=Edit&next_step=EditFinal&security_key=$dhapi_skey&dest=null";
  339.   $dhapi_post.= "&alias=$alias&domain=$domain";
  340.  }
  341.  elseif ($redirect_only==true{
  342.   $dhapi_post "tree=mail.addresses&current_step=Edit&next_step=EditFinal&security_key=$dhapi_skey&dest=forward";
  343.   $dhapi_post.= "&alias=$alias&domain=$domain&addresses=$redirect";
  344.  }
  345.  elseif ($redirect_only==false{
  346.   $dhapi_post "tree=mail.addresses&current_step=Edit&next_step=EditFinal&security_key=$dhapi_skey&dest=forward&mailbox=1";    // basic from hidden
  347.   $dhapi_post.= "&alias=$alias&domain=$domain&gecos=$name&random=&password1=$pass&password2=$pass";    // basic login
  348.   $dhapi_post.= "&enable_quota=$enable_quota&hard_quota=$hard_quota&notify_disk=$notify_disk&addresses=$redirect";    // advanced login, archive and forward
  349.   $dhapi_post.= "&max_messages=$max_messages&days=$days&rotate_new=$rotate_new&archive=$archive&archive_folder=$archive_folder&notify=$notify";    // tidy inboxes...
  350.  }
  351.  
  352.  $dhapi_curl curl_init($dhapi_url);
  353.  curl_setopt($dhapi_curlCURLOPT_VERBOSE1);
  354.  curl_setopt($dhapi_curlCURLOPT_RETURNTRANSFER1);
  355.  curl_setopt($dhapi_curlCURLOPT_HEADER1);
  356.  curl_setopt($dhapi_curlCURLOPT_REFERER$dhapi_ref_url);
  357.  curl_setopt($dhapi_curlCURLOPT_HTTPAUTHCURLAUTH_ANY);
  358.  curl_setopt($dhapi_curlCURLOPT_HTTPHEADER$dhapi_headerArray);
  359.  curl_setopt($dhapi_curlCURLOPT_USERAGENT,  $dhapi_userAgent);
  360.  curl_setopt($dhapi_curlCURLOPT_COOKIEFILE$dhapi_cookieJar2);
  361.  curl_setopt($dhapi_curlCURLOPT_POST1);
  362.  curl_setopt($dhapi_curlCURLOPT_POSTFIELDS$dhapi_post);
  363.  $dhapi_page curl_exec($dhapi_curl);
  364.  dhapi_showCurlErrors ($dhapi_curl);
  365.  curl_close($dhapi_curl);
  366. //  echo "<div style=\"width:500px;height:500px;overflow:auto\">$dhapi_page</div>";
  367. //  echo "\n<br />dhapi_post:$dhapi_post;\n\n";
  368.  
  369.  $success=strpos($dhapi_page"Successfully edited ");
  370. //  echo "success=$success;\n";
  371.  
  372.  if ($success>0{return true}
  373.  else return false}
  374. // dhapi_panelEmailEdit()
  375.  
  376.  
  377.  
  378. /**
  379. * This function checks if an email address already exists. It takes the address as parameter and checks for USER in DOMAIN.
  380. @param string $email This is the email address to check.
  381. @return bool True if the email DOES NOT exist, false otherwise.
  382. */
  383. function dhapi_panelEmailCheck($email{
  384.  global $USER$PASS$dhapi_url;
  385.  global $dhapi_headerArray$dhapi_userAgent;
  386.  global $dhapi_cookieJar1$dhapi_cookieJar2;
  387.  $dhapi_ref_url $dhapi_url;
  388.  $dhapi_url     "https://panel.dreamhost.com/index.cgi?tree=mail.addresses&";
  389.  $param_string "";
  390.  
  391.  $dhapi_curl curl_init($dhapi_url);
  392.  curl_setopt($dhapi_curlCURLOPT_VERBOSE1);
  393.  curl_setopt($dhapi_curlCURLOPT_RETURNTRANSFER1);
  394.  curl_setopt($dhapi_curlCURLOPT_HEADER1);
  395.  curl_setopt($dhapi_curlCURLOPT_REFERER$dhapi_ref_url);
  396.  curl_setopt($dhapi_curlCURLOPT_HTTPAUTHCURLAUTH_ANY);
  397.  curl_setopt($dhapi_curlCURLOPT_HTTPHEADER$dhapi_headerArray);
  398.  curl_setopt($dhapi_curlCURLOPT_USERAGENT,  $dhapi_userAgent);
  399.  curl_setopt($dhapi_curlCURLOPT_COOKIEFILE$dhapi_cookieJar2);
  400.  curl_setopt($dhapi_curlCURLOPT_POST0);
  401.  $dhapi_page curl_exec($dhapi_curl);
  402.  dhapi_showCurlErrors ($dhapi_curl);
  403.  curl_close($dhapi_curl);
  404.  
  405.  $mail split("@"$email);
  406.  $dhapi_skey dhapi_getSecurityKey($dhapi_page);
  407.  $dhapi_post    "tree=mail.addresses&current_step=Index&next_step=DoSelector&security_key=$dhapi_skey&domainselector={$mail[1]}";
  408.  
  409.  $dhapi_ref_url $dhapi_url;
  410.  $dhapi_url     "https://panel.dreamhost.com/index.cgi?";
  411.  
  412.  $dhapi_curl curl_init($dhapi_url);
  413.  curl_setopt($dhapi_curlCURLOPT_VERBOSE1);
  414.  curl_setopt($dhapi_curlCURLOPT_RETURNTRANSFER1);
  415.  curl_setopt($dhapi_curlCURLOPT_HEADER1);
  416.  curl_setopt($dhapi_curlCURLOPT_REFERER$dhapi_ref_url);
  417.  curl_setopt($dhapi_curlCURLOPT_HTTPAUTHCURLAUTH_ANY);
  418.  curl_setopt($dhapi_curlCURLOPT_HTTPHEADER$dhapi_headerArray);
  419.  curl_setopt($dhapi_curlCURLOPT_COOKIEFILE$dhapi_cookieJar2);
  420.  curl_setopt($dhapi_curlCURLOPT_POST1);
  421.  curl_setopt($dhapi_curlCURLOPT_POSTFIELDS$dhapi_post);
  422.  $dhapi_page curl_exec($dhapi_curl);
  423. //  echo "<div style=\"width:500px;height:500px;overflow:auto\">$dhapi_page</div>";
  424.  dhapi_showCurlErrors ($dhapi_curl);
  425.  curl_close($dhapi_curl);
  426.  
  427.  // the following line is because in the panel HTML, the alias is bolded and not the @domain
  428.  $email=str_replace("@""</b>@"$email);
  429.  $exist=strpos($dhapi_page$email);
  430.  
  431.  if ($exist>0return falseelse return true}
  432. // dhapi_panelEmailCheck()
  433.  
  434.  
  435.  
  436. /**
  437. * This functions deletes PERMANENTLY an email account and all its messages
  438. * First connects to the "Manage email" page and get the security code;
  439. * Then  requests the delete-email URI.
  440. @param string $email The email address to delete.
  441. @return bool True is email deleted, false otherwise
  442. */
  443. function dhapi_panelEmailDelete($email{
  444.  global $dhapi_headerArray$dhapi_userAgent$dhapi_url;
  445.  global $dhapi_cookieJar2;
  446.  
  447.  # build the variables...
  448.  $dh_mailDelete split("@"$email);
  449.  $alias  $dh_mailDelete[0];
  450.  $domain $dh_mailDelete[1];
  451.  
  452.  # get the security key...
  453.  $dhapi_ref_url $dhapi_url;
  454.  $dhapi_url     "https://panel.dreamhost.com/index.cgi?tree=mail.addresses&";
  455.  $dhapi_curl=curl_init($dhapi_url);
  456.  curl_setopt($dhapi_curlCURLOPT_VERBOSE1);
  457.  curl_setopt($dhapi_curlCURLOPT_RETURNTRANSFER1);
  458.  curl_setopt($dhapi_curlCURLOPT_HEADER1);
  459.  curl_setopt($dhapi_curlCURLOPT_REFERER$dhapi_ref_url);
  460.  curl_setopt($dhapi_curlCURLOPT_HTTPAUTHCURLAUTH_ANY);
  461.  curl_setopt($dhapi_curlCURLOPT_HTTPHEADER$dhapi_headerArray);
  462.  curl_setopt($dhapi_curlCURLOPT_USERAGENT,  $dhapi_userAgent);
  463.  curl_setopt($dhapi_curlCURLOPT_COOKIEFILE$dhapi_cookieJar2);
  464.  curl_setopt($dhapi_curlCURLOPT_POST0);
  465.  $dhapi_page curl_exec($dhapi_curl);
  466.  dhapi_showCurlErrors ($dhapi_curl);
  467.  curl_close($dhapi_curl);
  468.  $dhapi_skey dhapi_getSecurityKey($dhapi_page);
  469.  
  470.  # delete the email address...
  471.  $dhapi_ref_url $dhapi_url;
  472.  $dhapi_url "https://panel.dreamhost.com/index.cgi?tree=mail.addresses&odomain=$domain&current_step=Index&next_step=DeleteFinal&oalias=$alias&security_key=$dhapi_skey";
  473.  $dhapi_curl=curl_init($dhapi_url);
  474.  curl_setopt($dhapi_curlCURLOPT_VERBOSE1);
  475.  curl_setopt($dhapi_curlCURLOPT_RETURNTRANSFER1);
  476.  curl_setopt($dhapi_curlCURLOPT_HEADER1);
  477.  curl_setopt($dhapi_curlCURLOPT_REFERER$dhapi_ref_url);
  478.  curl_setopt($dhapi_curlCURLOPT_HTTPAUTHCURLAUTH_ANY);
  479.  curl_setopt($dhapi_curlCURLOPT_HTTPHEADER$dhapi_headerArray);
  480.  curl_setopt($dhapi_curlCURLOPT_USERAGENT,  $dhapi_userAgent);
  481.  curl_setopt($dhapi_curlCURLOPT_COOKIEFILE$dhapi_cookieJar2);
  482.  curl_setopt($dhapi_curlCURLOPT_POST0);
  483.  $dhapi_page curl_exec($dhapi_curl);
  484.  dhapi_showCurlErrors ($dhapi_curl);
  485.  curl_close($dhapi_curl);
  486. //  echo "<div style=\"width:500px;height:500px;overflow:auto\">$dhapi_page</div>";
  487.  
  488.  $success=strpos($dhapi_page"Successfully deleted $email!");
  489.  
  490.  if ($success>0return true}
  491.  else return false}
  492. // dhapi_panelEmailDelete()
  493.  
  494. ?>

Documentation generated on Sat, 06 Sep 2008 14:09:50 -0700 by phpDocumentor 1.4.1