/usr/bin/turba-import-squirrelmail-file-abook is in php-horde-turba 4.2.12-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | #!/usr/bin/php
<?php
/**
* This script imports SquirrelMail file-based addressbooks into Turba.
* It was developed against SquirrelMail 1.4.0, so use at your own risk
* against different versions.
*
* Input can be either a single squirrelmail .abook file, or a directory
* containing multiple .abook files.
*
* Copyright 2007-2016 Horde LLC (http://www.horde.org/)
*
* See the enclosed file LICENSE for license information (ASL). If you
* did not receive this file, see http://www.horde.org/licenses/apache.
*
* @author Ben Chavet <ben@horde.org>
*/
if (file_exists(__DIR__ . '/../../turba/lib/Application.php')) {
$baseDir = __DIR__ . '/../';
} else {
require_once 'PEAR/Config.php';
$baseDir = PEAR_Config::singleton()
->get('horde_dir', null, 'pear.horde.org') . '/turba/';
}
require_once $baseDir . 'lib/Application.php';
Horde_Registry::appInit('turba', array('cli' => true, 'user_admin' => true));
// Read command line parameters.
if ($argc != 2) {
$cli->message('Too many or too few parameters.', 'cli.error');
$cli->writeln('Usage: turba-import-squirrelmail-file-abook path-to-squirrelmail-data');
exit;
}
$data = $argv[1];
// Get list of SquirrelMail address book files
if (is_dir($data)) {
if (!($handle = opendir($data))) {
exit;
}
$files = array();
while (false !== ($file = readdir($handle))) {
if (preg_match('/.abook$/', $file)) {
$files[] = $data . '/' . $file;
}
}
closedir($handle);
} else {
$files = array($data);
}
// Loop through SquirrelMail address book files
foreach($files as $file) {
if (!($handle = fopen($file, 'r'))) {
continue;
}
// Set current user
$user = substr(basename($file), 0, -6);
$registry->setAuth($user, array());
$cli->message('Importing ' . $user . '\'s address book');
// Reset user prefs
unset($prefs);
$prefs = $injector->getInstance('Horde_Core_Factory_Prefs')->create('turba', array(
'cache' => false,
'user' => $user
));
// Reset $cfgSources for current user.
unset($cfgSources);
include TURBA_BASE . '/config/backends.php';
$cfgSources = Turba::getConfigFromShares($cfgSources);
$cfgSources = Turba::permissionsFilter($cfgSources);
// Get user's default addressbook
$import_source = $prefs->getValue('default_dir');
if (empty($import_source)) {
$import_source = array_keys($cfgSources);
$import_source = $import_source[0];
}
// Check existance of the specified source.
if (!isset($cfgSources[$import_source])) {
PEAR::raiseError(sprintf(_("Invalid address book: %s"), $import_source), 'horde.warning');
continue;
}
// Initiate driver
try {
$driver = $GLOBALS['injector']->getInstance('Turba_Factory_Driver')->create($import_source);
} catch (Turba_Exception $e) {
PEAR::raiseError(sprintf(_("Connection failed: %s"), $e->getMessage()), 'horde.error', null, null, $import_source);
continue;
}
// Read addressbook file, one line at a time
while (!feof($handle)) {
$buffer = fgets($handle);
if (empty($buffer)) {
continue;
}
$entry = explode('|', $buffer);
$members = explode(',', $entry[3]);
if (count($members) > 1) {
// Entry is a list of contacts, import each individually and
// create a group that contains them.
$attributes = array('alias' => $entry[0],
'firstname' => $entry[1],
'lastname' => $entry[2],
'notes' => $entry[4]);
$gid = $driver->add($attributes);
$group = new Turba_Object_Group($driver, array_merge($attributes, array('__key' => $gid)));
foreach ($members as $member) {
try {
$result = $driver->add(array('firstname' => $member, 'email' => $member));
$group->addMember($result, $import_source);
$cli->message(' Added ' . $member, 'cli.success');
} catch (Turba_Exception $e) {
$cli->message(' ' . $e->getMessage(), 'cli.error');
}
}
$group->store();
} else {
// entry only contains one contact, import it
$contact = array(
'alias' => $entry[0],
'firstname' => $entry[1],
'lastname' => $entry[2],
'email' => $entry[3],
'notes' => $entry[4]
);
try {
$driver->add($contact);
$cli->message(' Added ' . $entry[3], 'cli.success');
} catch (Turba_Exception $e) {
$cli->message(' ' . $e->getMessage(), 'cli.error');
}
}
}
fclose($handle);
}
|