xref: /plugin/pureldap/classes/Client.php (revision 8595f73ee5f2a82759e15e55b70cf3d4afb2d3d4)
11078ec26SAndreas Gohr<?php
21078ec26SAndreas Gohr
31078ec26SAndreas Gohrnamespace dokuwiki\plugin\pureldap\classes;
41078ec26SAndreas Gohr
51078ec26SAndreas Gohruse FreeDSx\Ldap\Entry\Attribute;
61078ec26SAndreas Gohruse FreeDSx\Ldap\Exception\BindException;
71078ec26SAndreas Gohruse FreeDSx\Ldap\Exception\ConnectionException;
81078ec26SAndreas Gohruse FreeDSx\Ldap\Exception\OperationException;
91078ec26SAndreas Gohruse FreeDSx\Ldap\LdapClient;
101078ec26SAndreas Gohr
111078ec26SAndreas Gohrrequire_once __DIR__ . '/../vendor/autoload.php';
121078ec26SAndreas Gohr
131078ec26SAndreas Gohrabstract class Client
141078ec26SAndreas Gohr{
151078ec26SAndreas Gohr    /** @var array the configuration */
161078ec26SAndreas Gohr    protected $config;
171078ec26SAndreas Gohr
181078ec26SAndreas Gohr    /** @var LdapClient */
191078ec26SAndreas Gohr    protected $ldap;
201078ec26SAndreas Gohr
211078ec26SAndreas Gohr    /** @var bool is this client authenticated already? */
221078ec26SAndreas Gohr    protected $isAuthenticated = false;
231078ec26SAndreas Gohr
241078ec26SAndreas Gohr    /** @var array cached user info */
251078ec26SAndreas Gohr    protected $userCache = [];
261078ec26SAndreas Gohr
271078ec26SAndreas Gohr    /**
281078ec26SAndreas Gohr     * Client constructor.
291078ec26SAndreas Gohr     * @param array $config
301078ec26SAndreas Gohr     */
311078ec26SAndreas Gohr    public function __construct($config)
321078ec26SAndreas Gohr    {
331078ec26SAndreas Gohr        $this->config = $this->prepareConfig($config);
341078ec26SAndreas Gohr        $this->ldap = new LdapClient($this->config);
351078ec26SAndreas Gohr    }
361078ec26SAndreas Gohr
371078ec26SAndreas Gohr    /**
381078ec26SAndreas Gohr     * Setup sane config defaults
391078ec26SAndreas Gohr     *
401078ec26SAndreas Gohr     * @param array $config
411078ec26SAndreas Gohr     * @return array
421078ec26SAndreas Gohr     */
431078ec26SAndreas Gohr    protected function prepareConfig($config)
441078ec26SAndreas Gohr    {
451078ec26SAndreas Gohr        $defaults = [
461078ec26SAndreas Gohr            'defaultgroup' => 'user', // we expect this to be passed from global conf
471078ec26SAndreas Gohr            'use_tls' => false,
481078ec26SAndreas Gohr            'use_ssl' => false,
491078ec26SAndreas Gohr            'port' => '',
501078ec26SAndreas Gohr            'admin_username' => '',
511078ec26SAndreas Gohr            'admin_password' => '',
521078ec26SAndreas Gohr        ];
531078ec26SAndreas Gohr
541078ec26SAndreas Gohr        $config = array_merge($defaults, $config);
551078ec26SAndreas Gohr
561078ec26SAndreas Gohr        // default port depends on SSL setting
571078ec26SAndreas Gohr        if (!$config['port']) {
581078ec26SAndreas Gohr            $config['port'] = $config['use_ssl'] ? 636 : 389;
591078ec26SAndreas Gohr        }
601078ec26SAndreas Gohr
611078ec26SAndreas Gohr        return $config;
621078ec26SAndreas Gohr    }
631078ec26SAndreas Gohr
641078ec26SAndreas Gohr    /**
651078ec26SAndreas Gohr     * Authenticate as admin
661078ec26SAndreas Gohr     */
671078ec26SAndreas Gohr    public function autoAuth()
681078ec26SAndreas Gohr    {
691078ec26SAndreas Gohr        if ($this->isAuthenticated) return true;
701078ec26SAndreas Gohr        return $this->authenticate($this->config['admin_username'], $this->config['admin_password']);
711078ec26SAndreas Gohr    }
721078ec26SAndreas Gohr
731078ec26SAndreas Gohr    /**
741078ec26SAndreas Gohr     * Authenticates a given user. This client will remain authenticated
751078ec26SAndreas Gohr     *
761078ec26SAndreas Gohr     * @param string $user
771078ec26SAndreas Gohr     * @param string $pass
781078ec26SAndreas Gohr     * @return bool was the authentication successful?
791078ec26SAndreas Gohr     */
801078ec26SAndreas Gohr    public function authenticate($user, $pass)
811078ec26SAndreas Gohr    {
821078ec26SAndreas Gohr        if ($this->config['use_tls']) {
831078ec26SAndreas Gohr            try {
841078ec26SAndreas Gohr                $this->ldap->startTls();
851078ec26SAndreas Gohr            } catch (OperationException $e) {
861078ec26SAndreas Gohr                $this->debug($e);
871078ec26SAndreas Gohr            }
881078ec26SAndreas Gohr        }
891078ec26SAndreas Gohr
901078ec26SAndreas Gohr        try {
911078ec26SAndreas Gohr            $this->ldap->bind($user, $pass);
921078ec26SAndreas Gohr        } catch (BindException $e) {
931078ec26SAndreas Gohr            return false;
941078ec26SAndreas Gohr        } catch (ConnectionException $e) {
951078ec26SAndreas Gohr            $this->debug($e);
961078ec26SAndreas Gohr            return false;
971078ec26SAndreas Gohr        } catch (OperationException $e) {
981078ec26SAndreas Gohr            $this->debug($e);
991078ec26SAndreas Gohr            return false;
1001078ec26SAndreas Gohr        }
1011078ec26SAndreas Gohr
1021078ec26SAndreas Gohr        $this->isAuthenticated = true;
1031078ec26SAndreas Gohr        return true;
1041078ec26SAndreas Gohr    }
1051078ec26SAndreas Gohr
1061078ec26SAndreas Gohr    /**
1071078ec26SAndreas Gohr     * Get info for a single user, use cache if available
1081078ec26SAndreas Gohr     *
1091078ec26SAndreas Gohr     * @param string $username
1101078ec26SAndreas Gohr     * @param bool $fetchgroups Are groups needed?
1111078ec26SAndreas Gohr     * @return array|null
1121078ec26SAndreas Gohr     */
1131078ec26SAndreas Gohr    public function getCachedUser($username, $fetchgroups = true)
1141078ec26SAndreas Gohr    {
1151078ec26SAndreas Gohr        if (isset($this->userCache[$username])) {
1161078ec26SAndreas Gohr            if (!$fetchgroups || is_array($this->userCache[$username]['grps'])) {
1171078ec26SAndreas Gohr                return $this->userCache[$username];
1181078ec26SAndreas Gohr            }
1191078ec26SAndreas Gohr        }
1201078ec26SAndreas Gohr
1211078ec26SAndreas Gohr        // fetch fresh data
1221078ec26SAndreas Gohr        $info = $this->getUser($username, $fetchgroups);
1231078ec26SAndreas Gohr
1241078ec26SAndreas Gohr        // store in cache
1251078ec26SAndreas Gohr        if ($info !== null) {
1261078ec26SAndreas Gohr            $this->userCache[$username] = $info;
1271078ec26SAndreas Gohr        }
1281078ec26SAndreas Gohr
1291078ec26SAndreas Gohr        return $info;
1301078ec26SAndreas Gohr    }
1311078ec26SAndreas Gohr
1321078ec26SAndreas Gohr    /**
1331078ec26SAndreas Gohr     * Fetch a single user
1341078ec26SAndreas Gohr     *
1351078ec26SAndreas Gohr     * @param string $username
1361078ec26SAndreas Gohr     * @param bool $fetchgroups Shall groups be fetched, too?
1371078ec26SAndreas Gohr     * @return null|array
1381078ec26SAndreas Gohr     */
1391078ec26SAndreas Gohr    abstract public function getUser($username, $fetchgroups = true);
1401078ec26SAndreas Gohr
1411078ec26SAndreas Gohr    /**
1421078ec26SAndreas Gohr     * Helper method to get the first value of the given attribute
1431078ec26SAndreas Gohr     *
1441078ec26SAndreas Gohr     * The given attribute may be null, an empty string is returned then
1451078ec26SAndreas Gohr     *
1461078ec26SAndreas Gohr     * @param Attribute|null $attribute
1471078ec26SAndreas Gohr     * @return string
1481078ec26SAndreas Gohr     */
1491078ec26SAndreas Gohr    protected function attr2str($attribute) {
1501078ec26SAndreas Gohr        if($attribute !== null) {
1511078ec26SAndreas Gohr            return $attribute->firstValue();
1521078ec26SAndreas Gohr        }
1531078ec26SAndreas Gohr        return '';
1541078ec26SAndreas Gohr    }
1551078ec26SAndreas Gohr
1561078ec26SAndreas Gohr
1571078ec26SAndreas Gohr    /**
1581078ec26SAndreas Gohr     * Handle debugging
1591078ec26SAndreas Gohr     *
1601078ec26SAndreas Gohr     * @param \Exception $e
1611078ec26SAndreas Gohr     */
1621078ec26SAndreas Gohr    protected function debug(\Exception $e)
1631078ec26SAndreas Gohr    {
1641078ec26SAndreas Gohr        if (defined('DOKU_UNITTEST')) {
165*8595f73eSAndreas Gohr            throw new \RuntimeException('', 0, $e);
1661078ec26SAndreas Gohr        }
1671078ec26SAndreas Gohr
1681078ec26SAndreas Gohr        msg($e->getMessage(), -1);
1691078ec26SAndreas Gohr    }
1701078ec26SAndreas Gohr}
171