aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/InterGrid/OGSRadmin.cs
blob: 2d14b41ce0eea96e27cbb68cb8ec37952917703d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
using System;
using System.Collections;
using System.Collections.Generic;
using System.Net;
using System.Reflection;
using System.Text;
using log4net;
using Nini.Config;
using Nwc.XmlRpc;
using OpenSim.Framework.Communications;
using OpenSim.Region.Framework.Interfaces;
using OpenSim.Region.Framework.Scenes;

namespace OpenSim.Region.CoreModules.InterGrid
{
    public class OGSRadmin : IRegionModule 
    {
        private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
        private readonly List<Scene> m_scenes = new List<Scene>();
        private CommunicationsManager m_com;
        private IConfigSource m_settings;

        #region Implementation of IRegionModuleBase

        public string Name
        {
            get { return "OGS Supporting RAdmin"; }
        }


        public void Initialise(IConfigSource source)
        {
            m_settings = source;
        }

        public void Close()
        {

        }

        public void AddRegion(Scene scene)
        {
            lock(m_scenes)
                m_scenes.Add(scene);
        }

        public void RemoveRegion(Scene scene)
        {
            lock (m_scenes)
                m_scenes.Remove(scene);
        }

        public void RegionLoaded(Scene scene)
        {
            
        }

        public void PostInitialise()
        {
            if (m_settings.Configs["Startup"].GetBoolean("gridmode", false))
            {
                m_com = m_scenes[0].CommsManager;
                m_com.HttpServer.AddXmlRPCHandler("grid_message", GridWideMessage);
            }
        }

        #endregion

        #region IRegionModule

        public void Initialise(Scene scene, IConfigSource source)
        {
            lock (m_scenes)
                m_scenes.Add(scene);
        }

        public bool IsSharedModule
        {
            get { return true; }
        }

        #endregion

        public XmlRpcResponse GridWideMessage(XmlRpcRequest req, IPEndPoint remoteClient)
        {
            XmlRpcResponse response = new XmlRpcResponse();
            Hashtable responseData = new Hashtable();

            Hashtable requestData = (Hashtable)req.Params[0];

            if ((!requestData.Contains("password") || (string)requestData["password"] != m_com.NetworkServersInfo.GridRecvKey))
            {
                responseData["accepted"] = false;
                responseData["success"] = false;
                responseData["error"] = "Invalid Key";
                response.Value = responseData;
                return response;
            }

            string message = (string)requestData["message"];
            m_log.InfoFormat("[RADMIN]: Broadcasting: {0}", message);

            lock(m_scenes)
                foreach (Scene scene in m_scenes)
                {
                    IDialogModule dialogModule = scene.RequestModuleInterface<IDialogModule>();
                    if (dialogModule != null)
                        dialogModule.SendGeneralAlert(message);
                }

            responseData["accepted"] = true;
            responseData["success"] = true;
            response.Value = responseData;

            return response;
        }
    }
}