コード例 #1
0
        /// <summary>
        ///     Received from the viewer if a user has changed the url of a media texture.
        /// </summary>
        /// <param name="request"></param>
        /// <param name="path"></param>
        /// <param name="httpRequest"></param>
        /// <param name="httpResponse"></param>
        /// <returns></returns>
        protected byte[] HandleObjectMediaNavigateMessage(string path, Stream request, OSHttpRequest httpRequest,
                                                          OSHttpResponse httpResponse)
        {
//            MainConsole.Instance.DebugFormat("[MOAP]: Got ObjectMediaNavigate request [{0}]", request);

            OSDMap osd = (OSDMap)OSDParser.DeserializeLLSDXml(HttpServerHandlerHelpers.ReadFully(request));
            ObjectMediaNavigateMessage omn = new ObjectMediaNavigateMessage();

            omn.Deserialize(osd);

            UUID primId = omn.PrimID;

            ISceneChildEntity part = m_scene.GetSceneObjectPart(primId);

            if (null == part)
            {
                MainConsole.Instance.WarnFormat(
                    "[MOAP]: Received an ObjectMediaNavigateMessage for prim {0} but this doesn't exist in region {1}",
                    primId, m_scene.RegionInfo.RegionName);
                return(MainServer.BlankResponse);
            }

            UUID agentId = default(UUID);

            lock (m_omuCapUsers)
                agentId = m_omuCapUsers[path];

            if (!m_scene.Permissions.CanInteractWithPrimMedia(agentId, part.UUID, omn.Face))
            {
                return(MainServer.BlankResponse);
            }

//            MainConsole.Instance.DebugFormat(
//                "[MOAP]: Received request to update media entry for face {0} on prim {1} {2} to {3}",
//                omn.Face, part.Name, part.UUID, omn.URL);

            // If media has never been set for this prim, then just return.
            if (null == part.Shape.Media)
            {
                return(MainServer.BlankResponse);
            }

            MediaEntry me = null;

            lock (part.Shape.Media)
                me = part.Shape.Media[omn.Face];

            // Do the same if media has not been set up for a specific face
            if (null == me)
            {
                return(MainServer.BlankResponse);
            }

            if (me.EnableWhiteList)
            {
                if (!CheckUrlAgainstWhitelist(omn.URL, me.WhiteList))
                {
//                    MainConsole.Instance.DebugFormat(
//                        "[MOAP]: Blocking change of face {0} on prim {1} {2} to {3} since it's not on the enabled whitelist",
//                        omn.Face, part.Name, part.UUID, omn.URL);

                    return(MainServer.BlankResponse);
                }
            }

            me.CurrentURL = omn.URL;

            UpdateMediaUrl(part, agentId);

            part.ScheduleUpdate(PrimUpdateFlags.FullUpdate);

            part.TriggerScriptChangedEvent(Changed.MEDIA);

            return(OSDParser.SerializeLLSDXmlBytes(new OSD()));
        }
コード例 #2
0
ファイル: MoapModule.cs プロジェクト: laughingpain/opensim
        /// <summary>
        /// Received from the viewer if a user has changed the url of a media texture.
        /// </summary>
        /// <param name="request"></param>
        /// <param name="path"></param>
        /// <param name="param"></param>
        /// <param name="httpRequest">/param>
        /// <param name="httpResponse">/param>
        /// <returns></returns>
        protected void HandleObjectMediaNavigateMessage(IOSHttpRequest httpRequest, IOSHttpResponse httpResponse, UUID agentId)
        {
//            m_log.DebugFormat("[MOAP]: Got ObjectMediaNavigate request [{0}]", request);

            try
            {
                OSDMap osd = (OSDMap)OSDParser.DeserializeLLSDXml(httpRequest.InputStream);
                ObjectMediaNavigateMessage omn = new ObjectMediaNavigateMessage();
                omn.Deserialize(osd);

                UUID primId = omn.PrimID;

                SceneObjectPart part = m_scene.GetSceneObjectPart(primId);

                bool       bad = true;
                MediaEntry me  = null;

                while (true)
                {
                    if (null == part)
                    {
                        m_log.WarnFormat(
                            "[MOAP]: Received an ObjectMediaNavigateMessage for prim {0} but this doesn't exist in region {1}",
                            primId, m_scene.RegionInfo.RegionName);
                    }

                    if (!m_scene.Permissions.CanInteractWithPrimMedia(agentId, part.UUID, omn.Face))
                    {
                        break;
                    }

                    //m_log.DebugFormat(
                    //    "[MOAP]: Received request to update media entry for face {0} on prim {1} {2} to {3}",
                    //        omn.Face, part.Name, part.UUID, omn.URL);

                    // If media has never been set for this prim, then just return.
                    if (null == part.Shape.Media)
                    {
                        break;
                    }

                    lock (part.Shape.Media)
                        me = part.Shape.Media[omn.Face];

                    // Do the same if media has not been set up for a specific face
                    if (null == me)
                    {
                        break;
                    }

                    if (me.EnableWhiteList)
                    {
                        if (!CheckUrlAgainstWhitelist(omn.URL, me.WhiteList))
                        {
                            //m_log.DebugFormat(
                            //    "[MOAP]: Blocking change of face {0} on prim {1} {2} to {3} since it's not on the enabled whitelist",
                            //    omn.Face, part.Name, part.UUID, omn.URL);
                            break;
                        }
                    }
                    bad = false;
                    break;
                }

                if (bad)
                {
                    httpResponse.StatusCode = (int)HttpStatusCode.BadRequest;
                    return;
                }

                me.CurrentURL = omn.URL;

                UpdateMediaUrl(part, agentId);

                part.ParentGroup.HasGroupChanged = true;
                part.ScheduleFullUpdate();

                part.TriggerScriptChangedEvent(Changed.MEDIA);

                httpResponse.RawBuffer  = Util.UTF8.GetBytes(OSDParser.SerializeLLSDXmlString(new OSD()));
                httpResponse.StatusCode = (int)HttpStatusCode.OK;
            }
            catch
            {
                httpResponse.StatusCode = (int)HttpStatusCode.BadRequest;
                httpResponse.RawBuffer  = null;
            }
        }
コード例 #3
0
        /// <summary>
        /// Return a decoded capabilities message as a strongly typed object
        /// </summary>
        /// <param name="eventName">A string containing the name of the capabilities message key</param>
        /// <param name="map">An <see cref="OSDMap"/> to decode</param>
        /// <returns>A strongly typed object containing the decoded information from the capabilities message, or null
        /// if no existing Message object exists for the specified event</returns>
        public static IMessage DecodeEvent(string eventName, OSDMap map)
        {
            IMessage message = null;

            switch (eventName)
            {
            case "AgentGroupDataUpdate": message = new AgentGroupDataUpdateMessage(); break;

            case "AvatarGroupsReply": message = new AgentGroupDataUpdateMessage(); break;     // OpenSim sends the above with the wrong? key

            case "ParcelProperties": message = new ParcelPropertiesMessage(); break;

            case "ParcelObjectOwnersReply": message = new ParcelObjectOwnersReplyMessage(); break;

            case "TeleportFinish": message = new TeleportFinishMessage(); break;

            case "EnableSimulator": message = new EnableSimulatorMessage(); break;

            case "ParcelPropertiesUpdate": message = new ParcelPropertiesUpdateMessage(); break;

            case "EstablishAgentCommunication": message = new EstablishAgentCommunicationMessage(); break;

            case "ChatterBoxInvitation": message = new ChatterBoxInvitationMessage(); break;

            case "ChatterBoxSessionEventReply": message = new ChatterboxSessionEventReplyMessage(); break;

            case "ChatterBoxSessionStartReply": message = new ChatterBoxSessionStartReplyMessage(); break;

            case "ChatterBoxSessionAgentListUpdates": message = new ChatterBoxSessionAgentListUpdatesMessage(); break;

            case "RequiredVoiceVersion": message = new RequiredVoiceVersionMessage(); break;

            case "MapLayer": message = new MapLayerMessage(); break;

            case "ChatSessionRequest": message = new ChatSessionRequestMessage(); break;

            case "CopyInventoryFromNotecard": message = new CopyInventoryFromNotecardMessage(); break;

            case "ProvisionVoiceAccountRequest": message = new ProvisionVoiceAccountRequestMessage(); break;

            case "Viewerstats": message = new ViewerStatsMessage(); break;

            case "UpdateAgentLanguage": message = new UpdateAgentLanguageMessage(); break;

            case "RemoteParcelRequest": message = new RemoteParcelRequestMessage(); break;

            case "UpdateScriptTask": message = new UpdateScriptTaskMessage(); break;

            case "UpdateScriptAgent": message = new UpdateScriptAgentMessage(); break;

            case "SendPostcard": message = new SendPostcardMessage(); break;

            case "UpdateGestureAgentInventory": message = new UpdateGestureAgentInventoryMessage(); break;

            case "UpdateNotecardAgentInventory": message = new UpdateNotecardAgentInventoryMessage(); break;

            case "LandStatReply": message = new LandStatReplyMessage(); break;

            case "ParcelVoiceInfoRequest": message = new ParcelVoiceInfoRequestMessage(); break;

            case "ViewerStats": message = new ViewerStatsMessage(); break;

            case "EventQueueGet": message = new EventQueueGetMessage(); break;

            case "CrossedRegion": message = new CrossedRegionMessage(); break;

            case "TeleportFailed": message = new TeleportFailedMessage(); break;

            case "PlacesReply": message = new PlacesReplyMessage(); break;

            case "UpdateAgentInformation": message = new UpdateAgentInformationMessage(); break;

            case "DirLandReply": message = new DirLandReplyMessage(); break;

            case "ScriptRunningReply": message = new ScriptRunningReplyMessage(); break;

            case "SearchStatRequest": message = new SearchStatRequestMessage(); break;

            case "AgentDropGroup": message = new AgentDropGroupMessage(); break;

            case "AgentStateUpdate": message = new AgentStateUpdateMessage(); break;

            case "ForceCloseChatterBoxSession": message = new ForceCloseChatterBoxSessionMessage(); break;

            case "UploadBakedTexture": message = new UploadBakedTextureMessage(); break;

            case "RegionInfo": message = new RegionInfoMessage(); break;

            case "ObjectMediaNavigate": message = new ObjectMediaNavigateMessage(); break;

            case "ObjectMedia": message = new ObjectMediaMessage(); break;

            case "AttachmentResources": message = AttachmentResourcesMessage.GetMessageHandler(map); break;

            case "LandResources": message = LandResourcesMessage.GetMessageHandler(map); break;

            case "GetDisplayNames": message = new GetDisplayNamesMessage(); break;

            case "SetDisplayName": message = new SetDisplayNameMessage(); break;

            case "SetDisplayNameReply": message = new SetDisplayNameReplyMessage(); break;

            case "DisplayNameUpdate": message = new DisplayNameUpdateMessage(); break;

            //case "ProductInfoRequest": message = new ProductInfoRequestMessage(); break;
            case "ObjectPhysicsProperties": message = new ObjectPhysicsPropertiesMessage(); break;

            case "BulkUpdateInventory": message = new BulkUpdateInventoryMessage(); break;

                // Capabilities TODO:
                // DispatchRegionInfo
                // EstateChangeInfo
                // EventQueueGet
                // FetchInventoryDescendents
                // GroupProposalBallot
                // MapLayerGod
                // NewFileAgentInventory
                // RequestTextureDownload
                // SearchStatRequest
                // SearchStatTracking
                // SendUserReport
                // SendUserReportWithScreenshot
                // ServerReleaseNotes
                // StartGroupProposal
                // UpdateGestureTaskInventory
                // UpdateNotecardTaskInventory
                // ViewerStartAuction
                // UntrustedSimulatorMessage
            }

            if (message != null)
            {
                try
                {
                    message.Deserialize(map);
                    return(message);
                }
                catch (Exception e)
                {
                    Logger.Log("Exception while trying to Deserialize " + eventName + ":" + e.Message + ": " + e.StackTrace, Helpers.LogLevel.Error);
                }

                return(null);
            }
            else
            {
                return(null);
            }
        }