ConciergeModule.cs 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.Collections;
  29. using System.Collections.Generic;
  30. using System.IO;
  31. using System.Net;
  32. using System.Net.Sockets;
  33. using System.Reflection;
  34. using System.Text;
  35. using System.Text.RegularExpressions;
  36. using System.Threading;
  37. using log4net;
  38. using Mono.Addins;
  39. using Nini.Config;
  40. using Nwc.XmlRpc;
  41. using OpenMetaverse;
  42. using OpenSim.Framework;
  43. using OpenSim.Framework.Servers;
  44. using OpenSim.Region.Framework.Interfaces;
  45. using OpenSim.Region.Framework.Scenes;
  46. using OpenSim.Region.CoreModules.Avatar.Chat;
  47. namespace OpenSim.Region.OptionalModules.Avatar.Concierge
  48. {
  49. [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "ConciergeModule")]
  50. public class ConciergeModule : ChatModule, ISharedRegionModule
  51. {
  52. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  53. // private const int DEBUG_CHANNEL = 2147483647; use base value
  54. private new List<IScene> m_scenes = new List<IScene>();
  55. private List<IScene> m_conciergedScenes = new List<IScene>();
  56. private bool m_replacingChatModule = false;
  57. private string m_whoami = "conferencier";
  58. private Regex m_regions = null;
  59. private string m_welcomes = null;
  60. private int m_conciergeChannel = 42;
  61. private string m_announceEntering = "{0} enters {1} (now {2} visitors in this region)";
  62. private string m_announceLeaving = "{0} leaves {1} (back to {2} visitors in this region)";
  63. private string m_xmlRpcPassword = String.Empty;
  64. private string m_brokerURI = String.Empty;
  65. private int m_brokerUpdateTimeout = 300;
  66. internal new object m_syncy = new object();
  67. internal new bool m_enabled = false;
  68. #region ISharedRegionModule Members
  69. public override void Initialise(IConfigSource configSource)
  70. {
  71. IConfig config = configSource.Configs["Concierge"];
  72. if (config == null)
  73. return;
  74. if (!config.GetBoolean("enabled", false))
  75. return;
  76. m_enabled = true;
  77. // check whether ChatModule has been disabled: if yes,
  78. // then we'll "stand in"
  79. try
  80. {
  81. if (configSource.Configs["Chat"] == null)
  82. {
  83. // if Chat module has not been configured it's
  84. // enabled by default, so we are not going to
  85. // replace it.
  86. m_replacingChatModule = false;
  87. }
  88. else
  89. {
  90. m_replacingChatModule = !configSource.Configs["Chat"].GetBoolean("enabled", true);
  91. }
  92. }
  93. catch (Exception)
  94. {
  95. m_replacingChatModule = false;
  96. }
  97. m_log.InfoFormat("[Concierge] {0} ChatModule", m_replacingChatModule ? "replacing" : "not replacing");
  98. // take note of concierge channel and of identity
  99. m_conciergeChannel = configSource.Configs["Concierge"].GetInt("concierge_channel", m_conciergeChannel);
  100. m_whoami = config.GetString("whoami", "conferencier");
  101. m_welcomes = config.GetString("welcomes", m_welcomes);
  102. m_announceEntering = config.GetString("announce_entering", m_announceEntering);
  103. m_announceLeaving = config.GetString("announce_leaving", m_announceLeaving);
  104. m_xmlRpcPassword = config.GetString("password", m_xmlRpcPassword);
  105. m_brokerURI = config.GetString("broker", m_brokerURI);
  106. m_brokerUpdateTimeout = config.GetInt("broker_timeout", m_brokerUpdateTimeout);
  107. m_log.InfoFormat("[Concierge] reporting as \"{0}\" to our users", m_whoami);
  108. // calculate regions Regex
  109. if (m_regions == null)
  110. {
  111. string regions = config.GetString("regions", String.Empty);
  112. if (!String.IsNullOrEmpty(regions))
  113. {
  114. m_regions = new Regex(@regions, RegexOptions.Compiled | RegexOptions.IgnoreCase);
  115. }
  116. }
  117. }
  118. public override void AddRegion(Scene scene)
  119. {
  120. if (!m_enabled) return;
  121. MainServer.Instance.AddXmlRPCHandler("concierge_update_welcome", XmlRpcUpdateWelcomeMethod, false);
  122. lock (m_syncy)
  123. {
  124. if (!m_scenes.Contains(scene))
  125. {
  126. m_scenes.Add(scene);
  127. if (m_regions == null || m_regions.IsMatch(scene.RegionInfo.RegionName))
  128. m_conciergedScenes.Add(scene);
  129. // subscribe to NewClient events
  130. scene.EventManager.OnNewClient += OnNewClient;
  131. // subscribe to *Chat events
  132. scene.EventManager.OnChatFromWorld += OnChatFromWorld;
  133. if (!m_replacingChatModule)
  134. scene.EventManager.OnChatFromClient += OnChatFromClient;
  135. scene.EventManager.OnChatBroadcast += OnChatBroadcast;
  136. // subscribe to agent change events
  137. scene.EventManager.OnMakeRootAgent += OnMakeRootAgent;
  138. scene.EventManager.OnMakeChildAgent += OnMakeChildAgent;
  139. }
  140. }
  141. m_log.InfoFormat("[Concierge]: initialized for {0}", scene.RegionInfo.RegionName);
  142. }
  143. public override void RemoveRegion(Scene scene)
  144. {
  145. if (!m_enabled) return;
  146. MainServer.Instance.RemoveXmlRPCHandler("concierge_update_welcome");
  147. lock (m_syncy)
  148. {
  149. // unsubscribe from NewClient events
  150. scene.EventManager.OnNewClient -= OnNewClient;
  151. // unsubscribe from *Chat events
  152. scene.EventManager.OnChatFromWorld -= OnChatFromWorld;
  153. if (!m_replacingChatModule)
  154. scene.EventManager.OnChatFromClient -= OnChatFromClient;
  155. scene.EventManager.OnChatBroadcast -= OnChatBroadcast;
  156. // unsubscribe from agent change events
  157. scene.EventManager.OnMakeRootAgent -= OnMakeRootAgent;
  158. scene.EventManager.OnMakeChildAgent -= OnMakeChildAgent;
  159. if (m_scenes.Contains(scene))
  160. {
  161. m_scenes.Remove(scene);
  162. }
  163. if (m_conciergedScenes.Contains(scene))
  164. {
  165. m_conciergedScenes.Remove(scene);
  166. }
  167. }
  168. m_log.InfoFormat("[Concierge]: removed {0}", scene.RegionInfo.RegionName);
  169. }
  170. public override void PostInitialise()
  171. {
  172. }
  173. public override void Close()
  174. {
  175. }
  176. new public Type ReplaceableInterface
  177. {
  178. get { return null; }
  179. }
  180. public override string Name
  181. {
  182. get { return "ConciergeModule"; }
  183. }
  184. #endregion
  185. #region ISimChat Members
  186. public override void OnChatBroadcast(Object sender, OSChatMessage c)
  187. {
  188. if (m_replacingChatModule)
  189. {
  190. // distribute chat message to each and every avatar in
  191. // the region
  192. base.OnChatBroadcast(sender, c);
  193. }
  194. // TODO: capture logic
  195. return;
  196. }
  197. public override void OnChatFromClient(Object sender, OSChatMessage c)
  198. {
  199. if (m_replacingChatModule)
  200. {
  201. // replacing ChatModule: need to redistribute
  202. // ChatFromClient to interested subscribers
  203. Scene scene = (Scene)c.Scene;
  204. scene.EventManager.TriggerOnChatFromClient(sender, c);
  205. if (m_conciergedScenes.Contains(c.Scene))
  206. {
  207. // when we are replacing ChatModule, we treat
  208. // OnChatFromClient like OnChatBroadcast for
  209. // concierged regions, effectively extending the
  210. // range of chat to cover the whole
  211. // region. however, we don't do this for whisper
  212. // (got to have some privacy)
  213. if (c.Type != ChatTypeEnum.Whisper)
  214. {
  215. base.OnChatBroadcast(sender, c);
  216. return;
  217. }
  218. }
  219. // redistribution will be done by base class
  220. base.OnChatFromClient(sender, c);
  221. }
  222. // TODO: capture chat
  223. return;
  224. }
  225. public override void OnChatFromWorld(Object sender, OSChatMessage c)
  226. {
  227. if (m_replacingChatModule)
  228. {
  229. if (m_conciergedScenes.Contains(c.Scene))
  230. {
  231. // when we are replacing ChatModule, we treat
  232. // OnChatFromClient like OnChatBroadcast for
  233. // concierged regions, effectively extending the
  234. // range of chat to cover the whole
  235. // region. however, we don't do this for whisper
  236. // (got to have some privacy)
  237. if (c.Type != ChatTypeEnum.Whisper)
  238. {
  239. base.OnChatBroadcast(sender, c);
  240. return;
  241. }
  242. }
  243. base.OnChatFromWorld(sender, c);
  244. }
  245. return;
  246. }
  247. #endregion
  248. public override void OnNewClient(IClientAPI client)
  249. {
  250. client.OnLogout += OnClientLoggedOut;
  251. if (m_replacingChatModule)
  252. client.OnChatFromClient += OnChatFromClient;
  253. }
  254. public void OnClientLoggedOut(IClientAPI client)
  255. {
  256. client.OnLogout -= OnClientLoggedOut;
  257. client.OnConnectionClosed -= OnClientLoggedOut;
  258. if (m_conciergedScenes.Contains(client.Scene))
  259. {
  260. Scene scene = client.Scene as Scene;
  261. m_log.DebugFormat("[Concierge]: {0} logs off from {1}", client.Name, scene.RegionInfo.RegionName);
  262. AnnounceToAgentsRegion(scene, String.Format(m_announceLeaving, client.Name, scene.RegionInfo.RegionName, scene.GetRootAgentCount()));
  263. UpdateBroker(scene);
  264. }
  265. }
  266. public void OnMakeRootAgent(ScenePresence agent)
  267. {
  268. if (m_conciergedScenes.Contains(agent.Scene))
  269. {
  270. Scene scene = agent.Scene;
  271. m_log.DebugFormat("[Concierge]: {0} enters {1}", agent.Name, scene.RegionInfo.RegionName);
  272. WelcomeAvatar(agent, scene);
  273. AnnounceToAgentsRegion(scene, String.Format(m_announceEntering, agent.Name,
  274. scene.RegionInfo.RegionName, scene.GetRootAgentCount()));
  275. UpdateBroker(scene);
  276. }
  277. }
  278. public void OnMakeChildAgent(ScenePresence agent)
  279. {
  280. if (m_conciergedScenes.Contains(agent.Scene))
  281. {
  282. Scene scene = agent.Scene;
  283. m_log.DebugFormat("[Concierge]: {0} leaves {1}", agent.Name, scene.RegionInfo.RegionName);
  284. AnnounceToAgentsRegion(scene, String.Format(m_announceLeaving, agent.Name,
  285. scene.RegionInfo.RegionName, scene.GetRootAgentCount()));
  286. UpdateBroker(scene);
  287. }
  288. }
  289. internal class BrokerState
  290. {
  291. public string Uri;
  292. public string Payload;
  293. public HttpWebRequest Poster;
  294. public Timer Timer;
  295. public BrokerState(string uri, string payload, HttpWebRequest poster)
  296. {
  297. Uri = uri;
  298. Payload = payload;
  299. Poster = poster;
  300. }
  301. }
  302. protected void UpdateBroker(Scene scene)
  303. {
  304. if (String.IsNullOrEmpty(m_brokerURI))
  305. return;
  306. string uri = String.Format(m_brokerURI, scene.RegionInfo.RegionName, scene.RegionInfo.RegionID);
  307. // create XML sniplet
  308. StringBuilder list = new StringBuilder();
  309. list.Append(String.Format("<avatars count=\"{0}\" region_name=\"{1}\" region_uuid=\"{2}\" timestamp=\"{3}\">\n",
  310. scene.GetRootAgentCount(), scene.RegionInfo.RegionName,
  311. scene.RegionInfo.RegionID,
  312. DateTime.UtcNow.ToString("s")));
  313. scene.ForEachRootScenePresence(delegate(ScenePresence sp)
  314. {
  315. list.Append(String.Format(" <avatar name=\"{0}\" uuid=\"{1}\" />\n", sp.Name, sp.UUID));
  316. });
  317. list.Append("</avatars>");
  318. string payload = list.ToString();
  319. // post via REST to broker
  320. HttpWebRequest updatePost = WebRequest.Create(uri) as HttpWebRequest;
  321. updatePost.Method = "POST";
  322. updatePost.ContentType = "text/xml";
  323. updatePost.ContentLength = payload.Length;
  324. updatePost.UserAgent = "OpenSim.Concierge";
  325. BrokerState bs = new BrokerState(uri, payload, updatePost);
  326. bs.Timer = new Timer(delegate(object state)
  327. {
  328. BrokerState b = state as BrokerState;
  329. b.Poster.Abort();
  330. b.Timer.Dispose();
  331. m_log.Debug("[Concierge]: async broker POST abort due to timeout");
  332. }, bs, m_brokerUpdateTimeout * 1000, Timeout.Infinite);
  333. try
  334. {
  335. updatePost.BeginGetRequestStream(UpdateBrokerSend, bs);
  336. m_log.DebugFormat("[Concierge] async broker POST to {0} started", uri);
  337. }
  338. catch (WebException we)
  339. {
  340. m_log.ErrorFormat("[Concierge] async broker POST to {0} failed: {1}", uri, we.Status);
  341. }
  342. }
  343. private void UpdateBrokerSend(IAsyncResult result)
  344. {
  345. BrokerState bs = null;
  346. try
  347. {
  348. bs = result.AsyncState as BrokerState;
  349. string payload = bs.Payload;
  350. HttpWebRequest updatePost = bs.Poster;
  351. using (StreamWriter payloadStream = new StreamWriter(updatePost.EndGetRequestStream(result)))
  352. {
  353. payloadStream.Write(payload);
  354. payloadStream.Close();
  355. }
  356. updatePost.BeginGetResponse(UpdateBrokerDone, bs);
  357. }
  358. catch (WebException we)
  359. {
  360. m_log.DebugFormat("[Concierge]: async broker POST to {0} failed: {1}", bs.Uri, we.Status);
  361. }
  362. catch (Exception)
  363. {
  364. m_log.DebugFormat("[Concierge]: async broker POST to {0} failed", bs.Uri);
  365. }
  366. }
  367. private void UpdateBrokerDone(IAsyncResult result)
  368. {
  369. BrokerState bs = null;
  370. try
  371. {
  372. bs = result.AsyncState as BrokerState;
  373. HttpWebRequest updatePost = bs.Poster;
  374. using (HttpWebResponse response = updatePost.EndGetResponse(result) as HttpWebResponse)
  375. {
  376. m_log.DebugFormat("[Concierge] broker update: status {0}", response.StatusCode);
  377. }
  378. bs.Timer.Dispose();
  379. }
  380. catch (WebException we)
  381. {
  382. m_log.ErrorFormat("[Concierge] broker update to {0} failed with status {1}", bs.Uri, we.Status);
  383. if (null != we.Response)
  384. {
  385. using (HttpWebResponse resp = we.Response as HttpWebResponse)
  386. {
  387. m_log.ErrorFormat("[Concierge] response from {0} status code: {1}", bs.Uri, resp.StatusCode);
  388. m_log.ErrorFormat("[Concierge] response from {0} status desc: {1}", bs.Uri, resp.StatusDescription);
  389. m_log.ErrorFormat("[Concierge] response from {0} server: {1}", bs.Uri, resp.Server);
  390. if (resp.ContentLength > 0)
  391. {
  392. using(StreamReader content = new StreamReader(resp.GetResponseStream()))
  393. m_log.ErrorFormat("[Concierge] response from {0} content: {1}", bs.Uri, content.ReadToEnd());
  394. }
  395. }
  396. }
  397. }
  398. }
  399. protected void WelcomeAvatar(ScenePresence agent, Scene scene)
  400. {
  401. // welcome mechanics: check whether we have a welcomes
  402. // directory set and wether there is a region specific
  403. // welcome file there: if yes, send it to the agent
  404. if (!String.IsNullOrEmpty(m_welcomes))
  405. {
  406. string[] welcomes = new string[] {
  407. Path.Combine(m_welcomes, agent.Scene.RegionInfo.RegionName),
  408. Path.Combine(m_welcomes, "DEFAULT")};
  409. foreach (string welcome in welcomes)
  410. {
  411. if (File.Exists(welcome))
  412. {
  413. try
  414. {
  415. string[] welcomeLines = File.ReadAllLines(welcome);
  416. foreach (string l in welcomeLines)
  417. {
  418. AnnounceToAgent(agent, String.Format(l, agent.Name, scene.RegionInfo.RegionName, m_whoami));
  419. }
  420. }
  421. catch (IOException ioe)
  422. {
  423. m_log.ErrorFormat("[Concierge]: run into trouble reading welcome file {0} for region {1} for avatar {2}: {3}",
  424. welcome, scene.RegionInfo.RegionName, agent.Name, ioe);
  425. }
  426. catch (FormatException fe)
  427. {
  428. m_log.ErrorFormat("[Concierge]: welcome file {0} is malformed: {1}", welcome, fe);
  429. }
  430. }
  431. return;
  432. }
  433. m_log.DebugFormat("[Concierge]: no welcome message for region {0}", scene.RegionInfo.RegionName);
  434. }
  435. }
  436. static private Vector3 PosOfGod = new Vector3(128, 128, 9999);
  437. // protected void AnnounceToAgentsRegion(Scene scene, string msg)
  438. // {
  439. // ScenePresence agent = null;
  440. // if ((client.Scene is Scene) && (client.Scene as Scene).TryGetScenePresence(client.AgentId, out agent))
  441. // AnnounceToAgentsRegion(agent, msg);
  442. // else
  443. // m_log.DebugFormat("[Concierge]: could not find an agent for client {0}", client.Name);
  444. // }
  445. protected void AnnounceToAgentsRegion(IScene scene, string msg)
  446. {
  447. if(scene is Scene)
  448. {
  449. OSChatMessage c = new OSChatMessage()
  450. {
  451. Message = msg,
  452. Type = ChatTypeEnum.Say,
  453. Channel = 0,
  454. Position = PosOfGod,
  455. From = m_whoami,
  456. Scene = scene
  457. };
  458. (scene as Scene)?.EventManager.TriggerOnChatBroadcast(this, c);
  459. }
  460. }
  461. protected void AnnounceToAgent(ScenePresence agent, string msg)
  462. {
  463. OSChatMessage c = new OSChatMessage
  464. {
  465. Message = msg,
  466. Type = ChatTypeEnum.Say,
  467. Channel = 0,
  468. Position = PosOfGod,
  469. From = m_whoami,
  470. Scene = agent.Scene
  471. };
  472. agent.ControllingClient.SendChatMessage(
  473. msg, (byte) ChatTypeEnum.Say, PosOfGod, m_whoami, UUID.Zero, UUID.Zero,
  474. (byte)ChatSourceType.Object, (byte)ChatAudibleLevel.Fully);
  475. }
  476. private static void checkStringParameters(XmlRpcRequest request, string[] param)
  477. {
  478. Hashtable requestData = (Hashtable) request.Params[0];
  479. foreach (string p in param)
  480. {
  481. if (!requestData.Contains(p))
  482. throw new Exception(String.Format("missing string parameter {0}", p));
  483. if (String.IsNullOrEmpty((string)requestData[p]))
  484. throw new Exception(String.Format("parameter {0} is empty", p));
  485. }
  486. }
  487. public XmlRpcResponse XmlRpcUpdateWelcomeMethod(XmlRpcRequest request, IPEndPoint remoteClient)
  488. {
  489. m_log.Info("[Concierge]: processing UpdateWelcome request");
  490. XmlRpcResponse response = new XmlRpcResponse();
  491. Hashtable responseData = new Hashtable();
  492. try
  493. {
  494. Hashtable requestData = (Hashtable)request.Params[0];
  495. checkStringParameters(request, new string[] { "password", "region", "welcome" });
  496. // check password
  497. if (!String.IsNullOrEmpty(m_xmlRpcPassword) &&
  498. (string)requestData["password"] != m_xmlRpcPassword) throw new Exception("wrong password");
  499. if (String.IsNullOrEmpty(m_welcomes))
  500. throw new Exception("welcome templates are not enabled, ask your OpenSim operator to set the \"welcomes\" option in the [Concierge] section of OpenSim.ini");
  501. string msg = (string)requestData["welcome"];
  502. if (String.IsNullOrEmpty(msg))
  503. throw new Exception("empty parameter \"welcome\"");
  504. string regionName = (string)requestData["region"];
  505. IScene scene = m_scenes.Find(delegate(IScene s) { return s.RegionInfo.RegionName == regionName; });
  506. if (scene == null)
  507. throw new Exception(String.Format("unknown region \"{0}\"", regionName));
  508. if (!m_conciergedScenes.Contains(scene))
  509. throw new Exception(String.Format("region \"{0}\" is not a concierged region.", regionName));
  510. string welcome = Path.Combine(m_welcomes, regionName);
  511. if (File.Exists(welcome))
  512. {
  513. m_log.InfoFormat("[Concierge]: UpdateWelcome: updating existing template \"{0}\"", welcome);
  514. string welcomeBackup = String.Format("{0}~", welcome);
  515. if (File.Exists(welcomeBackup))
  516. File.Delete(welcomeBackup);
  517. File.Move(welcome, welcomeBackup);
  518. }
  519. File.WriteAllText(welcome, msg);
  520. responseData["success"] = "true";
  521. response.Value = responseData;
  522. }
  523. catch (Exception e)
  524. {
  525. m_log.InfoFormat("[Concierge]: UpdateWelcome failed: {0}", e.Message);
  526. responseData["success"] = "false";
  527. responseData["error"] = e.Message;
  528. response.Value = responseData;
  529. }
  530. m_log.Debug("[Concierge]: done processing UpdateWelcome request");
  531. return response;
  532. }
  533. }
  534. }