<?php
// This file defines a set of functions and an associative array.
// The key of the array corresponds to a header in the source
// import 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.

  /* $Id: Import_from_Outlook_-_Espanol 18716 2005-07-03 14:15:23Z milosch $ */

	/* File submitted by Alejandro Pedraza - alpeb@sourceforge.net */
	class import_conv
	{
		var $currentrecord = array(); //used for buffering to allow uid lines to go first
		var $id;
		var $type = 'csv';

		var $import = array(
			'Tratamiento' => 'n_prefix', 
			'Nombre' => 'n_given',
			'Segundo Nombre' => 'n_middle',
			'Apellidos' => 'n_family',
			'Sufijo' => 'n_suffix',
			'Organizacin' => 'org_name',  //objectclass: organization
			'Departmento' => 'org_unit', //objectclass: organizationalPerson
			'Puesto' => 'title', //objectclass: organizationalPerson
			'Calle del trabajo' => 'adr_one_street',
			'Calle del trabajo 2' => 'address2',
			'Calle del trabajo 3' => 'address3',
			'Ciudad de trabajo' => 'adr_one_locality',
			'Provincia o estado de trabajo' => 'adr_one_region',
			'Cdigo postal del trabajo' => 'adr_one_postalcode',
			'Pas de trabajo' => 'adr_one_countryname',
			'Calle del domicilio' => 'adr_two_street',
			'Ciudad de residencia' => 'adr_two_locality',
			'Provincia o estado de residencia' => 'adr_two_region',
			'Cdigo postal de residencia' => 'adr_two_postalcode',
			'Pas de residencia' => 'adr_two_countryname',
			'Calle del domicilio 2' => '',
			'Calle del domicilio 3' => '',
			'Otra calle' => '',
			'Otra ciudad' => '',
			'Otra provincia o estado' => '',
			'Otro cdigo postal' => '',
			'Otro pas' => '',
			"Telfono del ayudante" => 'tel_msg',
			'Fax del trabajo' => 'tel_fax',
			'Telfono del trabajo' => 'tel_work',
			'Telfono del trabajo 2' => 'ophone',
			'Devolucin de llamada' => '',
			'Telfono del automvil' => 'tel_car',
			'Nmero de centralita de la organizacin' => '',
			'Fax particular' => '',
			'Particular' => 'tel_home',
			'Nmero de telfono particular 2' => '', //This will make another homePhone entry
			'RDSI' => 'tel_isdn',
			'Mvil' => 'tel_cell', //newPilotPerson
			'Otro fax' => '',
			'Otro telfono' => '',
			'Localizador' => 'tel_pager',
			'Telfono principal' => '',
			'Radiotelfono' => '',
			'Nmero de teletipo' => '',
			'Tlex' => '', //organization
			'Cuenta' => '',
			'Aniversario' => '',
			"Nombre del ayudante" => '', //newPilotPerson
			'Facturacin' => '',
			'Cumpleaos' => 'bday',
			'Categoras' => '', 
			'Hijos' => '',
			'Servidor de directorio' => '',
			'Direccin de correo electrnico' => 'email',
			'Nombre de pantalla de correo electrnico' => '',
			'Direccin de correo electrnico 2' => 'email_home',
			'Nombre de pantalla de correo electrnico 2' => '',
			'Direccin del correo electrnico 3' => '', //add another...
			'Nombre de pantalla de correo electrnico 3' => '',
			'Gnero' => '',
			'Nmero de id. oficial' => '',
			'Aficiones' => '',
			'Iniciales' => '',
			'Internet Free Busy' => '',
			'Palabras clave' => '',
			'Idioma' => '',
			'Ubicacin' => '',
			"Nombre del director" => '',
			'Kilometraje' => '',
			'Notas' => 'note',
			'Ubicacin de la oficina' => '',
			'Nmero de id. de la organizacin' => '',
			'Apartado postal' => '',
			'Importancia' => '',
			'Privado'=>'',
			'Profesin' => '',
			'Remitido por' => '',
			'Confidencialidad' => '',
			'Cnyuge' => '',
			'Usuario 1' => '',
			'Usuario 2' => '',
			'Usuario 3' => '',
			'Usuario 4' => '',
			'Pgina Web' => 'url'
		);

		function import_start_file($buffer)
		{
			return $buffer;
		}

		function import_start_record($buffer)
		{
			$top=array();
			++$this->id;
			$this->currentrecord = $top;
			return $buffer;
		}

		function import_new_attrib($buffer,$name,$value)
		{
			$value = trim($value);
			$value = str_replace('\n','<BR>',$value);
			$value = str_replace('\r','',$value);
			$this->currentrecord += array($name => $value);

			return $buffer;
		}

		function import_end_record($buffer)
		{
			$buffer[$this->id]='';
			while ( list($name, $value) = each($this->currentrecord))
			{
				$buffer[$this->id][$name] = $value;
				//echo '<br>'.$name.' => '.$value;
			}
			return $buffer;
		}

		function import_end_file($buffer,$access='private',$cat_id=0)
		{
			$contacts = CreateObject('phpgwapi.contacts');
			//echo '<br>'; 
			for ($i=1;$i<=count($buffer);$i++)
			{
				while ( list($name,$value) = @each($buffer[$i]) )
				{
					//echo '<br>'.$i.': '.$name.' => '.$value;
					$entry[$i][$name] = $value;
				}
				$entry[$i]['email_type']      = 'INTERNET';
				$entry[$i]['email_home_type'] = 'INTERNET';
				$entry[$i]['adr_one_type']    = 'intl';
				$entry[$i]['adr_two_type']    = 'intl';
				$entry[$i]['fn'] = $entry[$i]['n_given'] . ' ' . $entry[$i]['n_family'];
				//echo '<br>';
				$contacts->add($GLOBALS['egw_info']['user']['account_id'],$entry[$i],$access,$cat_id);
			}
			$num = $i - 1;
			return lang('Successfully imported %1 records into your addressbook.',$num);
		}
	}
?>
