123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- /*
- * 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.Net;
- using System.Reflection;
- using System.Collections.Generic;
- using OpenMetaverse;
- using OpenMetaverse.StructuredData;
- using OpenSim.Region.Framework.Scenes;
- using OpenSim.Region.Framework.Interfaces;
- using OpenSim.Framework;
- using OpenSim.Framework.Servers.HttpServer;
- using Nini.Config;
- using log4net;
- using Mono.Addins;
- using Caps = OpenSim.Framework.Capabilities.Caps;
- using OSDMap = OpenMetaverse.StructuredData.OSDMap;
- namespace OpenSim.Region.OptionalModules.ViewerSupport
- {
- [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "DynamicMenu")]
- public class DynamicMenuModule : INonSharedRegionModule, IDynamicMenuModule
- {
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- private class MenuItemData
- {
- public string Title;
- public UUID AgentID;
- public InsertLocation Location;
- public UserMode Mode;
- public CustomMenuHandler Handler;
- }
- private Dictionary<UUID, List<MenuItemData>> m_menuItems =
- new Dictionary<UUID, List<MenuItemData>>();
- private Scene m_scene;
- public string Name
- {
- get { return "DynamicMenuModule"; }
- }
- public Type ReplaceableInterface
- {
- get { return null; }
- }
- public void Initialise(IConfigSource config)
- {
- }
- public void Close()
- {
- }
- public void AddRegion(Scene scene)
- {
- m_scene = scene;
- scene.EventManager.OnRegisterCaps += OnRegisterCaps;
- m_scene.RegisterModuleInterface<IDynamicMenuModule>(this);
- }
- public void RegionLoaded(Scene scene)
- {
- ISimulatorFeaturesModule featuresModule = m_scene.RequestModuleInterface<ISimulatorFeaturesModule>();
- if (featuresModule != null)
- featuresModule.OnSimulatorFeaturesRequest += OnSimulatorFeaturesRequest;
- }
- public void RemoveRegion(Scene scene)
- {
- }
- private void OnSimulatorFeaturesRequest(UUID agentID, ref OSDMap features)
- {
- OSD menus = new OSDMap();
- if (features.ContainsKey("menus"))
- menus = features["menus"];
- OSDMap agent = new OSDMap();
- OSDMap world = new OSDMap();
- OSDMap tools = new OSDMap();
- OSDMap advanced = new OSDMap();
- OSDMap admin = new OSDMap();
- if (((OSDMap)menus).ContainsKey("agent"))
- agent = (OSDMap)((OSDMap)menus)["agent"];
- if (((OSDMap)menus).ContainsKey("world"))
- world = (OSDMap)((OSDMap)menus)["world"];
- if (((OSDMap)menus).ContainsKey("tools"))
- tools = (OSDMap)((OSDMap)menus)["tools"];
- if (((OSDMap)menus).ContainsKey("advanced"))
- advanced = (OSDMap)((OSDMap)menus)["advanced"];
- if (((OSDMap)menus).ContainsKey("admin"))
- admin = (OSDMap)((OSDMap)menus)["admin"];
- if (m_menuItems.ContainsKey(UUID.Zero))
- {
- foreach (MenuItemData d in m_menuItems[UUID.Zero])
- {
- if (!m_scene.Permissions.IsGod(agentID))
- {
- if (d.Mode == UserMode.RegionManager && (!m_scene.Permissions.IsAdministrator(agentID)))
- continue;
- }
- OSDMap loc = null;
- switch (d.Location)
- {
- case InsertLocation.Agent:
- loc = agent;
- break;
- case InsertLocation.World:
- loc = world;
- break;
- case InsertLocation.Tools:
- loc = tools;
- break;
- case InsertLocation.Advanced:
- loc = advanced;
- break;
- case InsertLocation.Admin:
- loc = admin;
- break;
- }
- if (loc == null)
- continue;
- loc[d.Title] = OSD.FromString(d.Title);
- }
- }
- if (m_menuItems.ContainsKey(agentID))
- {
- foreach (MenuItemData d in m_menuItems[agentID])
- {
- if (d.Mode == UserMode.God && (!m_scene.Permissions.IsGod(agentID)))
- continue;
- OSDMap loc = null;
- switch (d.Location)
- {
- case InsertLocation.Agent:
- loc = agent;
- break;
- case InsertLocation.World:
- loc = world;
- break;
- case InsertLocation.Tools:
- loc = tools;
- break;
- case InsertLocation.Advanced:
- loc = advanced;
- break;
- case InsertLocation.Admin:
- loc = admin;
- break;
- }
- if (loc == null)
- continue;
- loc[d.Title] = OSD.FromString(d.Title);
- }
- }
- ((OSDMap)menus)["agent"] = agent;
- ((OSDMap)menus)["world"] = world;
- ((OSDMap)menus)["tools"] = tools;
- ((OSDMap)menus)["advanced"] = advanced;
- ((OSDMap)menus)["admin"] = admin;
- features["menus"] = menus;
- }
- private void OnRegisterCaps(UUID agentID, Caps caps)
- {
- caps.RegisterSimpleHandler("CustomMenuAction", new MenuActionHandler("/" + UUID.Random(), "CustomMenuAction", agentID, this, m_scene));
- }
- internal void HandleMenuSelection(string action, UUID agentID, List<uint> selection)
- {
- if (m_menuItems.ContainsKey(agentID))
- {
- foreach (MenuItemData d in m_menuItems[agentID])
- {
- if (d.Title == action)
- d.Handler(action, agentID, selection);
- }
- }
- if (m_menuItems.ContainsKey(UUID.Zero))
- {
- foreach (MenuItemData d in m_menuItems[UUID.Zero])
- {
- if (d.Title == action)
- d.Handler(action, agentID, selection);
- }
- }
- }
- public void AddMenuItem(string title, InsertLocation location, UserMode mode, CustomMenuHandler handler)
- {
- AddMenuItem(UUID.Zero, title, location, mode, handler);
- }
- public void AddMenuItem(UUID agentID, string title, InsertLocation location, UserMode mode, CustomMenuHandler handler)
- {
- if (!m_menuItems.ContainsKey(agentID))
- m_menuItems[agentID] = new List<MenuItemData>();
- m_menuItems[agentID].Add(new MenuItemData() { Title = title, AgentID = agentID, Location = location, Mode = mode, Handler = handler });
- }
- public void RemoveMenuItem(string action)
- {
- foreach (KeyValuePair<UUID,List< MenuItemData>> kvp in m_menuItems)
- {
- List<MenuItemData> pendingDeletes = new List<MenuItemData>();
- foreach (MenuItemData d in kvp.Value)
- {
- if (d.Title == action)
- pendingDeletes.Add(d);
- }
- foreach (MenuItemData d in pendingDeletes)
- kvp.Value.Remove(d);
- }
- }
- }
- public class MenuActionHandler : SimpleOSDMapHandler
- {
- private static readonly ILog m_log =
- LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- private UUID m_agentID;
- private Scene m_scene;
- private DynamicMenuModule m_module;
- public MenuActionHandler(string path, string name, UUID agentID, DynamicMenuModule module, Scene scene)
- :base("POST", path)
- {
- m_agentID = agentID;
- m_scene = scene;
- m_module = module;
- }
- protected override void ProcessRequest(IOSHttpRequest httpRequest, IOSHttpResponse httpResponse, OSDMap osd)
- {
- string action = osd["action"].AsString();
- OSDArray selection = (OSDArray)osd["selection"];
- List<uint> sel = new List<uint>();
- for (int i = 0 ; i < selection.Count ; i++)
- sel.Add(selection[i].AsUInteger());
- Util.FireAndForget(
- x => { m_module.HandleMenuSelection(action, m_agentID, sel); }, null, "DynamicMenuModule.HandleMenuSelection");
- httpResponse.StatusCode = (int)HttpStatusCode.OK;
- //httpResponse.RawBuffer = Util.UTF8NBGetbytes("<llsd></llsd>");
- }
- }
- }
|