aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IUserManagement.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-12-07set HasGridUserTried on usercache of NPCsUbitUmarov1-1/+1
2016-08-17 add GetUsersNames(string[] ids) to UserManagement. Make GetDisplayNames cap ↵UbitUmarov1-0/+1
use it so several IDs are handle on a single call. Since there is no grid side suport, no much gain still
2015-03-05solving HG IM, HGFriends issues based on falsified GridUser dataFreaky Tech1-0/+1
it does not consider GridUser as a viable source for residents' data. it does not consider Friends, Inventory Creators to be trusted at all. There are lots of broken entries in existence. There are lots of broken creator data fields in assets. The following issues arise from the broken data in the old User Management Module: failing HG IM failing HGFriends Requests Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2015-01-09Added GetDisplayNames capability. For now, we don't actually use display ↵Diva Canto1-1/+1
names, and this cap returns the regular name. But this moves the server side into the newer, preferred, protocol used by the viewer for fetching the names of agents in the scene given their UUIDs. (the old protocol is via UDP). This works fine in my limited tests, but could use further testing by others.
2012-11-15Revert "Merge master into teravuswork", it should have been avination, not ↵teravus1-28/+1
master. This reverts commit dfac269032300872c4d0dc507f4f9062d102b0f4, reversing changes made to 619c39e5144f15aca129d6d999bcc5c34133ee64.
2012-10-05minor: Add missing license information from the top of IUserManagementJustin Clark-Casey (justincc)1-1/+28
2012-03-28Add "friends show cache <first-name> <last-name>" command for debugging ↵Justin Clark-Casey (justincc)1-0/+15
purposes. This adds a reverse lookup (name -> ID) to IUserManagement instead of hitting the UserAccountService directly.
2012-01-12Undo some prior workBlueWall1-3/+0
Move some added fuctions out of core into the addon module to keep things clean
2012-01-12Renamed one var and deleted commented code. No functional changes.Diva Canto1-1/+1
2012-01-03Profile UpdatesBlueWall1-0/+3
Update basic profile to use the replaceable interface, making configuration less error-prone. Add support to query avatar's home user account and profile service for regions usng the updated OpenProfileModule with Hypergrid.
2011-12-29Added UserManagementModule.IsLocalGridUser(UUID) to be used throughout ↵Diva Canto1-0/+2
region Scenes and Modules. Changed existing modules to use it instead of assuming that foreign = null account.
2011-08-19Stop NPC's getting hypergrid like names in some circumstances.Justin Clark-Casey (justincc)1-1/+36
This meant punching in another AddUser() method in IUserManagement to do a direct name to UUID associated without the account check (since NPCs don't have accounts). May address http://opensimulator.org/mantis/view.php?id=5645
2011-06-08Fixed "Unknown User" listed as creator/owner on prims created with the Build ↵Diva Canto1-0/+1
button by foreign visitors. Added command to the UserManagementModule to list all the known bindings between user UUIDs and their names: show user-names.
2011-05-24Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto1-0/+2
window, but can't test because this mechanism doesn't seem to work without a profile service.
2010-11-25WARNING: LOTS OF CONFIGURATION CHANGES AFFECTING PRIMARILY HG CONFIGS. Added ↵Diva Canto1-0/+1
capability to preserve creator information on HG asset transfers. Added a new HGAssetService that is intended to be the one outside the firewall. It processes and filters the assets that go out of the grid. Also fixed the normal AssetService to do special things for the main instance (console commands, etc). Moved HGInventoryService to OpenSim.Services.HypergridService. Changed the way the login service gets the ServiceURL configs.
2010-11-21Global creator information working on MySQL DB and on load/save OARs. ↵Diva Canto1-0/+13
Creator name properly shown on the viewer as first.last @authority. New option added to save oar -profile=url. Migration on RegionStore making CreatorID be 255 chars. Moved Handling of user UUID -> name requests to a new module UserManagement/UserManagementModule.