This file is indexed.

/usr/share/horde/whups/lib/Form/Search.php is in php-horde-whups 3.0.9-1.

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
<?php
/**
 * Whups_Form_Search Class.
 *
 * @author  Robert E. Coyle <robertecoyle@hotmail.com>
 * @package Whups
 */
class Whups_Form_Search extends Horde_Form
{
    protected $_useFormToken = false;

    public function __construct(&$vars)
    {
        parent::__construct($vars);

        $this->setButtons(true);
        $this->appendButtons(array(array('class' => 'horde-create', 'value' => _("Save as Query"))));
        $this->setSection('attributes', _("Attributes"));

        $queues = Whups::permissionsFilter(
            $GLOBALS['whups_driver']->getQueues(), 'queue', Horde_Perms::READ);
        $queue_count = count($queues);
        $types = array();
        if ($queue_count == 1) {
            $types = $GLOBALS['whups_driver']->getTypes(key($queues));
            $this->addHidden('', 'queue', 'int', false, true);
            $vars->set('queue', key($queues));
        } else {
            if ($queue_count > 0) {
                $modtype = 'enum';
                $queue_params = array(array('0' => _("Any")) + $queues);
                foreach ($queues as $queueID => $name) {
                    $types = $types + $GLOBALS['whups_driver']->getTypes($queueID);
                }
            } else {
                $modtype = 'invalid';
                $queue_params = array(_("There are no queues which you can search."));
            }
            $this->addVariable(
                _("Queue"), 'queue', $modtype, false, false, null, $queue_params);
        }

        $this->addVariable(_("Summary like"), 'summary', 'text', false);

        $states = array();
        foreach ($types as $typeID => $typeName) {
            $states = $GLOBALS['whups_driver']->getAllStateInfo($typeID);
            $list = $default = array();
            foreach ($states as $state) {
                $list[$state['state_id']] = $state['state_name'];
                if ($state['state_category'] != 'resolved') {
                    $default[] = $state['state_id'];
                }
            }
            $v = $this->addVariable(
                $typeName, "states[$typeID]", 'multienum', false, false, null,
                array ($list, 4));
            if (!$this->isSubmitted()) {
                $v->setDefault($default);
            }
        }

        $this->setSection('dates', _("Dates"));
        $this->addVariable(
            _("Created from"), 'ticket_timestamp[from]', 'monthdayyear', false,
            false, null, array(date('Y') - 10));
        $this->addVariable(
            _("to"), 'ticket_timestamp[to]', 'monthdayyear', false, false, null,
            array(date('Y') - 10));
        $this->addVariable(
            _("Updated from"), 'date_updated[from]', 'monthdayyear', false,
             false, null, array(date('Y') - 10));
        $this->addVariable(
            _("to"), 'date_updated[to]', 'monthdayyear', false, false, null,
            array(date('Y') - 10));
        $this->addVariable(
            _("Resolved from"), 'date_resolved[from]', 'monthdayyear', false,
            false, null, array(date('Y') - 10));
        $this->addVariable(
            _("to"), 'date_resolved[to]', 'monthdayyear', false, false, null,
            array(date('Y') - 10));
        $this->addVariable(
            _("Assigned from"), 'date_assigned[from]', 'monthdayyear', false,
            false, null, array(date('Y') - 10));
        $this->addVariable(
            _("to"), 'date_assigned[to]', 'monthdayyear', false, false, null,
            array(date('Y') - 10));
        $this->addVariable(
            _("Due from"), 'ticket_due[from]', 'monthdayyear', false, false,
            null, array(date('Y') - 10));
        $this->addVariable(
            _("to"), 'ticket_due[to]', 'monthdayyear', false, false, null,
            array(date('Y') - 10));
    }

    /**
     * Fetch the field values of the submitted form.
     *
     * @param Horde_Variables $vars  A Horde_Variables instance, optional since Horde 3.2.
     * @param array           $info  Array to be filled with the submitted field
     *                               values.
     */
    public function getInfo($vars, &$info)
    {
        parent::getInfo($vars, $info);

        if (empty($info['queue'])) {
            $info['queue'] = array_keys(
                Whups::permissionsFilter(
                    $GLOBALS['whups_driver']->getQueues(),
                    'queue',
                    Horde_Perms::READ,
                    $GLOBALS['registry']->getAuth(),
                    $GLOBALS['registry']->getAuth()));
        } else {
            $info['queue'] = array($info['queue']);
        }

        if (empty($info['states'])) {
            unset($info['states']);
        }

        // ... if we were given a set of states
        if (isset($info['states'])) {
            // collect them into a list of state_id
            $info['state_id'] = array();
            foreach ($info['states'] as $states) {
                if (isset($states)) {
                    // because null === array_merge(array, null)
                    $info['state_id'] = array_merge($info['state_id'], $states);
                }
            }
            unset($info['states']);
        }

        // Remove any queues that don't have a state selected.
        $types = array();
        foreach ($info['queue'] as $queue) {
            foreach ($GLOBALS['whups_driver']->getTypeIds($queue) as $type) {
                $types[$type][$queue] = true;
            }
        }
        $queues = array();
        foreach ($info['state_id'] as $stateId) {
            $state = $GLOBALS['whups_driver']->getState($stateId);
            if (isset($types[$state['type']])) {
                $queues = array_merge($queues, array_keys($types[$state['type']]));
            }
        }
        $info['queue'] = array_intersect($info['queue'], $queues);
    }
}