aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/HypergridService (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-06-30Remove some mono compiler warningsJustin Clark-Casey (justincc)3-17/+15
2012-04-07A few more minor improvements on Suitcase inventory service.Diva Canto1-7/+6
2012-04-06Better Suitcase Inventory Service.Diva Canto1-48/+55
2012-04-06Deleted the unused and commented code from 2 commits ago.Diva Canto1-594/+0
2012-04-06WARNING: LOTS OF COMMENTED AND UNUSED CODE IN THIS COMMIT. This is on ↵Diva Canto1-36/+712
purpose; it's an historical record of what works and what doesn't wrt manipulating inventory at the viewer. I'll remove the unused code in a subsequent commit, but wanted to place it in history. The uncommented code works.
2012-04-06Finish the implementation of GetUserInventory, even though it's still not used.Diva Canto1-0/+6
2012-03-29Finish up the SuitcaseInventory service.Diva Canto1-120/+218
2012-03-28HG 2.0: added the beginning of HGSuitcaseInventoryService. Plus moved the ↵Diva Canto1-0/+368
hack away from ScenePresence. This is better but it still doesn't restore the inventory upon arrival.
2012-03-27Amend to previous commit regarding the config name. Bugs bite.Diva Canto1-2/+0
2012-03-27User level based restrictions for HyperGrid teleports, asset uploads, group ↵Snoopy Pfeffer2-2/+25
creations and getting contacted from other grids. Incoming HyperGrid teleports can also be restricted to local users.
2012-03-27Send the config section name up to the service classes themselves ↵Diva Canto2-36/+8
(XInventory and Assets).
2012-03-21HG Friends: reroute the status notifications to the HGFriends service, so ↵Diva Canto2-0/+109
that they can scale better. They were previously being handled by the UAS; that is still there, but it's now obsolete and will be removed in a future release.
2012-03-20HG Friends: allow the establishment of HG friendships without requiring ↵Diva Canto1-0/+301
co-presence in the same sim. Using avatar picker, users can now search for names such as "first.last@grid.com:9000", find them, and request friendship. Friendship requests are stored if target user is offline. TESTED ON STANDALONE ONLY.
2012-03-17Added GetUUID(first, last) on UserAgentsService so that we can finally make ↵Diva Canto1-0/+10
direct user connections.
2012-03-08Fixes mantis #5923Diva Canto1-2/+3
2012-02-18Propagate our teleport flags on loginsBlueWall1-2/+6
2012-01-26HG Inventoty: Guard against items not found.Diva Canto1-6/+7
2012-01-12HG: normalize all externalized user ULRs to be the Home URL, i.e. the ↵Diva Canto2-7/+13
location of the user's UAS. This corrects an earlier design which had some cases pointing to the profile server. WARNING: CONFIGURATION CHANGES in both the sims (*Common.ini) and the Robust configs (Robust.HG.ini). Please check diff of the example files, but basically all vars that were pointing to profile should point to the UAS instead and should be called HomeURI.
2012-01-03Profile UpdatesBlueWall1-0/+25
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-21HG: Verify that the user is localDiva Canto1-0/+8
2011-12-04HG: Renamed one methodDiva Canto2-2/+2
2011-11-15Dont' bother with a userAgentService != null check right after we've ↵Justin Clark-Casey (justincc)1-11/+10
constructed it
2011-10-15Guard HGAssetService against uninitialized variables and null arguments.Diva Canto1-0/+3
2011-08-17minor: remove mono compiler warningJustin Clark-Casey (justincc)1-1/+1
2011-08-06Do proper locking of m_localScenes list in SceneManagerJustin Clark-Casey (justincc)1-4/+3
2011-07-13refactor: Move all callers of the obsoleted ↵Justin Clark-Casey (justincc)1-5/+3
SychronousRestObjectPoster.BeginPostObject() to the identical SynchronousRestObjectRequester.MakeRequest()
2011-06-08Removing special casing on failures. This may also fix reports of this issue:Diva Canto1-2/+4
22:07:53 - [USER AGENT CONNECTOR]: remote call to http://hg.osgrid.org:80/ returned an error: Requested method [locate_user] from 127.0.0.1 threw exception: Object reference not set to an instance of an object at OpenSim.Services.HypergridService.UserAgentService.LocateUser (UUID userID) [0x00000] in <filename unknown>:0
2011-06-08Deleted wrong debug message.Diva Canto1-1/+0
2011-06-07Added error message to help understand ↵Diva Canto1-0/+5
http://opensimulator.org/mantis/view.php?id=5527
2011-06-07This hopefully fixes all issues with online/offline notifications across ↵Diva Canto1-7/+21
grids. http://opensimulator.org/mantis/view.php?id=5528
2011-06-07Remove scary error messageDiva Canto1-6/+0
2011-06-07This fixes the crash reported in ↵Diva Canto2-17/+13
http://opensimulator.org/mantis/view.php?id=5529 related to sending IMs to foreign friends who are offline. Hopefully.
2011-06-06This should make offline IMs work again. It should work for incoming foreign ↵Diva Canto1-4/+47
IMs where the local recipient is offline. I can't test any of this, because I don't run an offline IM server.
2011-06-02Bug fix on HG IM.Diva Canto1-13/+13
2011-06-01Re-Apply Use current TravelingAgent if the the login failure reason is ↵BlueWall1-2/+5
"Logins Disabled" to fix NullReferenceException, allowing agent to login to fallback region when logins are disabled by "StartDisabled = true" or when logins are disabled by RegionReady"" This reverts commit 0a430bbffb561a5172220e7617257798c11a66f5.
2011-06-01Revert "Use current TravelingAgent if the login failure reason is "Logins ↵BlueWall1-5/+2
Disabled" to fix NullReferenceException, allowing agent to login to fallback region when logins are disabled by "StartDisabled = true" or when logins are disabled by RegionReady" This reverts commit 4b9e446c6267a1161263d885699e72c97e8a94eb.
2011-06-01Use current TravelingAgent if the login failure reason is "Logins Disabled" ↵BlueWall1-2/+5
to fix NullReferenceException, allowing agent to login to fallback region when logins are disabled by "StartDisabled = true" or when logins are disabled by RegionReady
2011-05-27HG inventory transfers over the profile working.Diva Canto1-0/+2
2011-05-26Commented a few extra debug messages.Diva Canto1-5/+5
2011-05-26HG IM in grid mode working fairly well. Unknown target user references ↵Diva Canto2-8/+38
looked back in source user's User Agent service.
2011-05-25HG: Instant Message working. Tested on HG standalones only. Needs a lot more ↵Diva Canto2-0/+322
testing.
2011-05-24Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto1-0/+17
window, but can't test because this mechanism doesn't seem to work without a profile service.
2011-05-23HG friends: Status notifications working. Also initial logins get the online ↵Diva Canto1-3/+169
friends in other grids.
2011-05-22More on HG Friends. Added Delete(string, string) across the board. Added ↵Diva Canto1-86/+0
security to friendship identifiers so that they can safely be deleted across worlds. Had to change Get(string) to use LIKE because the secret in the identifier is not always known -- affects only HG visitors. BOTTOM LINE SO FAR: HG friendships established and deleted safely across grids, local rights working but not (yet?) being transmitted back.
2011-05-22File to be removedDiva Canto1-11/+0
2011-05-21Fixed permissions bug related to friends in PermissionsModule. Added ↵Diva Canto1-1/+3
FriendsData[] GetFriends(string principalID) to IFriendsData and FriendInfo[] GetFriends(string PrincipalID) to IFriendsService. Refactored some more in the FriendsModule. Made client get notification of local friends permissions upon HGLogin. HG Friends object permissions work.
2011-05-19HG Friends working to some extent: friendships offered and accepted ↵Diva Canto1-0/+95
correctly handled. Friends list showing correct foreign names. TODO: GrantRights.
2011-04-27Thank you Snoopy for a patch that adds some filtering to client versions ↵Diva Canto1-2/+37
allowed at login and HG-login times. NOTE: additional (optional) configuration variables in [LoginService] and [GatekeeperService]. See .examples.
2011-03-01Normalizing comparison to lower case, just in case ppl set their config vars ↵Diva Canto1-1/+1
inconsistently. (maybe related to mantis #5386)
2011-01-17Put the 'new' back to avoid a warning. Yes, we want to hide it.Diva Canto1-1/+1