123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Aaron Wood <aaronjwood@gmail.com>
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Morris Jobke <hey@morrisjobke.de>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCA\User_LDAP\Mapping;
- /**
- * Class AbstractMapping
- * @package OCA\User_LDAP\Mapping
- */
- abstract class AbstractMapping {
- /**
- * @var \OCP\IDBConnection $dbc
- */
- protected $dbc;
- /**
- * returns the DB table name which holds the mappings
- * @return string
- */
- abstract protected function getTableName();
- /**
- * @param \OCP\IDBConnection $dbc
- */
- public function __construct(\OCP\IDBConnection $dbc) {
- $this->dbc = $dbc;
- }
- /**
- * checks whether a provided string represents an existing table col
- * @param string $col
- * @return bool
- */
- public function isColNameValid($col) {
- switch($col) {
- case 'ldap_dn':
- case 'owncloud_name':
- case 'directory_uuid':
- return true;
- default:
- return false;
- }
- }
- /**
- * Gets the value of one column based on a provided value of another column
- * @param string $fetchCol
- * @param string $compareCol
- * @param string $search
- * @throws \Exception
- * @return string|false
- */
- protected function getXbyY($fetchCol, $compareCol, $search) {
- if(!$this->isColNameValid($fetchCol)) {
- //this is used internally only, but we don't want to risk
- //having SQL injection at all.
- throw new \Exception('Invalid Column Name');
- }
- $query = $this->dbc->prepare('
- SELECT `' . $fetchCol . '`
- FROM `'. $this->getTableName() .'`
- WHERE `' . $compareCol . '` = ?
- ');
- $res = $query->execute(array($search));
- if($res !== false) {
- return $query->fetchColumn();
- }
- return false;
- }
- /**
- * Performs a DELETE or UPDATE query to the database.
- * @param \Doctrine\DBAL\Driver\Statement $query
- * @param array $parameters
- * @return bool true if at least one row was modified, false otherwise
- */
- protected function modify($query, $parameters) {
- $result = $query->execute($parameters);
- return ($result === true && $query->rowCount() > 0);
- }
- /**
- * Gets the LDAP DN based on the provided name.
- * Replaces Access::ocname2dn
- * @param string $name
- * @return string|false
- */
- public function getDNByName($name) {
- return $this->getXbyY('ldap_dn', 'owncloud_name', $name);
- }
- /**
- * Updates the DN based on the given UUID
- * @param string $fdn
- * @param string $uuid
- * @return bool
- */
- public function setDNbyUUID($fdn, $uuid) {
- $query = $this->dbc->prepare('
- UPDATE `' . $this->getTableName() . '`
- SET `ldap_dn` = ?
- WHERE `directory_uuid` = ?
- ');
- return $this->modify($query, array($fdn, $uuid));
- }
- /**
- * Updates the UUID based on the given DN
- *
- * required by Migration/UUIDFix
- *
- * @param $uuid
- * @param $fdn
- * @return bool
- */
- public function setUUIDbyDN($uuid, $fdn) {
- $query = $this->dbc->prepare('
- UPDATE `' . $this->getTableName() . '`
- SET `directory_uuid` = ?
- WHERE `ldap_dn` = ?
- ');
- return $this->modify($query, [$uuid, $fdn]);
- }
- /**
- * Gets the name based on the provided LDAP DN.
- * @param string $fdn
- * @return string|false
- */
- public function getNameByDN($fdn) {
- return $this->getXbyY('owncloud_name', 'ldap_dn', $fdn);
- }
- /**
- * Searches mapped names by the giving string in the name column
- * @param string $search
- * @param string $prefixMatch
- * @param string $postfixMatch
- * @return string[]
- */
- public function getNamesBySearch($search, $prefixMatch = "", $postfixMatch = "") {
- $query = $this->dbc->prepare('
- SELECT `owncloud_name`
- FROM `'. $this->getTableName() .'`
- WHERE `owncloud_name` LIKE ?
- ');
- $res = $query->execute(array($prefixMatch.$this->dbc->escapeLikeParameter($search).$postfixMatch));
- $names = array();
- if($res !== false) {
- while($row = $query->fetch()) {
- $names[] = $row['owncloud_name'];
- }
- }
- return $names;
- }
- /**
- * Gets the name based on the provided LDAP UUID.
- * @param string $uuid
- * @return string|false
- */
- public function getNameByUUID($uuid) {
- return $this->getXbyY('owncloud_name', 'directory_uuid', $uuid);
- }
- /**
- * Gets the UUID based on the provided LDAP DN
- * @param string $dn
- * @return false|string
- * @throws \Exception
- */
- public function getUUIDByDN($dn) {
- return $this->getXbyY('directory_uuid', 'ldap_dn', $dn);
- }
- /**
- * gets a piece of the mapping list
- * @param int $offset
- * @param int $limit
- * @return array
- */
- public function getList($offset = null, $limit = null) {
- $query = $this->dbc->prepare('
- SELECT
- `ldap_dn` AS `dn`,
- `owncloud_name` AS `name`,
- `directory_uuid` AS `uuid`
- FROM `' . $this->getTableName() . '`',
- $limit,
- $offset
- );
- $query->execute();
- return $query->fetchAll();
- }
- /**
- * attempts to map the given entry
- * @param string $fdn fully distinguished name (from LDAP)
- * @param string $name
- * @param string $uuid a unique identifier as used in LDAP
- * @return bool
- */
- public function map($fdn, $name, $uuid) {
- if(mb_strlen($fdn) > 255) {
- \OC::$server->getLogger()->error(
- 'Cannot map, because the DN exceeds 255 characters: {dn}',
- [
- 'app' => 'user_ldap',
- 'dn' => $fdn,
- ]
- );
- return false;
- }
- $row = array(
- 'ldap_dn' => $fdn,
- 'owncloud_name' => $name,
- 'directory_uuid' => $uuid
- );
- try {
- $result = $this->dbc->insertIfNotExist($this->getTableName(), $row);
- // insertIfNotExist returns values as int
- return (bool)$result;
- } catch (\Exception $e) {
- return false;
- }
- }
- /**
- * removes a mapping based on the owncloud_name of the entry
- * @param string $name
- * @return bool
- */
- public function unmap($name) {
- $query = $this->dbc->prepare('
- DELETE FROM `'. $this->getTableName() .'`
- WHERE `owncloud_name` = ?');
- return $this->modify($query, array($name));
- }
- /**
- * Truncate's the mapping table
- * @return bool
- */
- public function clear() {
- $sql = $this->dbc
- ->getDatabasePlatform()
- ->getTruncateTableSQL('`' . $this->getTableName() . '`');
- return $this->dbc->prepare($sql)->execute();
- }
- /**
- * clears the mapping table one by one and executing a callback with
- * each row's id (=owncloud_name col)
- *
- * @param callable $preCallback
- * @param callable $postCallback
- * @return bool true on success, false when at least one row was not
- * deleted
- */
- public function clearCb(Callable $preCallback, Callable $postCallback): bool {
- $picker = $this->dbc->getQueryBuilder();
- $picker->select('owncloud_name')
- ->from($this->getTableName());
- $cursor = $picker->execute();
- $result = true;
- while($id = $cursor->fetchColumn(0)) {
- $preCallback($id);
- if($isUnmapped = $this->unmap($id)) {
- $postCallback($id);
- }
- $result &= $isUnmapped;
- }
- $cursor->closeCursor();
- return $result;
- }
- /**
- * returns the number of entries in the mappings table
- *
- * @return int
- */
- public function count() {
- $qb = $this->dbc->getQueryBuilder();
- $query = $qb->select($qb->func()->count('ldap_dn'))
- ->from($this->getTableName());
- $res = $query->execute();
- $count = $res->fetchColumn();
- $res->closeCursor();
- return (int)$count;
- }
- }
|