summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/ldap.php
Commit message (Collapse)AuthorAgeFilesLines
* Happy new year!Thomas Müller2016-01-121-2/+2
|
* always use an LDAP URL when connecting to LDAPArthur Schiwon2015-12-051-1/+8
|
* handle unallowed auth exception on port detectionArthur Schiwon2015-05-181-1/+1
|
* throw exception on LDAP error 1, which we usually do not see and is pretty ↵Arthur Schiwon2015-05-181-0/+2
| | | | generic. AD uses is for uses not enlisted in the RFC, like on issues with anonymous binds. we also try to guess this case and show a hint.
* catch unallowed anonymous auth attempt and show specific errorArthur Schiwon2015-05-181-0/+2
|
* throw exception when LDAP Connection was lostArthur Schiwon2015-04-221-0/+4
|
* Update license headersJenkins for ownCloud2015-03-261-13/+16
|
* Revert "Updating license headers"Morris Jobke2015-02-261-16/+14
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-14/+16
|
* ldap_ prefix will be added in invokeLDAPMethod(), having it would lead to a ↵Arthur Schiwon2014-08-071-1/+1
| | | | unexisting function, fixes #9829
* support for AD primary groupsArthur Schiwon2014-07-081-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | support for primary groups actually the problem is only known on AD, it is only needed to take care of their attributes adjust to ADs special behaviour this change was not intended cache the SID value so it is not requested over and over again theres only one, use singular we are access add tests for new Access methods add tests for new Group methods address scrutinizer findings, mostly doc call ldap_explode_dn from ldap wrapper, enables tests without php5-ldap PHP Doc yo dawg, i heard you like backslashes … php doc fix PHPDoc updated and typos fixed while reviewing
* Remove all occurences of @brief and @returns from PHPDocMorris Jobke2014-05-191-3/+3
| | | | * test case added to avoid adding them later
* Fix PHPDoc in /appsRobin McCorkell2014-05-161-3/+3
|
* Use proper PHPDoc and variable names in the LDAP libLukas Reschke2014-05-111-10/+111
| | | | My IDE was so sad about this that it marked the whole file in red and yellow and forced me to fix this.
* "reset" ldap pagedSearch control by setting it to a high valueroot2014-03-061-1/+1
| | | | call nextEntry via invokeLDAPMethod
* only check ldap_errno if an ldap_* function actually failsroot2014-03-061-2/+4
| | | | | | | fix wizard errors reset search paging right after the search, not before some of the possible next search operations cookie contains binary characters, don't log it (avoids json_encode(): Invalid UTF-8 sequence in argument errors)
* Merge branch 'master' into scrutinizer_documentation_patchesThomas Müller2014-02-141-3/+3
|\ | | | | | | | | Conflicts: lib/private/appconfig.php
| * LDAP: extend LDAP wrapper search method for sizelimit, improves performance ↵Arthur Schiwon2014-02-101-3/+3
| | | | | | | | in wizard
* | polish documentation based on scrutinizer patchesJörn Friedrich Dreyer2014-02-061-3/+6
|/
* correctly propagate the return value of ldap_set_optionroot2013-12-061-1/+1
| | | | | | otherwise LDAP_OPT_REFERRALS won't be set to 0 and in turn active directory paging will stop working (Operations error on ldap_control_paged_result_response)
* LDAP Wizard: add detection, load and save of LDAP objectClasses for filter ↵Arthur Schiwon2013-10-171-0/+8
| | | | purposes
* LDAP Wizard: autodetect base DNArthur Schiwon2013-10-171-0/+4
|
* LDAP: don't throw exceptions in the wrapper, errors are handled in the code. ↵Arthur Schiwon2013-09-271-3/+5
| | | | nevertheless, log unexpected errors
* LDAP: make Access be a dependency to the user and group backend instead of ↵Arthur Schiwon2013-09-271-0/+2
| | | | inheriting it.
* LDAP: establish wrapper interface to allow proper mockingArthur Schiwon2013-09-271-19/+86
|
* LDAP: move is_resource check to ldap wrapper to make it mockableArthur Schiwon2013-09-271-0/+10
|
* LDAP: move PHP LDAP functions calls to an LDAP Wrapper for better isolation ↵Arthur Schiwon2013-09-271-0/+86
and mock testing