This file is indexed.

/usr/share/horde/ansel/lib/Widget/SimilarPhotos.php is in php-horde-ansel 3.0.5+debian0-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
<?php
/**
 * Horde_Widget_SimilarPhotos:: class to display a widget containing mini
 * thumbnails of images that are similar, based on tags.
 *
 * @author Michael J. Rubinsky <mrubinsk@horde.org>
 * @category Horde
 * @license http://www.horde.org/licenses/gpl GPL
 * @package Ansel
 */
class Ansel_Widget_SimilarPhotos extends Ansel_Widget_Base
{
    /**
     * Array of views that this widget may appear in.
     *
     * @var array
     */
    protected $_supported_views = array('Image');

    /**
     * Constructor
     *
     * @param array $params  Any parameters for this widget
     *
     * @return Ansel_Widget_SimilarPhotos
     */
    public function __construct($params)
    {
        parent::__construct($params);
        $this->_title = _("Similar Photos");
    }

    /**
     * Return the HTML representing this widget.
     *
     * @return string  The HTML for this widget.
     */
    public function html()
    {
        $html = $this->_htmlBegin();
        $html .= '<div id="similar">' . $this->_getRelatedImages() . '</div>';
        $html .= $this->_htmlEnd();

        return $html;
    }

    /**
     * Helper function for generating a widget of images related to this one.
     *
     *
     * @return string  The HTML
     */
    public function _getRelatedImages()
    {
        $ansel_storage = $GLOBALS['injector']->getInstance('Ansel_Storage');

        $html = '';
        $args = array('typeId' => 'image',
                      'userId' => $this->_view->gallery->get('owner'));

        $results = $GLOBALS['injector']->getInstance('Ansel_Tagger')->listRelatedImages($this->_view->resource);
        if (count($results)) {
            $i = 0;
            foreach ($results as $result) {
                $img = $result['image'];
                try {
                    $rGal = $GLOBALS['injector']->getInstance('Ansel_Storage')->getGallery($img->gallery);
                    if ($rGal->hasPermission($GLOBALS['registry']->getAuth(), Horde_Perms::READ))
                    $html .= Ansel::getUrlFor(
                            'view',
                             array('image' => $img->id,
                                   'view' => 'Image',
                                   'gallery' => abs($img->gallery),
                                   'slug' => $rGal->get('slug')),
                             true)->link(array('title' =>  sprintf(_("%s from %s"), $img->filename, $rGal->get('name'))))
                        . '<img src="'. Ansel::getImageUrl($img->id, 'mini', true) . '" alt="' . htmlspecialchars($img->filename) . '" /></a>';
                } catch (Ansel_Exception $e) {
                    Horde::log($e->getMessage(), 'ERR');
                }
                $i++;
            }
        }

        return $html;
    }

}