This file is indexed.

/usr/share/php/Horde/Kolab/Storage/Data/Query/History/Base.php is in php-horde-kolab-storage 2.2.3-1ubuntu1.

This file is owned by root:root, with mode 0o644.

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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<?php
/**
 * The hook that updates the Horde history information once data gets
 * synchronized with the Kolab backend.
 *
 * PHP version 5
 *
 * @category Kolab
 * @package  Kolab_Storage
 * @author   Gunnar Wrobel <wrobel@pardus.de>
 * @author   Thomas Jarosch <thomas.jarosch@intra2net.com>
 * @author   Michael J Rubinsky <mrubinsk@horde.org>
 * @license  http://www.horde.org/licenses/lgpl21 LGPL 2.1
 * @link     http://pear.horde.org/index.php?package=Kolab_Storage
 */

/**
 * The hook that updates the Horde history information once data gets
 * synchronized with the Kolab backend.
 *
 * Copyright 2011-2016 Horde LLC (http://www.horde.org/)
 *
 * See the enclosed file COPYING for license information (LGPL). If you
 * did not receive this file, see http://www.horde.org/licenses/lgpl21.
 *
 * @category Kolab
 * @package  Kolab_Storage
 * @author   Gunnar Wrobel <wrobel@pardus.de>
 * @author   Thomas Jarosch <thomas.jarosch@intra2net.com>
 * @author   Michael J Rubinsky <mrubinsk@horde.org>
 * @license  http://www.horde.org/licenses/lgpl21 LGPL 2.1
 * @link     http://pear.horde.org/index.php?package=Kolab_Storage
 */
class Horde_Kolab_Storage_Data_Query_History_Base
implements Horde_Kolab_Storage_Data_Query_History
{
    /**
     * The queriable data.
     *
     * @var Horde_Kolab_Storage_Data
     */
    protected $_data;

    /**
     * The history handler.
     *
     * @var Horde_History
     */
    protected $_history;

    /**
     * The logger
     *
     * @var Horde_Log_Logger
     */
    protected $_logger;

    /**
     * The Kolab factory.
     *
     * @var Horde_Kolab_Storage_Factory
     */
    protected $_factory;

    /**
     * Constructor.
     *
     * @param Horde_Kolab_Storage_Data $data   The queriable data.
     * @param array                    $params Additional parameters.
     *   - factory:  (Horde_Kolab_Storage_Factory)  The factory object.
     *
     */
    public function __construct(Horde_Kolab_Storage_Data $data, $params)
    {
        $this->_data = $data;
        $this->_history = $params['factory']->createHistory($data->getAuth());
        $this->_logger = new Horde_Log_Logger();
        $this->_logger->addHandler(new Horde_Log_Handler_Mock());
        $this->_factory = $params['factory'];
    }

    /**
     * Set the logger
     *
     * @param Horde_Log_Logger $logger  The logger instance.
     */
    public function setLogger(Horde_Log_Logger $logger = null)
    {
        if (!is_null($logger)) {
            $this->_logger = $logger;
        }
    }

    /**
     * Synchronize any changes with the History driver.
     *
     * @param array $params Additional parameters:
     *   - changes: (array)  An array of arrays keyed by backend id containing
     *                       information about each change. If not present,
     *                       triggers a full history sync.
     *   - is_reset: (boolean)  If true, indicates that UIDVALIDITY changed.
     */
    public function synchronize($params = array())
    {
        $user = $this->_data->getAuth();
        $folder = $this->_data->getPath();

        // check if IMAP uidvalidity changed
        $is_reset = !empty($params['is_reset']);

        if (isset($params['changes']) && !$is_reset) {
            $added = $params['changes'][Horde_Kolab_Storage_Folder_Stamp::ADDED];
            $deleted = $params['changes'][Horde_Kolab_Storage_Folder_Stamp::DELETED];

            if (!empty($added) || !empty($deleted)) {
                if (!$prefix = $this->_factory->getHistoryPrefixGenerator()->getPrefix($this->_data)) {
                    // Abort history update if we can't determine the prefix.
                    return;
                }
                $this->_logger->debug(sprintf(
                    '[KOLAB_STORAGE] Incremental Horde_History update for user: %s, folder: %s, prefix: %s',
                    $user, $folder, $prefix)
                );
            }

            foreach ($added as $bid => $object) {
                $this->_updateLog($prefix . $object['uid'], $bid);
            }

            foreach ($deleted as $bid => $object_uid) {
                // Check if the object is really gone from the folder.
                // Otherwise we just deleted a duplicated object or updated the original one.
                // (An update results in an ADDED + DELETED folder action)
                if ($this->_data->objectIdExists($object_uid) == true) {
                    $this->_logger->debug(sprintf(
                        '[KOLAB_STORAGE] Object still existing: object: %s, vanished IMAP uid: %d. Skipping delete from Horde_History.',
                        $object_uid, $bid)
                    );
                    continue;
                }
                $this->_logger->debug(
                    sprintf('[KOLAB_STORAGE] Object deleted: uid: %d -> %s, logging in Horde_History.',
                    $bid, $object_uid)
                );
                $this->_history->log(
                    $prefix . $object_uid, array('action' => 'delete', 'bid' => $bid), true
                );
            }
        } else {
            // Full sync. Either our timestamp is too old or the IMAP
            // uidvalidity changed.
            if (!$prefix = $this->_factory->getHistoryPrefixGenerator()->getPrefix($this->_data)) {
                return;
            }
            $this->_logger->debug(sprintf(
                '[KOLAB_STORAGE] Full Horde_History sync for user: %s, folder: %s, is_reset: %d, prefix: %s',
                $user, $folder, $is_reset, $prefix)
            );
            $this->_completeSynchronization($prefix, $is_reset);
        }
    }

    /**
     * Perform a complete synchronization.
     * Also marks stale history entries as 'deleted'.
     *
     * @param string $prefix     Horde_History prefix
     * @param boolean $is_reset  Flag to indicate if the UIDVALIDITY changed
     */
    protected function _completeSynchronization($prefix, $is_reset)
    {
        $seen_objects = array();
        foreach ($this->_data->getObjectToBackend() as $object => $bid) {
            $full_id = $prefix . $object;
            $this->_updateLog($full_id, $bid, $is_reset);
            $seen_objects[$full_id] = true;
        }

        // cut off last ':'
        $search_prefix = substr($prefix, 0, -1);

        // clean up history database: Mark stale entries as deleted
        $all_entries = $this->_history->getByTimestamp('>', 0, array(), $search_prefix);

        foreach ($all_entries as $full_id => $db_id) {
            if (isset($seen_objects[$full_id])) {
                continue;
            }

            $last = $this->_history->getLatestEntry($full_id);
            if ($last === false || $last['action'] != 'delete') {
                $this->_logger->debug(sprintf(
                    '[KOLAB_STORAGE] Cleaning up already removed object from Horde_History: %s', $full_id)
                );
                $this->_history->log(
                    $full_id, array('action' => 'delete'), true
                );
            }
        }
    }

    /**
     * Update the history log for an object.
     *
     * @param string $object  The object ID.
     * @param string $bid     The backend ID of the object.
     * @param boolean $force  Force update
     */
    protected function _updateLog($object, $bid, $force = false)
    {
        $last = $this->_history->getLatestEntry($object);
        if ($last === false) {
            // New, unknown object
            $this->_logger->debug(sprintf(
                '[KOLAB_STORAGE] New object to log in Horde_History: %s, uid: %d',
                $object, $bid)
            );
            $this->_history->log(
                $object, array('action' => 'add', 'bid' => $bid), true
            );
        } else {
            // If the last action for this object was 'delete', we issue an 'add'.
            // Objects can vanish and re-appear using the same object uid.
            // (a foreign client is sending an update over a slow link)
            if ($last['action'] == 'delete') {
                $this->_logger->debug(sprintf(
                    '[KOLAB_STORAGE] Re-adding previously deleted object in Horde_History: %s, uid: %d',
                    $object, $bid)
                );
                $this->_history->log(
                    $object, array('action' => 'add', 'bid' => $bid), true
                );
            }

            if (!isset($last['bid']) || $last['bid'] != $bid || $force) {
                $this->_logger->debug(sprintf(
                    '[KOLAB_STORAGE] Modifying object in Horde_History: %s, uid: %d, force: %d',
                    $object, $bid, $force)
                );
                $this->_history->log(
                    $object, array('action' => 'modify', 'bid' => $bid), true
                );
            }
        }
    }

}