This file is indexed.

/usr/share/php/propel/map/DatabaseMap.php is in php-propel-runtime 1.6.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
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
<?php

/**
 * This file is part of the Propel package.
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @license    MIT License
 */

/**
 * DatabaseMap is used to model a database.
 *
 * GENERAL NOTE
 * ------------
 * The propel.map classes are abstract building-block classes for modeling
 * the database at runtime.  These classes are similar (a lite version) to the
 * propel.engine.database.model classes, which are build-time modeling classes.
 * These classes in themselves do not do any database metadata lookups.
 *
 * @author     Hans Lellelid <hans@xmpl.org> (Propel)
 * @author     John D. McNally <jmcnally@collab.net> (Torque)
 * @author     Daniel Rall <dlr@collab.net> (Torque)
 * @version    $Revision$
 * @package    propel.runtime.map
 */
class DatabaseMap
{
    /** @var string Name of the database. */
    protected $name;

    /** @var array TableMap[] Tables in the database, using table name as key */
    protected $tables = array();

    /** @var array TableMap[] Tables in the database, using table phpName as key */
    protected $tablesByPhpName = array();

    /**
     * Constructor.
     *
     * @param string $name Name of the database.
     */
    public function __construct($name)
    {
        $this->name = $name;
    }

    /**
     * Get the name of this database.
     *
     * @return string The name of the database.
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * Add a new table to the database by name.
     *
     * @param  string   $tableName The name of the table.
     * @return TableMap The newly created TableMap.
     */
    public function addTable($tableName)
    {
        $this->tables[$tableName] = new TableMap($tableName, $this);

        return $this->tables[$tableName];
    }

    /**
     * Add a new table object to the database.
     *
     * @param TableMap $table The table to add
     */
    public function addTableObject(TableMap $table)
    {
        $table->setDatabaseMap($this);
        $this->tables[$table->getName()] = $table;
        $this->tablesByPhpName[$table->getClassname()] = $table;
    }

    /**
     * Add a new table to the database, using the tablemap class name.
     *
     * @param  string   $tableMapClass The name of the table map to add
     * @return TableMap The TableMap object
     */
    public function addTableFromMapClass($tableMapClass)
    {
        $table = new $tableMapClass();
        if (!$this->hasTable($table->getName())) {
            $this->addTableObject($table);

            return $table;
        } else {
            return $this->getTable($table->getName());
        }
    }

    /**
     * Does this database contain this specific table?
     *
     * @param  string  $name The String representation of the table.
     * @return boolean True if the database contains the table.
     */
    public function hasTable($name)
    {
        return array_key_exists($name, $this->tables);
    }

    /**
     * Get a TableMap for the table by name.
     *
     * @param  string          $name Name of the table.
     * @return TableMap        A TableMap
     * @throws PropelException if the table is undefined
     */
    public function getTable($name)
    {
        if (!isset($this->tables[$name])) {
            throw new PropelException("Cannot fetch TableMap for undefined table: " . $name );
        }

        return $this->tables[$name];
    }

    /**
     * Get a TableMap[] of all of the tables in the database.
     *
     * @return array A TableMap[].
     */
    public function getTables()
    {
        return $this->tables;
    }

    /**
     * Get a ColumnMap for the column by name.
     * Name must be fully qualified, e.g. book.AUTHOR_ID
     *
     * @param                  $qualifiedColumnName Name of the column.
     * @return ColumnMap       A TableMap
     * @throws PropelException if the table is undefined, or if the table is undefined
     */
    public function getColumn($qualifiedColumnName)
    {
        list($tableName, $columnName) = explode('.', $qualifiedColumnName);

        return $this->getTable($tableName)->getColumn($columnName, false);
    }

    // deprecated methods

    /**
     * Does this database contain this specific table?
     *
     * @deprecated Use hasTable() instead
     * @param  string  $name The String representation of the table.
     * @return boolean True if the database contains the table.
     */
    public function containsTable($name)
    {
        return $this->hasTable($name);
    }

    public function getTableByPhpName($phpName)
    {
        if (array_key_exists($phpName, $this->tablesByPhpName)) {
            return $this->tablesByPhpName[$phpName];
        } elseif (class_exists($tmClass = substr_replace($phpName, '\\map\\', strrpos($phpName, '\\'), 1) . 'TableMap')) {
            $this->addTableFromMapClass($tmClass);

            return $this->tablesByPhpName[$phpName];
        } elseif (class_exists($tmClass = $phpName . 'TableMap')) {
            $this->addTableFromMapClass($tmClass);

            return $this->tablesByPhpName[$phpName];
        } else {
            throw new PropelException("Cannot fetch TableMap for undefined table phpName: " . $phpName);
        }
    }

    /**
     * Convenience method to get the DBAdapter registered with Propel for this database.
     * @return DBAdapter
     * @see     Propel::getDB(string)
     */
    public function getDBAdapter()
    {
        return Propel::getDB($this->name);
    }
}