summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/user_ldap.php
Commit message (Collapse)AuthorAgeFilesLines
* don't trigger update from checkPassword, it is already called by userExists, ↵Arthur Schiwon2014-07-101-4/+0
| | | | this is enough.
* LDAP: fetch email from LDAP on userExists check as well (along to Quota and ↵Arthur Schiwon2014-04-111-0/+1
| | | | Avatar)
* LDAP: Read email and quota when mapping user, fixes #7785Arthur Schiwon2014-03-281-33/+2
|
* LDAP: improve compilation of filtersArthur Schiwon2014-02-211-0/+3
|
* LDAP: improve debug messageArthur Schiwon2014-02-101-1/+2
|
* LDAP: also try MS AD's thumbnailPhoto when looking for an avatar imageArthur Schiwon2014-02-101-6/+24
|
* remove unnecessary lineArthur Schiwon2014-01-091-1/+0
|
* LDAP: implement userCount action. This required to (finally) clean up and ↵Arthur Schiwon2014-01-091-1/+15
| | | | refactor the search method, which will have a positive performance impact on paged search.
* Make sure Avatar is set from LDAP upon first login, not later, but also not ↵Arthur Schiwon2013-11-261-2/+14
| | | | before due to missing user folder
* LDAP: last avatar lookup must be stored per user. Someone had a blackout, eh?Arthur Schiwon2013-11-221-5/+6
|
* LDAP: get user photo from LDAP and set it as avatar if availableArthur Schiwon2013-11-221-1/+62
|
* LDAP: coding styleArthur Schiwon2013-09-271-2/+4
|
* LDAP: make Access be a dependency to the user and group backend instead of ↵Arthur Schiwon2013-09-271-40/+54
| | | | inheriting it.
* WhitespacesArthur Schiwon2013-09-271-2/+0
|
* LDAP: only connect to LDAP once on loginArthur Schiwon2013-08-171-5/+5
|
* Use !== and === in user_ldap app – Part 2kondou2013-04-201-2/+2
|
* LDAP: user exists check on getHome, otherwise check will be performed with ↵Arthur Schiwon2013-03-191-0/+5
| | | | wrong configs on a multi LDAP server setup.
* LDAP: check whether user exists for before trying to determine displaynameArthur Schiwon2013-03-191-0/+4
|
* Merge pull request #1708 from owncloud/style-cleanup-user_ldapBernhard Posselt2013-02-171-6/+12
|\ | | | | Style cleanup user_ldap
| * Style cleanup user_ldapBart Visscher2013-02-141-6/+12
| |
* | LDAP: announce that OC_USER_BACKEND_GET_DISPLAYNAME is implemented, fixes #1727Arthur Schiwon2013-02-161-2/+5
|/
* introduce new virtual method hasUserListings() to determine if a user ↵Thomas Mueller2013-02-111-0/+6
| | | | backend can list it's users.
* code styleArthur Schiwon2013-02-061-1/+1
|
* LDAP: do not store user home as it destroys configurability. always fetch ↵Arthur Schiwon2013-02-061-25/+22
| | | | it. use of cache is save however, it is cleared when settings are saved
* Merge pull request #1365 from owncloud/ldap_multiple_serverblizzz2013-01-311-2/+1
|\ | | | | LDAP: support for multiple LDAP/AD servers
| * LDAP: make it possible to define attributes that should be considered on ↵Arthur Schiwon2013-01-311-2/+1
| | | | | | | | searches
* | LDAP: update quota on every uncached userExists, i.e. also on every ↵Arthur Schiwon2013-01-301-0/+1
| | | | | | | | isLoggedIn, fixes #1278
* | LDAP: implement support for ownCloud Display NamesArthur Schiwon2013-01-291-0/+44
|/
* Return an empty array on succesful existence checkLorenzo M. Catucci2012-11-051-1/+1
|
* Return true or false from readAttribute if $attr is emptyLorenzo M. Catucci2012-11-051-3/+2
| | | This way, readAttribute can act as an existence checker.
* LDAP: be careful which limit is send to possible paged LDAP searchArthur Schiwon2012-10-271-1/+4
|
* LDAP: use the correct attribute in filterArthur Schiwon2012-10-271-1/+1
|
* LDAP: let result processing in Access::search slice the array for ↵Arthur Schiwon2012-10-271-12/+2
| | | | not-paginated search. getUsers e.g. does not need to take care of it anymore. adjustments in group_ldap to follow.
* LDAP: debug messagedArthur Schiwon2012-10-271-3/+4
|
* LDAP: let getUsers make use of paged searchArthur Schiwon2012-10-261-15/+29
|
* LDAP: fix retrieval of Quota and EmailArthur Schiwon2012-10-151-6/+9
|
* LDAP: comparison, not assignment. Thanks to Manuel DelgadoArthur Schiwon2012-09-271-1/+1
|
* adding space between) and {Thomas Mueller2012-09-071-5/+5
|
* LDAP: implement getHome() function, use either username (default) or specify ↵Arthur Schiwon2012-08-281-1/+39
| | | | an LDAP attribute value to use
* LDAP: don't pass -1 as length to array slice, when no limit is given. It ↵Arthur Schiwon2012-08-221-0/+3
| | | | cuts off the last item.
* adjust LDAP to updated interfaceArthur Schiwon2012-08-141-2/+10
|
* LDAP: check for always available attribute on userExists, fixes oc-1440Arthur Schiwon2012-08-051-3/+3
|
* LDAP: don't die on unexpected collisions, handle empty display-name ↵Arthur Schiwon2012-07-301-5/+12
| | | | attributes properly
* LDAP: use OC_Cache to cache results from LDAP. Default is set to 10 min. ↵Arthur Schiwon2012-07-261-6/+12
| | | | Should improve performance especially when LDAP users use the sync client, because userExists checks with the LDAP server are reduced.
* LDAP: some cleanupArthur Schiwon2012-07-261-3/+0
|
* code styleArthur Schiwon2012-07-251-1/+1
|
* remove unnecessary debug outputArthur Schiwon2012-07-251-1/+0
|
* LDAP: split up LIB_LDAP into Access for LDAP interaction functions and ↵Arthur Schiwon2012-07-251-29/+17
| | | | Connection for configuration and resource management. Adjust user_ldap, group_ldap and the app accordingly.
* LDAP: put app under the OCA\user_ldap\ namespaceArthur Schiwon2012-07-251-17/+19
|
* Support for OCA namespaceArthur Schiwon2012-07-251-1/+1
|