123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <?php
- /**
- ** addressbook.php
- **
- ** Functions and classes for the addressbook system.
- **
- **/
-
- $addressbook_php = true;
- // Include backends here.
- include("../functions/abook_local_file.php");
- include("../functions/abook_ldap_server.php");
- // Create and initialize an addressbook object.
- // Returns the created object
- function addressbook_init($showerr = true, $onlylocal = false) {
- global $data_dir, $username, $ldap_server;
-
- // Create a new addressbook object
- $abook = new AddressBook;
-
- // Always add a local backend
- $filename = sprintf("%s%s.abook", $data_dir, $username);
- $r = $abook->add_backend("local_file", Array("filename" => $filename,
- "create" => true));
- if(!$r && $showerr) {
- printf(_("Error opening file %s"), $filename);
- exit;
- }
- if($onlylocal)
- return $abook;
- // Load configured LDAP servers
- reset($ldap_server);
- while(list($key,$param) = each($ldap_server)) {
- if(is_array($param)) {
- $r = $abook->add_backend("ldap_server", $param);
- if(!$r && $showerr) {
- printf(" "._("Error initializing LDAP server %s:")."<BR>\n",
- $param["host"]);
- printf(" ".$abook->error);
- exit;
- }
- }
- }
- // Return the initialized object
- return $abook;
- }
- /**
- ** This is the main address book class that connect all the
- ** backends and provide services to the functions above.
- **
- **/
- class AddressBook {
- var $backends = array();
- var $numbackends = 0;
- var $error = "";
- var $localbackend = 0;
- // Constructor function.
- function AddressBook() {
- }
- // Return an array of backends of a given type,
- // or all backends if no type is specified.
- function get_backend_list($type = "") {
- $ret = array();
- for($i = 1 ; $i <= $this->numbackends ; $i++) {
- if(empty($type) || $type == $this->backends[$i]->btype) {
- array_push($ret, &$this->backends[$i]);
- }
- }
- return $ret;
- }
- // ========================== Public ========================
- // Add a new backend. $backend is the name of a backend
- // (without the abook_ prefix), and $param is an optional
- // mixed variable that is passed to the backend constructor.
- // See each of the backend classes for valid parameters.
- function add_backend($backend, $param = "") {
- $backend_name = "abook_".$backend;
- eval("\$newback = new $backend_name(\$param);");
- if(!empty($newback->error)) {
- $this->error = $newback->error;
- return false;
- }
- $this->numbackends++;
-
- $newback->bnum = $this->numbackends;
- $this->backends[$this->numbackends] = $newback;
- // Store ID of first local backend added
- if($this->localbackend == 0 && $newback->btype == "local")
- $this->localbackend = $this->numbackends;
- return $this->numbackends;
- }
- // Return a list of addresses matching expression in
- // all backends of a given type.
- function search($expression, $btype = "") {
- $ret = array();
- $this->error = "";
- $sel = $this->get_backend_list($btype);
- $failed = 0;
- for($i = 0 ; $i < sizeof($sel) ; $i++) {
- $backend = &$sel[$i];
- $backend->error = "";
- $res = $backend->search($expression);
- if(is_array($res)) {
- $ret = array_merge($ret, $res);
- } else {
- $this->error = $this->error . "<br>\n". $backend->error;
- $failed++;
- }
- }
- // Only fail if all backends failed
- if($failed >= sizeof($sel))
- return false;
- return $ret;
- }
- // Return a sorted search
- function s_search($expression, $btype = "") {
- $ret = $this->search($expression, $btype);
- if(!is_array($ret))
- return $ret;
- // Inline function - Not nice, but still..
- function cmp($a,$b) {
- if($a["backend"] > $b["backend"])
- return 1;
- else if($a["backend"] < $b["backend"])
- return -1;
-
- return (strtolower($a["name"]) > strtolower($b["name"])) ? 1 : -1;
- }
- usort($ret, 'cmp');
- return $ret;
- }
- // Lookup an address by alias. Only possible in
- // local backends.
- function lookup($alias) {
- $ret = array();
- $sel = $this->get_backend_list("local");
- for($i = 0 ; $i < sizeof($sel) ; $i++) {
- $backend = &$sel[$i];
- $backend->error = "";
- $res = $backend->lookup($alias);
- if(is_array($res)) {
- return $res;
- } else {
- $this->error = $backend->error;
- return false;
- }
- }
- return $ret;
- }
- // Return all addresses
- function list_addr() {
- $ret = array();
- $sel = $this->get_backend_list("local");
- for($i = 0 ; $i < sizeof($sel) ; $i++) {
- $backend = &$sel[$i];
- $backend->error = "";
- $res = $backend->list_addr();
- if(is_array($res)) {
- $ret = array_merge($ret, $res);
- } else {
- $this->error = $backend->error;
- return false;
- }
- }
- return $ret;
- }
- // Create a new address from $userdata, in backend $bnum.
- // Return the backend number that the/ address was added
- // to, or false if it failed.
- function add($userdata, $bnum) {
- // Validate data
- if(!is_array($userdata)) {
- $this->error = _("Invalid input data");
- return false;
- }
- if(empty($userdata["fullname"]) &&
- empty($userdata["lastname"])) {
- $this->error = _("Name is missing");
- return false;
- }
- if(empty($userdata["email"])) {
- $this->error = _("E-mail address is missing");
- return false;
- }
- if(empty($userdata["nickname"])) {
- $userdata["nickname"] = $userdata["email"];
- }
- // Check that specified backend accept new entries
- if(!$this->backends[$bnum]->writeable) {
- $this->error = _("Addressbook is read-only");
- return false;
- }
- // Add address to backend
- $res = $this->backends[$bnum]->add($userdata);
- if($res) {
- return $bnum;
- } else {
- $this->error = $this->backends[$bnum]->error;
- return false;
- }
- return false; // Not reached
- }
- }
- /**
- ** Generic backend that all other backends extend
- **/
- class addressbook_backend {
- // Variables that all backends must provide.
- var $btype = "dummy";
- var $bname = "dummy";
- var $sname = "Dummy backend";
- // Variables common for all backends, but that
- // should not be changed by the backends.
- var $bnum = -1;
- var $error = "";
- var $writeable = false;
- function set_error($string) {
- $this->error = "[" . $this->sname . "] " . $string;
- return false;
- }
- // ========================== Public ========================
- function search($expression) {
- $this->set_error("search not implemented");
- return false;
- }
- function lookup($alias) {
- $this->set_error("lookup not implemented");
- return false;
- }
- function list_addr() {
- $this->set_error("list_addr not implemented");
- return false;
- }
- function add($userdata) {
- $this->set_error("add not implemented");
- return false;
- }
- }
- ?>
|