mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-05 00:27:25 +00:00
1. Catch connection errors and report them
2. Limit address book updates to just the user given
This commit is contained in:
parent
2d7cb869c5
commit
144aa6e5d6
@ -70,6 +70,20 @@ if ($auth['valid'] && !$auth['abort']
|
||||
}
|
||||
|
||||
|
||||
// ----------------------------------------------------
|
||||
// Get the user id (see deluser.sh)
|
||||
// ----------------------------------------------------
|
||||
$host = $auth['host']; # can be a url (eg: ssl://localhost)
|
||||
$host_url = parse_url($host);
|
||||
if ($host_url['host']) {
|
||||
$host = $host_url['host'];
|
||||
}
|
||||
$user = rcube_user::query($auth['user'], $host);
|
||||
if (!$user) {
|
||||
_die("User not found auth[host]=" . $auth['host'] . " host=" . $host . "\n");
|
||||
}
|
||||
|
||||
|
||||
// ----------------------------------------------------
|
||||
// ensure the carddav tables are created and populated
|
||||
// ----------------------------------------------------
|
||||
@ -77,6 +91,7 @@ if ($auth['valid'] && !$auth['abort']
|
||||
require_once('plugins/carddav/carddav_backend.php');
|
||||
require_once('plugins/carddav/carddav.php');
|
||||
|
||||
try {
|
||||
$c = new carddav(rcube_plugin_api::get_instance());
|
||||
$c->task .= "|cli";
|
||||
$c->init();
|
||||
@ -87,6 +102,11 @@ print "done: init tables\n";
|
||||
// this populates carddav_addressbooks from config
|
||||
$c->init_presets();
|
||||
print "done: init addressbooks\n";
|
||||
} catch(exception $e) {
|
||||
print $e . "\n";
|
||||
_die("failed");
|
||||
}
|
||||
|
||||
|
||||
// -------------------------------------------------------------
|
||||
// Set the last_updated field for addressbooks to an old date.
|
||||
@ -99,7 +119,7 @@ if (!$db->is_connected() || $db->is_error()) {
|
||||
}
|
||||
print "db connected\n";
|
||||
|
||||
$db->query("update " . $db->table_name('carddav_addressbooks') . " set last_updated=? WHERE active=1", '2000-01-01 00:00:00');
|
||||
$db->query("update " . $db->table_name('carddav_addressbooks') . " set last_updated=? WHERE active=1 and user_id=" . $user->ID, '2000-01-01 00:00:00');
|
||||
print "update made\n";
|
||||
if ($db->is_error()) {
|
||||
_die("DB error occurred: " . $db->is_error());
|
||||
@ -107,7 +127,7 @@ if ($db->is_error()) {
|
||||
|
||||
|
||||
// ------------------------------------------------------
|
||||
// Update/sync all active address books
|
||||
// Update/sync all out-of-date address books
|
||||
// ------------------------------------------------------
|
||||
|
||||
// first get all row ids
|
||||
@ -120,7 +140,7 @@ if ($db->is_error()) {
|
||||
}
|
||||
|
||||
while ($row = $db->fetch_assoc($sql_result)) {
|
||||
$dbid += array(intval($row['id']));
|
||||
array_push($dbid, intval($row['id']));
|
||||
print "carddav_addressbooks id: " . $row['id'] . "\n";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user