This file is indexed.

/usr/bin/kronolith-import-squirrelmail-calendar is in php-horde-kronolith 4.2.19-1.

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
#!/usr/bin/php
<?php
/**
 * This script imports SquirrelMail database calendars into Kronolith.
 *
 * The first argument must be a DSN to the database containing the calendar
 * and event tables, e.g.: "mysql://root:password@localhost/squirrelmail".
 *
 * Copyright 2008-2016 Horde LLC (http://www.horde.org/)
 *
 * See the enclosed file COPYING for license information (GPL). If you
 * did not receive this file, see http://www.horde.org/licenses/gpl.
 *
 * @author Jan Schneider <jan@horde.org>
 */

if (file_exists(__DIR__ . '/../../kronolith/lib/Application.php')) {
    $baseDir = __DIR__ . '/../';
} else {
    require_once 'PEAR/Config.php';
    $baseDir = PEAR_Config::singleton()
        ->get('horde_dir', null, 'pear.horde.org') . '/kronolith/';
}
require_once $baseDir . 'lib/Application.php';
Horde_Registry::appInit('kronolith', 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: kronolith-import-squirrelmail-calendar DSN');
    $cli->writeln($cli->indent('DSN are json-encoded connection parameters to the database containing the "userprefs" table. Example:'));
    $cli->writeln($cli->indent('{"adapter":"mysql","user":"root","password":"password","host":"localhost","database":"squirrelmail"}'));
    exit;
}

$db = $injector->getInstance('Horde_Db')->createDb(json_decode($argv[1]));
$default_tz = date_default_timezone_get();

// Loop through SquirrelMail calendars.
$read_stmt = 'SELECT reader_name FROM calendar_readers WHERE calendar_id = ?';
$write_stmt = 'SELECT writer_name FROM calendar_writers WHERE calendar_id = ?';
$users = $db->select('SELECT id, name, owner_name FROM calendars, calendar_owners WHERE calendars.id = calendar_owners.calendar_id');
foreach ($users as $row) {
    $user = $row['owner_name'];
    $registry->setAuth($user, array());
    $cli->message('Creating calendar ' . $row['name']);

    $kronolith_shares = $injector->getInstance('Kronolith_Shares');
    $share = $kronolith_shares->newShare($GLOBALS['registry']->getAuth(), $row['id'], $row['name']);
    $kronolith_shares->addShare($share);

    // Add permissions.
    $permissions = array();
    $result = $db->select($read_stmt, array($row['id']));
    foreach ($result as $perm_row) {
        $permissions[$perm_row[0]] = Horde_Perms::READ | Horde_Perms::SHOW;
    }
    $result = $db->select($write_stmt, array($row['id']));
    foreach ($result as $perm_row) {
        if (isset($permissions[$perm_row[0]])) {
            $permissions[$perm_row[0]] |= Horde_Perms::EDIT;
        } else {
            $permissions[$perm_row[0]] = Horde_Perms::EDIT;
        }
    }
    if (count($permissions)) {
        $perm = $share->getPermission();
        foreach ($permissions as $key => $value) {
            $perm->addUserPermission($key, $value, false);
        }
        $share->setPermission($perm);
        $share->save();
    }
}

$handle = $db->select('SELECT event_id, calendar_id, ical_raw, owner_name, prefval FROM events, event_owners LEFT JOIN userprefs ON event_owners.owner_name = userprefs.user AND userprefs.prefkey = \'timezone\' WHERE events.id = event_owners.event_key ORDER BY calendar_id, userprefs.prefval, event_owners.owner_name');
$ical = new Horde_Icalendar();
$tz = $calendar = $user = $count = null;
foreach ($handle as $row) {
    // Open calendar.
    if ($calendar != $row['calendar_id']) {
        if (!is_null($count)) {
            $cli->message('  Added ' . $count . ' events', 'cli.success');
        }
        $calendar = $row['calendar_id'];
        $cli->message('Importing events into ' . $calendar);
        $kronolith_driver->open($calendar);
        $count = 0;
    }
    // Set timezone.
    if ($tz != $row['prefval']) {
        $tz = $row['prefval'];
        date_default_timezone_set($tz ? $tz : $default_tz);
    }
    // Set user.
    if ($user != $row['owner_name']) {
        $user = $row['owner_name'];
        $registry->setAuth($user, array());
    }
    // Parse event.
    try {
        $ical->parsevCalendar($row['ical_raw']);
    } catch (Horde_Icalendar_Exception $e) {
        $cli->message('  ' . $e->getMessage(), 'cli.warning');
        continue;
    }
    $components = $ical->getComponents();
    if (!count($components)) {
        $cli->message('  No iCalendar data was found.', 'cli.warning');
        continue;
    }

    // Save event.
    $event = $kronolith_driver->getEvent();
    $event->fromiCalendar($components[0]);
    try {
        $event->save();
    } catch (Exception $e) {
        $cli->message('  ' . $e->getMessage(), 'cli.error');
        continue;
    }
    $count++;
}
if (!is_null($count)) {
    $cli->message('  Added ' . $count . ' events', 'cli.success');
}