aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-10-01Formatting cleanup.Jeff Ames1-1/+1
2009-09-28Added RegionSecret to GridRegion, and corresponding saving/retrieval from DB ↵Diva Canto1-5/+9
layer. This sounds fishy to me, but it's what's used to make external currency modules work, for now.
2009-09-27Added missing IHyperlinkService.Diva Canto1-0/+49
2009-09-27Unpacking the mess with OtherRegionUp, so we can have a real cache of the ↵Diva Canto1-1/+2
neighbours in the grid service modules.
2009-09-26Moved all HG1 operations to HGGridConnector.cs and ↵Diva Canto1-0/+14
HypergridServerConnector.cs/HypergridServiceConnector.cs, away from Region.Communications and HGNetworkServersInfo. Fixed small bugs with hyperlinked regions' map positions.
2009-09-26First pass at the heart surgery for grid services. Compiles and runs ↵Diva Canto1-6/+21
minimally. A few bugs to catch now.
2009-09-25Better guards on RegisterRegion in GridService.Diva Canto1-1/+9
Added serverPort to the fields that get stored (I think this is the UDP port).
2009-09-24All tests pass for MySQL/MySQLRegionData.Diva Canto1-43/+18
Added OpenSim.GridServer.ini.example that I have been using for testing the ROBUST grid service with the GridClient.
2009-09-24GridServerPostHandler finished. GridClient tests all work. More guards on ↵Diva Canto1-0/+4
getting parameters and replies over the wire.
2009-09-24Added test GridClient, which allowed me to remove a few bugs out of the new ↵Diva Canto1-0/+9
code.
2009-09-23Changed IGridService to use the new GridRegion data structure instead of old ↵Diva Canto1-9/+240
SimpleRegionInfo. Added grid configs to standalones.
2009-09-21Added grid handler and grid remote connector.Diva Canto1-1/+1
2009-09-18First pass at the grid service.Diva Canto1-6/+11
2009-09-16updated the IAuthorizationService interface so that a message is passed back ↵Rob Smart1-1/+1
and can be displayed at the client when an avatar is denied access to a region
2009-09-11Changed GetRegionByHandle to GetRegionByPosition -- more generic.Diva Canto1-1/+1
2009-09-11Added GetRegionByHandle.Diva Canto1-0/+2
2009-09-11Removed RequestLandData from IGridService because it's already in another place.Diva Canto2-4/+38
Moved GetMapBlocks to a new interface IMapService.
2009-09-11Changed names of methods in IGridService.Diva Canto1-8/+13
2009-09-11moved AuthorizationRequest and AuthorizationResponse to ↵Rob Smart1-0/+98
IAuthorizationService to keep service dependencies together.
2009-09-10Changed the interface of IAuthorizationService to get less data.Diva Canto1-1/+1
2009-09-10The stubs for an authorization service, at the moment the service will ↵Rob Smart1-0/+46
always grant access to an avatar entering the region if requested.
2009-09-06Remove the encryption from the IAuthenticationService interface. ThatMelanie1-36/+0
is too high up for that type of stuff. It needs to be at the connector/handler level
2009-09-06Revising the user account data interfaces. No user functionality yetMelanie1-25/+10
2009-09-04Implement plain password authentication partway. Tested, but no userMelanie1-2/+2
functionality yet.
2009-09-03Remove the distinction between password and login key in the authenticationMelanie1-5/+2
service. This will be done in the login service instead, it's out of scope for an authenticator
2009-08-29Redesign the IAuthenticationService interface to use PKI. Sessioning isMelanie1-38/+70
now in the domain of the presence module where it belongs.
2009-08-22* Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto1-0/+8
folders were never being removed from trash when they were singled out for purging in trash. They were being removed when Trash was purged as a whole. That behavior is now fixed for the new InventoryService set. * Removed left-overs from AssetInventoryServer.
2009-08-19Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto1-0/+2
operation. Moving a batch of items is a 1-time operation. Made it async anyway, so that the viewer doesn't wait in case the DB layer is dumb (which is the case currently).
2009-08-19A better purge of trash folder.Diva Canto1-1/+2
2009-08-14Add standard doc and standard doc formatting to IAssetServiceJustin Clark-Casey (justincc)1-9/+37
2009-08-13Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto1-0/+20
2009-08-13Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto1-2/+2
starting to get on my nerves.
2009-08-10Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto1-7/+23
GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
2009-08-10Changed RequestRootFolder to GetRootFolderDiva Canto1-1/+1
2009-08-10Stub out the Profile and Presence servicesMelanie2-0/+74
2009-08-09Finish the renaming and mae things compile againMelanie1-3/+3
2009-08-09More renamesMelanie1-10/+10
2009-08-09Rename UserData to UserAccount dataMelanie1-7/+7
2009-08-04Adding the plumbing for a ROBUST freeswitch serviceMelanie1-0/+37
2009-07-10Adding the new grid services skeleton. Still very much based on the oldMelanie Thielker1-0/+83
one but alowing multi-tenancy.
2009-06-30Updated services to allow external applications like web interfaces toMelanie Thielker2-13/+74
authenticate against the services. This paves the way for such apps to directly talk to services.
2009-06-23Add RegionSecret to user data structure to provide data update securityMelanie Thielker1-0/+6
2009-06-22Committing RemoteUserServiceConnector out connector, local user serviceMelanie Thielker1-3/+2
connector and the glue code.
2009-06-22Committing the meat of the user server interface and the bones of the ↵Melanie Thielker1-0/+45
service implementation
2009-06-22Update svn properties.Jeff Ames1-38/+38
2009-06-17Implementation of a simple authentication service + in connector in route to ↵diva1-11/+19
making HGInventory (client access) work in standalone again. This is the refactoring of what was/is there, but done in the new model. Not complete yet, but key authentication works. It should be enough to make HGInventory work again soon.
2009-06-14Factoring out "land_data" / RequestLandData that was hanging off of ↵diva1-0/+38
IGridServices, erroneously. Not sure when this is used, but now it is implemented in the new model of service connectors. Hopefully it works.
2009-06-14Update svn properties.Jeff Ames1-38/+38
2009-06-14Oops. Forgot to add this file.diva1-0/+38
2009-06-11Fixes mantis #3803. Thanks jhurliman.diva1-1/+2