This file is indexed.

/usr/share/horde/ingo/lib/Basic/Vacation.php is in php-horde-ingo 3.2.16-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
<?php
/**
 * Copyright 2002-2017 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.
 *
 * @category  Horde
 * @copyright 2002-2017 Horde LLC
 * @license   http://www.horde.org/licenses/apache ASL
 * @package   Ingo
 */

/**
 * Vacation page.
 *
 * @author    Mike Cochrane <mike@graftonhall.co.nz>
 * @author    Michael Slusarz <slusarz@horde.org>
 * @category  Horde
 * @copyright 2002-2017 Horde LLC
 * @license   http://www.horde.org/licenses/apache ASL
 * @package   Ingo
 */
class Ingo_Basic_Vacation extends Ingo_Basic_Base
{
    /**
     */
    protected function _init()
    {
        global $injector, $notification;

        $this->_assertCategory(Ingo_Storage::ACTION_VACATION, _("Vacation"));

        /* Get vacation object and rules. */
        $ingo_storage = $injector->getInstance('Ingo_Factory_Storage')->create();
        $vacation = $ingo_storage->retrieve(Ingo_Storage::ACTION_VACATION);
        $filters = $ingo_storage->retrieve(Ingo_Storage::ACTION_FILTERS);
        $vac_id = $filters->findRuleId(Ingo_Storage::ACTION_VACATION);
        $vac_rule = $filters->getRule($vac_id);

        /* Load libraries. */
        if ($this->vars->submitbutton == _("Return to Rules List")) {
            Ingo_Basic_Filters::url()->redirect();
        }

        /* Build form. */
        $form = new Ingo_Form_Vacation(
            $this->vars,
            '',
            null,
            $injector->getInstance('Ingo_Factory_Script')->create(Ingo::RULE_VACATION)->availableCategoryFeatures(Ingo_Storage::ACTION_VACATION)
        );

        /* Perform requested actions. Ingo_Form_Vacation does token checking
         * for us. */
        if ($form->validate($this->vars)) {
            $form->getInfo($this->vars, $info);
            $vacation->setVacationAddresses(isset($info['addresses']) ? $info['addresses'] : '');
            $vacation->setVacationDays($info['days']);
            $vacation->setVacationExcludes($info['excludes']);
            $vacation->setVacationIgnorelist(($info['ignorelist'] == 'on'));
            $vacation->setVacationReason($info['reason']);
            $vacation->setVacationSubject($info['subject']);
            $vacation->setVacationStart($info['start']);
            $vacation->setVacationEnd($info['end']);

            try {
                $ingo_storage->store($vacation);
                $notification->push(_("Changes saved."), 'horde.success');
                if ($this->vars->submitbutton == _("Save and Enable")) {
                    $filters->ruleEnable($vac_id);
                    $ingo_storage->store($filters);
                    $notification->push(_("Rule Enabled"), 'horde.success');
                    $vac_rule['disable'] = false;
                } elseif ($this->vars->get('submitbutton') == _("Save and Disable")) {
                    $filters->ruleDisable($vac_id);
                    $ingo_storage->store($filters);
                    $notification->push(_("Rule Disabled"), 'horde.success');
                    $vac_rule['disable'] = true;
                }

                Ingo_Script_Util::update();
            } catch (Ingo_Exception $e) {
                $notification->push($e);
            }
        }

        /* Add buttons depending on the above actions. */
        $form->setCustomButtons($vac_rule['disable']);

        /* Make sure we have at least one address. */
        if (!$vacation->getVacationAddresses()) {
            $identity = $injector->getInstance('Horde_Core_Factory_Identity')->create();
            $addresses = implode("\n", $identity->getAll('from_addr'));
            /* Remove empty lines. */
            $addresses = trim(preg_replace('/\n+/', "\n", $addresses));
            if (empty($addresses)) {
                $addresses = $GLOBALS['registry']->getAuth();
            }
            $vacation->setVacationAddresses($addresses);
        }

        /* Set default values. */
        if (!$form->isSubmitted()) {
            $this->vars->set('addresses', implode("\n", $vacation->getVacationAddresses()));
            $this->vars->set('excludes', implode("\n", $vacation->getVacationExcludes()));
            $this->vars->set('ignorelist', $vacation->getVacationIgnorelist());
            $this->vars->set('days', $vacation->getVacationDays());
            $this->vars->set('subject', $vacation->getVacationSubject());
            $this->vars->set('reason', $vacation->getVacationReason());
            $this->vars->set('start', $vacation->getVacationStart());
            $this->vars->set('end', $vacation->getVacationEnd());
            $this->vars->set('start_year', $vacation->getVacationStartYear());
            $this->vars->set('start_month', $vacation->getVacationStartMonth() - 1);
            $this->vars->set('start_day', $vacation->getVacationStartDay() - 1);
            $this->vars->set('end_year', $vacation->getVacationEndYear());
            $this->vars->set('end_month', $vacation->getVacationEndMonth() - 1);
            $this->vars->set('end_day', $vacation->getVacationEndDay() - 1);
        }

        /* Set form title. */
        $form_title = _("Vacation");
        if (!empty($vac_rule['disable'])) {
            $form_title .= ' [<span class="horde-form-error">' . _("Disabled") . '</span>]';
        }
        $form_title .= ' ' . Horde_Help::link('ingo', 'vacation');
        $form->setTitle($form_title);

        $this->header = _("Vacation Edit");

        Horde::startBuffer();
        Horde_Util::pformInput();
        $form->renderActive(
            new Horde_Form_Renderer(array(
                'encode_title' => false,
                'varrenderer_driver' => array('ingo', 'ingo')
            )),
            $this->vars,
            self::url(array('append_session' => -1)),
            'post'
        );
        $this->output = Horde::endBuffer();
    }

    /**
     */
    static public function url(array $opts = array())
    {
        if (empty($opts['append_session'])) {
            $opts['append_session'] = 0;
        }
        return Horde::url('basic.php', true, array('append_session' => $opts['append_session']))->add('page', 'vacation');
    }

}