123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461 |
- /*
- * Copyright (c) Contributors, http://opensimulator.org/
- * See CONTRIBUTORS.TXT for a full list of copyright holders.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of the OpenSimulator Project nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- using System;
- using System.Reflection;
- using OpenMetaverse;
- using OpenMetaverse.StructuredData;
- using log4net;
- using OpenSim.Services.Interfaces;
- using OpenSim.Framework.Servers.HttpServer;
- using OpenSim.Framework;
- namespace OpenSim.Server.Handlers
- {
- public class UserProfilesHandlers
- {
- public UserProfilesHandlers ()
- {
- }
- }
- public class JsonRpcProfileHandlers
- {
- static readonly ILog m_log =
- LogManager.GetLogger(
- MethodBase.GetCurrentMethod().DeclaringType);
-
- public IUserProfilesService Service
- {
- get; private set;
- }
-
- public JsonRpcProfileHandlers(IUserProfilesService service)
- {
- Service = service;
- }
-
- #region Classifieds
- /// <summary>
- /// Request avatar's classified ads.
- /// </summary>
- /// <returns>
- /// An array containing all the calassified uuid and it's name created by the creator id
- /// </returns>
- /// <param name='json'>
- /// Our parameters are in the OSDMap json["params"]
- /// </param>
- /// <param name='response'>
- /// If set to <c>true</c> response.
- /// </param>
- public bool AvatarClassifiedsRequest(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- m_log.DebugFormat ("Classified Request");
- return false;
- }
-
- OSDMap request = (OSDMap)json["params"];
- UUID creatorId = new UUID(request["creatorId"].AsString());
-
-
- OSDArray data = (OSDArray) Service.AvatarClassifiedsRequest(creatorId);
- response.Result = data;
-
- return true;
- }
-
- public bool ClassifiedUpdate(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- response.Error.Message = "Error parsing classified update request";
- m_log.DebugFormat ("Classified Update Request");
- return false;
- }
-
- string result = string.Empty;
- UserClassifiedAdd ad = new UserClassifiedAdd();
- object Ad = (object)ad;
- OSD.DeserializeMembers(ref Ad, (OSDMap)json["params"]);
- if(Service.ClassifiedUpdate(ad, ref result))
- {
- response.Result = OSD.SerializeMembers(ad);
- return true;
- }
-
- response.Error.Code = ErrorCode.InternalError;
- response.Error.Message = string.Format("{0}", result);
- return false;
- }
-
- public bool ClassifiedDelete(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- m_log.DebugFormat ("Classified Delete Request");
- return false;
- }
-
- OSDMap request = (OSDMap)json["params"];
- UUID classifiedId = new UUID(request["classifiedID"].AsString());
-
- OSDMap res = new OSDMap();
- res["result"] = OSD.FromString("success");
- response.Result = res;
-
- return true;
-
- }
-
- public bool ClassifiedInfoRequest(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- response.Error.Message = "no parameters supplied";
- m_log.DebugFormat ("Classified Info Request");
- return false;
- }
-
- string result = string.Empty;
- UserClassifiedAdd ad = new UserClassifiedAdd();
- object Ad = (object)ad;
- OSD.DeserializeMembers(ref Ad, (OSDMap)json["params"]);
- if(Service.ClassifiedInfoRequest(ref ad, ref result))
- {
- response.Result = OSD.SerializeMembers(ad);
- return true;
- }
-
- response.Error.Code = ErrorCode.InternalError;
- response.Error.Message = string.Format("{0}", result);
- return false;
- }
- #endregion Classifieds
-
- #region Picks
- public bool AvatarPicksRequest(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- m_log.DebugFormat ("Avatar Picks Request");
- return false;
- }
-
- OSDMap request = (OSDMap)json["params"];
- UUID creatorId = new UUID(request["creatorId"].AsString());
-
-
- OSDArray data = (OSDArray) Service.AvatarPicksRequest(creatorId);
- response.Result = data;
-
- return true;
- }
-
- public bool PickInfoRequest(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- response.Error.Message = "no parameters supplied";
- m_log.DebugFormat ("Avatar Picks Info Request");
- return false;
- }
-
- string result = string.Empty;
- UserProfilePick pick = new UserProfilePick();
- object Pick = (object)pick;
- OSD.DeserializeMembers(ref Pick, (OSDMap)json["params"]);
- if(Service.PickInfoRequest(ref pick, ref result))
- {
- response.Result = OSD.SerializeMembers(pick);
- return true;
- }
-
- response.Error.Code = ErrorCode.InternalError;
- response.Error.Message = string.Format("{0}", result);
- return false;
- }
-
- public bool PicksUpdate(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- response.Error.Message = "no parameters supplied";
- m_log.DebugFormat ("Avatar Picks Update Request");
- return false;
- }
-
- string result = string.Empty;
- UserProfilePick pick = new UserProfilePick();
- object Pick = (object)pick;
- OSD.DeserializeMembers(ref Pick, (OSDMap)json["params"]);
- if(Service.PicksUpdate(ref pick, ref result))
- {
- response.Result = OSD.SerializeMembers(pick);
- return true;
- }
-
- response.Error.Code = ErrorCode.InternalError;
- response.Error.Message = "unable to update pick";
-
- return false;
- }
-
- public bool PicksDelete(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- m_log.DebugFormat ("Avatar Picks Delete Request");
- return false;
- }
-
- OSDMap request = (OSDMap)json["params"];
- UUID pickId = new UUID(request["pickId"].AsString());
- if(Service.PicksDelete(pickId))
- return true;
-
- response.Error.Code = ErrorCode.InternalError;
- response.Error.Message = "data error removing record";
- return false;
- }
- #endregion Picks
-
- #region Notes
- public bool AvatarNotesRequest(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- response.Error.Message = "Params missing";
- m_log.DebugFormat ("Avatar Notes Request");
- return false;
- }
-
- string result = string.Empty;
- UserProfileNotes note = new UserProfileNotes();
- object Note = (object)note;
- OSD.DeserializeMembers(ref Note, (OSDMap)json["params"]);
- if(Service.AvatarNotesRequest(ref note))
- {
- response.Result = OSD.SerializeMembers(note);
- return true;
- }
-
- object Notes = (object) note;
- OSD.DeserializeMembers(ref Notes, (OSDMap)json["params"]);
- return true;
- }
-
- public bool NotesUpdate(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- response.Error.Message = "No parameters";
- m_log.DebugFormat ("Avatar Notes Update Request");
- return false;
- }
-
- string result = string.Empty;
- UserProfileNotes note = new UserProfileNotes();
- object Notes = (object) note;
- OSD.DeserializeMembers(ref Notes, (OSDMap)json["params"]);
- if(Service.NotesUpdate(ref note, ref result))
- {
- response.Result = OSD.SerializeMembers(note);
- return true;
- }
- return true;
- }
- #endregion Notes
-
- #region Profile Properties
- public bool AvatarPropertiesRequest(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- response.Error.Message = "no parameters supplied";
- m_log.DebugFormat ("Avatar Properties Request");
- return false;
- }
-
- string result = string.Empty;
- UserProfileProperties props = new UserProfileProperties();
- object Props = (object)props;
- OSD.DeserializeMembers(ref Props, (OSDMap)json["params"]);
- if(Service.AvatarPropertiesRequest(ref props, ref result))
- {
- response.Result = OSD.SerializeMembers(props);
- return true;
- }
-
- response.Error.Code = ErrorCode.InternalError;
- response.Error.Message = string.Format("{0}", result);
- return false;
- }
-
- public bool AvatarPropertiesUpdate(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- response.Error.Message = "no parameters supplied";
- m_log.DebugFormat ("Avatar Properties Update Request");
- return false;
- }
-
- string result = string.Empty;
- UserProfileProperties props = new UserProfileProperties();
- object Props = (object)props;
- OSD.DeserializeMembers(ref Props, (OSDMap)json["params"]);
- if(Service.AvatarPropertiesUpdate(ref props, ref result))
- {
- response.Result = OSD.SerializeMembers(props);
- return true;
- }
-
- response.Error.Code = ErrorCode.InternalError;
- response.Error.Message = string.Format("{0}", result);
- return false;
- }
- #endregion Profile Properties
-
- #region Interests
- public bool AvatarInterestsUpdate(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- response.Error.Message = "no parameters supplied";
- m_log.DebugFormat ("Avatar Interests Update Request");
- return false;
- }
-
- string result = string.Empty;
- UserProfileProperties props = new UserProfileProperties();
- object Props = (object)props;
- OSD.DeserializeMembers(ref Props, (OSDMap)json["params"]);
- if(Service.AvatarInterestsUpdate(props, ref result))
- {
- response.Result = OSD.SerializeMembers(props);
- return true;
- }
-
- response.Error.Code = ErrorCode.InternalError;
- response.Error.Message = string.Format("{0}", result);
- return false;
- }
- #endregion Interests
- #region Utility
- public bool AvatarImageAssetsRequest(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- m_log.DebugFormat ("Avatar Image Assets Request");
- return false;
- }
-
- OSDMap request = (OSDMap)json["params"];
- UUID avatarId = new UUID(request["avatarId"].AsString());
- OSDArray data = (OSDArray) Service.AvatarImageAssetsRequest(avatarId);
- response.Result = data;
-
- return true;
- }
- #endregion Utiltiy
- #region UserData
- public bool RequestUserAppData(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- response.Error.Message = "no parameters supplied";
- m_log.DebugFormat ("User Application Service URL Request: No Parameters!");
- return false;
- }
-
- string result = string.Empty;
- UserAppData props = new UserAppData();
- object Props = (object)props;
- OSD.DeserializeMembers(ref Props, (OSDMap)json["params"]);
- if(Service.RequestUserAppData(ref props, ref result))
- {
- OSDMap res = new OSDMap();
- res["result"] = OSD.FromString("success");
- res["token"] = OSD.FromString (result);
- response.Result = res;
-
- return true;
- }
-
- response.Error.Code = ErrorCode.InternalError;
- response.Error.Message = string.Format("{0}", result);
- return false;
- }
-
- public bool UpdateUserAppData(OSDMap json, ref JsonRpcResponse response)
- {
- if(!json.ContainsKey("params"))
- {
- response.Error.Code = ErrorCode.ParseError;
- response.Error.Message = "no parameters supplied";
- m_log.DebugFormat ("User App Data Update Request");
- return false;
- }
-
- string result = string.Empty;
- UserAppData props = new UserAppData();
- object Props = (object)props;
- OSD.DeserializeMembers(ref Props, (OSDMap)json["params"]);
- if(Service.SetUserAppData(props, ref result))
- {
- response.Result = OSD.SerializeMembers(props);
- return true;
- }
-
- response.Error.Code = ErrorCode.InternalError;
- response.Error.Message = string.Format("{0}", result);
- return false;
- }
- #endregion UserData
- }
- }
|