This file is indexed.

/usr/share/horde/turba/lib/Ajax/Application/Handler/Smartmobile.php is in php-horde-turba 4.2.12-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
<?php
/**
 * Defines AJAX actions used in the Turba smartmobile view.
 *
 * Copyright 2012-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   Michael Slusarz <slusarz@horde.org>
 * @category Horde
 * @license  http://www.horde.org/licenses/apache ASL
 * @package  Turba
 */
class Turba_Ajax_Application_Handler_Smartmobile extends Horde_Core_Ajax_Application_Handler
{
    /**
     * AJAX action: Get entry data.
     *
     * Variables used:
     *   - key: (string) UID of entry.
     *   - source: (string) UID of source addressbook.
     *
     * @return object  TODO
     *   - entry: (array)
     *   - error: (boolean)
     *   - group: (array)
     */
    public function smartmobileEntry()
    {
        global $attributes, $cfgSources, $injector, $notification, $registry;

        $contact = null;
        $out = new stdClass;

        $source = $this->vars->get('source');
        if (isset($cfgSources[$source])) {
            try {
                $contact = $injector->getInstance('Turba_Factory_Driver')->create($source)->getObject($this->vars->get('key'));
            } catch (Horde_Exception $e) {
            }
        }

        if (is_null($contact)) {
            $notification->push(_("Addressbook entry could not be loaded."), 'horde.error');
            $out->error = true;
            return $out;
        }

        $out->entry = array();

        if (!count($tabs = $contact->driver->tabs)) {
            $tabs = array(
                _("Entries") => array_keys($contact->driver->getCriteria())
            );
        }

        foreach ($tabs as $key => $val) {
            foreach ($val as $val2) {
                if (strlen($val3 = $contact->getValue($val2))) {
                    $url = null;

                    switch ($val2) {
                    case 'email':
                    case 'emails':
                        $addrs = $GLOBALS['injector']
                            ->getInstance('Horde_Mail_Rfc822')
                            ->parseAddressList($val3, array(
                                'limit' => $val2 == 'emails' ? 0 : 1
                            ));
                        foreach ($addrs as $addr) {
                            $addr = $addr->writeAddress(true);
                            try {
                                $url = strval($registry->call('mail/compose', array(
                                    array('to' => $addr)
                                )));
                            } catch (Horde_Exception $e) {
                            }
                            $out->entry[$key][] = array_filter(array(
                                'l' => $attributes[$val2]['label'],
                                'u' => $url,
                                'v' => $addr
                            ));
                        }
                        continue 2;
                    }

                    $out->entry[$key][] = array_filter(array(
                        'l' => $attributes[$val2]['label'],
                        'u' => $url,
                        'v' => $val3
                    ));
                }
            }
        }

        if ($contact->isGroup()) {
            $members = $contact->listMembers();
            $members->reset();

            $url = new Horde_Core_Smartmobile_Url();
            $url->setAnchor('entry');

            $out->group = array(
                'l' => _("Contact List Members"),
                'm' => array()
            );

            while ($ob = $members->next()) {
                $out->group['m'][] = array(
                    'n' => strlen($name = Turba::formatName($ob))
                               ? $name
                               : ('[' . _("No Name") . ']'),
                    'u' => strval($url->copy()->setRaw(true)->add(array(
                               'key' => $ob->getValue('__key'),
                               'source' => $ob->getSource()
                           )))
                );
            }
        }

        return $out;
    }

}