aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Friends (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-10-25Make OpenSim.Framework.Servers.HttpServer rely on OpenSim.Framework instead ↵Justin Clark-Casey (justincc)1-0/+1
of the other way around. This is necessary so that code in HttpServer can use framework facilities such as the thread watchdog for monitoring purposes. Doing this shuffle meant that MainServer was moved into OpenSim/Framework/Servers Also had to make OpenSim.Framework.Console rely on OpenSim.Framework rather than the other way around since it in turn relies on HttpServer MainConsole and some new interfaces had to be moved into OpenSim/Framework to allow this. This can be reverted if parts of OpenSim.Framework stop relying on console presence (cheifly RegionInfo)
2011-06-27minor: temporarily comment out the local status notify friends messages seen ↵Justin Clark-Casey (justincc)1-1/+1
on login/logout, since it's a bit noisy on the console. Please uncomment if/when this is still needed.
2011-06-11A few more cleanups on the way to close ↵Diva Canto1-11/+3
http://opensimulator.org/mantis/view.php?id=5516 once and for all. Moral of the story: don't send AgentOnline/Offline to viewers with a zero-length array.
2011-06-11Only send AgentOnline to the client if the friendsOnline list has elements. ↵Diva Canto1-1/+1
Also, increased the timeout on UserAgentServiceConnector, StatusNotification again.
2011-06-10Added a Sleep in between each site call, to slow the xml-rpc requests down.Diva Canto1-37/+40
2011-06-10More tweaking on the UserAgentServiceConnector: add constructor that does ↵Diva Canto1-1/+1
not do DNS lookup, and use that for friends notification.
2011-06-07This hopefully fixes all issues with online/offline notifications across ↵Diva Canto2-3/+10
grids. http://opensimulator.org/mantis/view.php?id=5528
2011-06-06More on the hunt for the slow down on HGFriendsModule. - Don't requests the ↵Diva Canto1-48/+71
online friends on foreign grids. If this works, there's another way of getting that info.
2011-06-06Moved the Mono Addins declaration of the HGFriendsModule to where the one ↵Diva Canto1-1/+0
for FriendModule is -- CoreModulePlugin.addin.xml (trying to hunt down the slowness reported by Nebadon related to HGFriends)
2011-05-23HG friends: Status notifications working. Also initial logins get the online ↵Diva Canto2-47/+207
friends in other grids.
2011-05-22More on HG Friends. Added Delete(string, string) across the board. Added ↵Diva Canto2-107/+212
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-21Fixed permissions bug related to friends in PermissionsModule. Added ↵Diva Canto2-208/+154
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 Canto2-39/+550
correctly handled. Friends list showing correct foreign names. TODO: GrantRights.
2011-04-12Moved 3 request handlers from OpenSim.Framework.Servers.HttpServer up to ↵Diva Canto1-1/+1
OpenSim.Framework -- just pasted them in WebUtil. This is so that code that uses the Service connectors don't need to include the HttpServer dll -- that was odd.
2011-01-03Allow cross-scope friendships to work, and also allow other cross scope nameMelanie2-2/+2
resolution
2010-10-04Formatting cleanup.Jeff Ames1-6/+6
2010-09-17Revert "* Changed 11 calls for session info to the more optimized API method"root1-32/+71
This reverts commit 5dc9ea2f2487804d788b4b80d40d91bd792de4c2. Also makes online indicators and IM more robust
2010-09-09Over a dozen thread safety fixes in FriendsModuleJohn Hurliman1-167/+163
2010-09-08* Changed 11 calls for session info to the more optimized API methodJohn Hurliman1-68/+32
2010-06-28One more bug fix in FriendsModule: GrantRights. One of the caches was not ↵Diva Canto1-0/+7
being updated.
2010-06-19Bug fix: wrong name of requester in local friendship offer.Diva Canto1-1/+4
2010-06-11Better friends notification: get rid of OnLogout and use OnClientClose for ↵Diva Canto1-23/+14
sending notifications. This takes care of crashed sessions. Also, made the notifications themselves asynchronous.
2010-06-10Bug fix on friends notifications. OnClientClose and OnLogout ordering are ↵Diva Canto1-8/+33
unpredictable; when OnClientClosed happened first, it was removing the friends list, which would prevent OnLogout notifications to go out.
2010-06-05Bug fix: update the list of friends upon MakeRoot, because child agents ↵Diva Canto1-1/+1
don't get notified of new friendships.
2010-06-04Fixed a couple of buglets in Friendship offers / acceptance / decline when ↵Diva Canto2-26/+43
avies are in different sims.
2010-05-08More cleaning on presence. Friends online/offline works again.Diva Canto1-37/+50
2010-04-30* XInventory fairly tested, including for HG. Almost ready to switch.Diva Canto1-2/+5
* Removed a few buglets and added better exception handling.
2010-04-28Spelling in FriendsModule.cs: "filed to load" -> "failed to load"unknown1-1/+1
2010-03-10Formatting cleanup. Add copyright notices.Jeff Ames1-2/+2
2010-03-09Changed a cryptic debug message and a wrong commentDiva Canto1-1/+1
2010-03-01Offline friendship offers now working.Diva Canto1-8/+41
2010-03-01Friends rights under control.Diva Canto2-70/+33
2010-03-01More work on GrantRights. Still not right.Diva Canto2-44/+101
2010-03-01Fix -1 checks for login caseMelanie1-1/+1
2010-03-01Small tweakMelanie1-1/+1
2010-03-01Should have things the right way around, better that wayMelanie1-1/+1
2010-03-01Change friends to handle offers as it was originally designed. This mayMelanie1-6/+2
need to be changed in SQLite & MSSQL as well
2010-02-28Implement rights changes locall (UNTESTED)Melanie1-10/+38
2010-02-28Initial Online friends notification seems to be working reliably now. All ↵Diva Canto1-16/+38
this needs more testing, but everything is there.
2010-02-28Friends connectors finished. Status notification working across the board. ↵Diva Canto2-58/+282
One last bug: friends online upon login are not being sent to the user.
2010-02-27Status notification (online/offline) working for same sim.Diva Canto1-18/+66
2010-02-27Update the local cache upon friendship acceptance. Logout notifications working.Diva Canto1-0/+4
2010-02-27* Finished implementation of FriendsService.DeleteDiva Canto1-1/+4
* Deny now working
2010-02-27Friends online notifications upon friendship now working (same sim only).Diva Canto1-0/+3
2010-02-27Move requestonlinenotification generic message to presence moduleMelanie1-6/+0
2010-02-27Implement a handler for requestonlinenotification generic messageMelanie1-0/+6
2010-02-27Friendships established.Diva Canto1-0/+7
2010-02-26* Friendship offers starting to work in the same sim. Not quite right yet.Diva Canto2-102/+243
* Added skeleton for out Connectors/Friends/FriendsSimConnector.cs * Moved request handler to its own file
2010-02-26More flesh to FriendsModule. Still incomplete.Diva Canto1-0/+67
2010-02-26Add the client message handlers. The calling card handlers that are part ofMelanie1-0/+27
the old friends module are omitted intentionally, as I believe those should be in a calling card module, not bundled with friends.