2001-01-14 22:35:04 +01:00
|
|
|
<?php
|
|
|
|
// This file defines a set of functions and an associative array.
|
|
|
|
// The key of the array corresponds to a header in the source
|
|
|
|
// outlook file and the value of the array item will be used in
|
|
|
|
// the creation of the output file.
|
|
|
|
//
|
|
|
|
// An exported Outlook file looks like this:
|
|
|
|
//
|
|
|
|
// Title<tab>First Name<tab>Middle Name<tab>Last Name<tab>...
|
|
|
|
// <tab>Patrick<tab><tab>Walsh<tab>...
|
|
|
|
//
|
|
|
|
// Where the first line explains each optional field. This is what
|
|
|
|
// will be looked up in the key.
|
|
|
|
//
|
|
|
|
// The array need not be in any order and any fields not defined will
|
|
|
|
// not be transferred. If the val='+', the value will be appended to
|
|
|
|
// the previous field and any text after the '+' will be appended
|
|
|
|
// before the value. For example, the following would add a comma and
|
|
|
|
// a space between LastName and FirstName and store it in FullName:
|
|
|
|
//
|
|
|
|
// array("LastName" => "FullName","FirstName" => "+, ");
|
|
|
|
//
|
|
|
|
// Also start with a '#' symbol and a comma separated list will be
|
|
|
|
// turned into a number of the same entries.
|
|
|
|
|
|
|
|
class outlook_conv {
|
|
|
|
var $currentrecord; //used for buffering to allow uid lines to go first
|
|
|
|
|
|
|
|
var $outlook = array(
|
2001-03-11 07:07:32 +01:00
|
|
|
"Title" => "title",
|
|
|
|
"First Name" => "n_given",
|
|
|
|
"Middle Name" => "n_middle",
|
|
|
|
"Last Name" => "n_family",
|
|
|
|
"Suffix" => "n_suffix",
|
|
|
|
"Company" => "org_name", //objectclass: organization
|
|
|
|
"Department" => "org_unit", //objectclass: organizationalPerson
|
|
|
|
"Job Title" => "title", //objectclass: organizationalPerson
|
2001-02-04 06:53:24 +01:00
|
|
|
"Business Street" => "address2",
|
2001-01-14 22:35:04 +01:00
|
|
|
"Business Street 2" => "",
|
|
|
|
"Business Street 3" => "",
|
|
|
|
"Business City" => "",
|
|
|
|
"Business State" => "",
|
|
|
|
"Business Postal Code" => "",
|
|
|
|
"Business Country" => "",
|
2001-03-11 07:07:32 +01:00
|
|
|
"Home Street" => "adr_street",
|
|
|
|
"Home City" => "adr_locality",
|
|
|
|
"Home State" => "adr_region",
|
|
|
|
"Home Postal Code" => "adr_postalcode",
|
|
|
|
"Home Country" => "adr_countryname",
|
2001-01-14 22:35:04 +01:00
|
|
|
"Home Street 2" => "",
|
|
|
|
"Home Street 3" => "",
|
|
|
|
"Other Street" => "",
|
|
|
|
"Other City" => "",
|
|
|
|
"Other State" => "",
|
|
|
|
"Other Postal Code" => "",
|
|
|
|
"Other Country" => "",
|
|
|
|
"Assistant's Phone" => "",
|
2001-03-11 07:07:32 +01:00
|
|
|
"Business Fax" => "c_tel",
|
|
|
|
"Business Phone" => "b_tel",
|
2001-02-04 06:53:24 +01:00
|
|
|
"Business Phone 2" => "ophone",
|
2001-01-14 22:35:04 +01:00
|
|
|
"Callback" => "",
|
|
|
|
"Car Phone" => "",
|
|
|
|
"Company Main Phone" => "",
|
|
|
|
"Home Fax" => "",
|
2001-03-11 07:07:32 +01:00
|
|
|
"Home Phone" => "a_tel",
|
2001-01-14 22:35:04 +01:00
|
|
|
"Home Phone 2" => "", //This will make another homePhone entry
|
|
|
|
"ISDN" => "",
|
2001-02-04 06:53:24 +01:00
|
|
|
"Mobile Phone" => "mphone", //newPilotPerson
|
2001-01-14 22:35:04 +01:00
|
|
|
"Other Fax" => "",
|
|
|
|
"Other Phone" => "",
|
2001-02-04 06:53:24 +01:00
|
|
|
"Pager" => "pager",
|
2001-01-14 22:35:04 +01:00
|
|
|
"Primary Phone" => "",
|
|
|
|
"Radio Phone" => "",
|
|
|
|
"TTY/TDD Phone" => "",
|
|
|
|
"Telex" => "", //organization
|
|
|
|
"Account" => "",
|
|
|
|
"Anniversary" => "",
|
|
|
|
"Assistant's Name" => "", //newPilotPerson
|
|
|
|
"Billing Information" => "",
|
2001-02-04 06:53:24 +01:00
|
|
|
"Birthday" => "bday",
|
2001-01-14 22:35:04 +01:00
|
|
|
"Categories" => "",
|
|
|
|
"Children" => "",
|
|
|
|
"Directory Server" => "",
|
2001-03-11 07:07:32 +01:00
|
|
|
"E-mail Address" => "d_email",
|
2001-01-14 22:35:04 +01:00
|
|
|
"E-mail Display Name" => "",
|
|
|
|
"E-mail 2 Address" => "",
|
|
|
|
"E-mail 2 Display Name" => "",
|
|
|
|
"E-mail 3 Address" => "", //add another...
|
|
|
|
"E-mail 3 Display Name" => "",
|
|
|
|
"Gender" => "",
|
|
|
|
"Government ID Number" => "",
|
|
|
|
"Hobby" => "",
|
|
|
|
"Initials" => "",
|
|
|
|
"Internet Free Busy" => "",
|
|
|
|
"Keywords" => "",
|
|
|
|
"Language" => "",
|
|
|
|
"Location" => "",
|
|
|
|
"Manager's Name" => "",
|
|
|
|
"Mileage" => "",
|
2001-03-11 07:07:32 +01:00
|
|
|
"Notes" => "note",
|
2001-01-14 22:35:04 +01:00
|
|
|
"Office Location" => "",
|
|
|
|
"Organizational ID Number" => "",
|
2001-03-11 07:07:32 +01:00
|
|
|
"PO Box" => "",
|
2001-01-14 22:35:04 +01:00
|
|
|
"Priority" => "",
|
|
|
|
"Private Profession" => "",
|
|
|
|
"Referred By" => "",
|
|
|
|
"Sensitivity" => "",
|
|
|
|
"Spouse" => "",
|
|
|
|
"User 1" => "",
|
|
|
|
"User 2" => "",
|
|
|
|
"User 3" => "",
|
|
|
|
"User 4" => "",
|
|
|
|
"Web Page" => "");
|
|
|
|
|
|
|
|
function outlook_start_file($buffer,$j="",$k="") {
|
|
|
|
return $buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
function outlook_end_file($buffer) {
|
2001-02-04 06:53:24 +01:00
|
|
|
global $phpgw,$phpgw_info;
|
2001-01-14 22:35:04 +01:00
|
|
|
|
2001-02-04 06:53:24 +01:00
|
|
|
$lines = split("\n",$buffer);
|
|
|
|
$contacts = CreateObject("phpgwapi.contacts");
|
|
|
|
|
2001-01-14 22:35:04 +01:00
|
|
|
for ($i=0;$i<count($lines);$i++) {
|
2001-02-04 06:53:24 +01:00
|
|
|
$entry=$lines[$i];
|
|
|
|
$contacts->add($phpgw_info["user"]["account_id"],$entry);
|
2001-01-14 22:35:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return "Successfully imported $i records into your addressbook.";
|
|
|
|
}
|
|
|
|
|
|
|
|
function outlook_start_record($buffer) {
|
|
|
|
$top="";
|
|
|
|
|
|
|
|
$this->currentrecord = $top;
|
|
|
|
return $buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
function outlook_end_record($buffer,$private="private") {
|
|
|
|
global $phpgw_info;
|
|
|
|
$row=0;
|
|
|
|
$i=0;
|
|
|
|
$lines = split("##",$this->currentrecord);
|
|
|
|
|
|
|
|
for ($i=0;$i<count($lines)-1;$i++) {
|
|
|
|
list($name, $value) = split("%%",$lines[$i]);
|
|
|
|
$row++;
|
2001-02-10 13:56:49 +01:00
|
|
|
$namelist .= array($name => $value);
|
2001-03-11 07:00:16 +01:00
|
|
|
echo $name.' '.$value;
|
2001-01-14 22:35:04 +01:00
|
|
|
}
|
|
|
|
|
2001-02-04 06:53:24 +01:00
|
|
|
return $buffer.$namelist;
|
2001-01-14 22:35:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function outlook_new_attrib($buffer,$name,$value) {
|
|
|
|
$value = str_replace("\n","<BR>",$value);
|
|
|
|
$value = str_replace("\r","",$value);
|
|
|
|
if ($value=="") { $value="NULL"; }
|
|
|
|
$this->currentrecord .= $name."%%".addslashes($value)."##";
|
|
|
|
|
|
|
|
return $buffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|