summaryrefslogtreecommitdiff
path: root/lib/plugins/authad/auth.php
Commit message (Collapse)AuthorAge
* Error reporting for database auth pluginsPatrick Brown2015-05-06
|
* Move language string to authad pluginPatrick Brown2015-03-31
|
* Escape user strings given to adLDAPMichael Große2015-03-12
|
* Explain functions in docstringsMichael Große2015-03-12
|
* Clean up code, add phpdoc comments, some refactoring, etc.Michael Große2015-03-12
|
* Disable the ``last`` button when filtering groupsMichael Große2015-03-12
| | | | | | Since we cannot effectively filter for groups and have to work with incremental prefetching, the ``last`` button is mostly broken/buggy. Hence it is disabled in this usecase.
* When filtering for group implement prefetchingMichael Große2015-03-12
|
* Create and use ad search for user, name and emailMichael Große2015-03-12
|
* Get total number of users in ad, needed for pagingMichael Große2015-03-11
|
* more PHPDocs, unused var, small bit code reformattingGerrit Uitslag2014-10-01
|
* more scrutinizer issue improvementsGerrit Uitslag2014-09-29
|
* Allow user info to be retrieved without groupsChristopher Smith2014-03-12
| | | | | | | | | | Some parts of dokuwiki (e.g. recent changes, old revisions) can requests lots of user info (to provide editor names) without requiring any group information. This change also implements caching of user info by authmysql & authpgsql plugins to avoid repeated querying of the DB to retrieve the same user information.
* Merge pull request #541 from splitbrain/multidomainadAndreas Gohr2014-03-05
|\ | | | | Show a domain dropdown when multiple AD domains are configured
| * Show a domain dropdown when multiple AD domains are configuredAndreas Gohr2014-02-14
| | | | | | | | | | | | | | | | This integrates the functionality of the now outdated addomain plugin directly into the authad plugin and makes multi-domain setups usable without SSO. See also https://github.com/cosmocode/dokuwiki-plugin-addomain
* | fixed retrieveUser function in authadAndreas Gohr2014-02-15
| | | | | | | | previously it never returned any users
* | streamlined retrieveUsers() signature over all auth plugins FS#2919Andreas Gohr2014-02-15
|/
* allow charset for SSO to be configured FS#2148Andreas Gohr2013-10-22
|
* treat empty AD credentials as NULL values FS#2781Andreas Gohr2013-06-07
|
* authad: capabilities depend on userdomain specific configAndreas Gohr2013-04-25
|
* authad: added compatibility for old option namesAndreas Gohr2013-04-25
| | | | | | adLDAP renamed the ad_username and ad_password to admin_username admin_password recently. this makes our backend recognize the old settings
* authad: don't request empty fieldsAndreas Gohr2013-04-25
|
* fix expiry check for adLDAP version FS#2759Andreas Gohr2013-04-22
|
* Rename ad_username to admin_usernameKlap-in2013-04-21
| | | | canDo getUsers to false when unavailable
* adjusted authad language files for config option changeAndreas Gohr2013-04-19
|
* Fix remaining missing $INPUT uses FS#2577Michael Hamann2013-02-20
| | | | | | This adds $INPUT in all places where it was still missing and available. $INPUT is now also used in places where using $_REQUEST/... was okay in order to make the code consistent.
* authad fixesAndreas Gohr2012-11-09
| | | | | * fixes incorrect $this->adldap calls * makes use of correct plugin config
* moved adLDAP to authad plugin and fixed includesAndreas Gohr2012-11-09
|
* some comment cleanup in authadAndreas Gohr2012-11-09
|
* make all sub auth classes call the parent constructorAndreas Gohr2012-11-09
| | | | | This does nothing currently but allows us adding certain things to the base class later.
* Merge remote-tracking branch 'janschumann/master' into futureAndreas Gohr2012-10-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This merge fixes all conflicts but is otherwise untested and might break funktionality in the auth system somewhere. It NEEDS MAJOR TESTING! Some refactoring of the auth plugins is still needed: * move to PHP5 style * fix comments * add plugin.info.txt * janschumann/master: Refactored auth system: All auth methods are now introduced as plugins. Bugfix: auth types are now correcty added Setup auth system from plugins Added Auth-Plugin-Prototype to autoload Load auth types from plugins in settings_authtype class Added prototype for Auth-Plugins added plugin type 'auth' Conflicts: inc/auth.php inc/auth/pgsql.class.php inc/init.php inc/load.php lib/plugins/auth.php lib/plugins/authad/auth.php lib/plugins/authldap/auth.php lib/plugins/authmysql/auth.php lib/plugins/authplain/auth.php
* Refactored auth system: All auth methods are now introduced as plugins.Jan Schumann2012-02-20