12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034 |
- /*
- * 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.Collections.Generic;
- using System.Collections.Concurrent;
- using System.IO;
- using System.Reflection;
- using System.Threading;
- using OpenSim.Framework;
- using OpenSim.Framework.Console;
- using OpenSim.Region.Framework.Interfaces;
- using OpenSim.Region.Framework.Scenes;
- using OpenSim.Services.Interfaces;
- using OpenSim.Services.Connectors.Hypergrid;
- using OpenMetaverse;
- using log4net;
- using Nini.Config;
- using Mono.Addins;
- namespace OpenSim.Region.CoreModules.Framework.UserManagement
- {
- [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "UserManagementModule")]
- public class UserManagementModule : ISharedRegionModule, IUserManagement, IPeople
- {
- private const int BADURLEXPIRE = 2 * 60;
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- protected bool m_Enabled;
- protected List<Scene> m_Scenes = new List<Scene>();
- protected IServiceThrottleModule m_ServiceThrottle;
- protected IUserAccountService m_userAccountService = null;
- protected IGridUserService m_gridUserService = null;
-
- protected GridInfo m_thisGridInfo;
- // The cache
- protected ExpiringCacheOS<UUID, UserData> m_userCacheByID = new ExpiringCacheOS<UUID, UserData>(60000);
- protected bool m_DisplayChangingHomeURI = false;
- UUID m_scopeID = UUID.Zero;
- ~UserManagementModule()
- {
- Dispose(false);
- }
- private bool disposed = false;
- public void Dispose()
- {
- Dispose(true);
- GC.SuppressFinalize(this);
- }
- private void Dispose(bool disposing)
- {
- if (!disposed)
- {
- disposed = true;
- m_userCacheByID.Dispose();
- m_userCacheByID = null;
- }
- }
- #region ISharedRegionModule
- public virtual void Initialise(IConfigSource config)
- {
- string umanmod = config.Configs["Modules"].GetString("UserManagementModule", Name);
- if (umanmod == Name)
- {
- m_Enabled = true;
- Init(config);
- m_log.DebugFormat("[USER MANAGEMENT MODULE]: {0} is enabled", Name);
- }
- }
- public virtual bool IsSharedModule
- {
- get { return true; }
- }
- public virtual string Name
- {
- get { return "BasicUserManagementModule"; }
- }
- public virtual Type ReplaceableInterface
- {
- get { return null; }
- }
- public virtual void AddRegion(Scene scene)
- {
- if (m_Enabled)
- {
- lock (m_Scenes)
- {
- m_Scenes.Add(scene);
- }
- if(m_thisGridInfo == null)
- m_thisGridInfo = scene.SceneGridInfo;
- scene.RegisterModuleInterface<IUserManagement>(this);
- scene.RegisterModuleInterface<IPeople>(this);
- scene.EventManager.OnNewClient += EventManager_OnNewClient;
- scene.EventManager.OnPrimsLoaded += EventManager_OnPrimsLoaded;
- }
- }
- public virtual void RemoveRegion(Scene scene)
- {
- if (m_Enabled)
- {
- scene.UnregisterModuleInterface<IUserManagement>(this);
- lock (m_Scenes)
- {
- m_Scenes.Remove(scene);
- }
- }
- }
- public virtual void RegionLoaded(Scene s)
- {
- if (!m_Enabled)
- return;
- if(m_ServiceThrottle == null)
- m_ServiceThrottle = s.RequestModuleInterface<IServiceThrottleModule>();
- if(m_userAccountService == null)
- m_userAccountService = s.UserAccountService;
- if(m_gridUserService == null)
- m_gridUserService = s.GridUserService;
- if (s.RegionInfo.ScopeID != UUID.Zero)
- m_scopeID = s.RegionInfo.ScopeID;
- }
- public virtual void PostInitialise()
- {
- }
- public virtual void Close()
- {
- m_Enabled = false;
- lock (m_Scenes)
- {
- m_Scenes.Clear();
- }
- m_thisGridInfo = null;
- Dispose(false);
- }
- #endregion ISharedRegionModule
- #region Event Handlers
- protected virtual void EventManager_OnPrimsLoaded(Scene s)
- {
- // let's sniff all the user names referenced by objects in the scene
- m_log.DebugFormat("[USER MANAGEMENT MODULE]: Caching creators' data from {0} ({1} objects)...", s.RegionInfo.RegionName, s.GetEntities().Length);
- s.ForEachSOG(delegate(SceneObjectGroup sog) { CacheCreators(sog); });
- }
- protected virtual void EventManager_OnNewClient(IClientAPI client)
- {
- client.OnConnectionClosed += HandleConnectionClosed;
- client.OnNameFromUUIDRequest += HandleUUIDNameRequest;
- client.OnAvatarPickerRequest += HandleAvatarPickerRequest;
- }
- protected virtual void HandleConnectionClosed(IClientAPI client)
- {
- client.OnNameFromUUIDRequest -= HandleUUIDNameRequest;
- client.OnAvatarPickerRequest -= HandleAvatarPickerRequest;
- client.OnConnectionClosed -= HandleConnectionClosed;
- }
- protected virtual void HandleUUIDNameRequest(UUID uuid, IClientAPI client)
- {
- // m_log.DebugFormat(
- // "[USER MANAGEMENT MODULE]: Handling request for name binding of UUID {0} from {1}",
- // uuid, remote_client.Name);
- if(m_Scenes.Count <= 0)
- return;
- if (m_userCacheByID.TryGetValue(uuid, out UserData user))
- {
- if (user.HasGridUserTried)
- {
- client.SendNameReply(uuid, user.FirstName, user.LastName);
- return;
- }
- }
- if(m_ServiceThrottle == null)
- return;
- IClientAPI deferedcli = client;
- // Not found in cache, queue continuation
- m_ServiceThrottle.Enqueue("uuidname", uuid.ToString(), delegate
- {
- if(deferedcli.IsActive)
- {
- if (GetUser(uuid, deferedcli.ScopeId, out UserData defuser))
- {
- if(deferedcli.IsActive)
- deferedcli.SendNameReply(uuid, defuser.FirstName, defuser.LastName);
- }
- }
- deferedcli = null;
- });
- }
- public virtual void HandleAvatarPickerRequest(IClientAPI client, UUID avatarID, UUID RequestID, string query)
- {
- //EventManager.TriggerAvatarPickerRequest();
- m_log.DebugFormat("[USER MANAGEMENT MODULE]: HandleAvatarPickerRequest for {0}", query);
- List<UserData> users = GetUserData(query, 500, 1);
- client.SendAvatarPickerReply(RequestID, users);
- }
- public bool CheckUrl(string url, out bool islocal, out Uri uri)
- {
- islocal = false;
- if (string.IsNullOrWhiteSpace(url))
- {
- uri = null;
- islocal = true;
- return true;
- }
- try
- {
- uri = new Uri(url, UriKind.Absolute);
- }
- catch
- {
- uri = null;
- islocal = true;
- return false;
- }
- string host = uri.DnsSafeHost.ToLower();
- islocal = m_thisGridInfo.IsLocalHome(host) == 1;
- return true;
- }
- protected virtual void AddAdditionalUsers(string query, List<UserData> users, HashSet<UUID> found)
- {
- }
- #endregion Event Handlers
- #region IPeople
- public virtual UserData GetUserData(UUID id)
- {
- if(GetUser(id, out UserData u))
- return u;
- return null;
- }
- public virtual List<UserData> GetUserData(string query, int page_size, int page_number)
- {
- if(m_Scenes.Count <= 0 || m_userAccountService == null)
- return new List<UserData>();;
- var users = new List<UserData>();
- var found = new HashSet<UUID>();
- // search the user accounts service
- if (m_userAccountService != null)
- {
- List<UserAccount> accs = m_userAccountService.GetUserAccounts(m_scopeID, query);
- if (accs != null)
- {
- for(int i = 0; i < accs.Count; ++i)
- {
- UserAccount acc = accs[i];
- UUID id = acc.PrincipalID;
- UserData ud = new UserData();
- ud.FirstName = acc.FirstName;
- ud.LastName = acc.LastName;
- ud.Id = id;
- ud.HasGridUserTried = true;
- ud.IsUnknownUser = false;
- ud.IsLocal = acc.LocalToGrid;
- users.Add(ud);
- found.Add(id);
- }
- }
- }
- // search the local cache
- string q = query.ToLower();
- foreach (UserData data in m_userCacheByID.Values)
- {
- if (found.Contains(data.Id))
- continue;
- if (data.Id == UUID.Zero || data.IsUnknownUser)
- continue;
- if (data.FirstName.ToLower().StartsWith(q) || data.LastName.ToLower().StartsWith(q))
- users.Add(data);
- }
- AddAdditionalUsers(query, users, found);
- return users;
- }
- #endregion IPeople
- protected virtual void CacheCreators(SceneObjectGroup sog)
- {
- //m_log.DebugFormat("[USER MANAGEMENT MODULE]: processing {0} {1}; {2}", sog.RootPart.Name, sog.RootPart.CreatorData, sog.RootPart.CreatorIdentification);
- AddUser(sog.RootPart.CreatorID, sog.RootPart.CreatorData);
- foreach (SceneObjectPart sop in sog.Parts)
- {
- AddUser(sop.CreatorID, sop.CreatorData);
- foreach (TaskInventoryItem item in sop.TaskInventory.Values)
- AddUser(item.CreatorID, item.CreatorData);
- }
- }
- /// <summary>
- ///
- /// </summary>
- /// <param name="uuid"></param>
- /// <param name="names">Caller please provide a properly instantiated array for names, string[2]</param>
- /// <returns></returns>
- protected virtual bool TryGetUserNames(UUID uuid, string[] names)
- {
- if (names == null)
- names = new string[2];
- if(GetUser(uuid, out UserData u))
- {
- names[0] = u.FirstName;
- names[1] = u.LastName;
- return true;
- }
- names[0] = "UnknownUMM3";
- names[1] = uuid.ToString();
- return false;
- }
- #region IUserManagement
- public virtual UUID GetUserIdByName(string name)
- {
- string[] parts = name.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
- if (parts.Length < 2)
- throw new Exception("Name must have 2 components");
- return GetUserIdByName(parts[0], parts[1]);
- }
- public virtual UUID GetUserIdByName(string firstName, string lastName)
- {
- if(m_Scenes.Count <= 0)
- return UUID.Zero;
- // TODO: Optimize for reverse lookup if this gets used by non-console commands.
- foreach (UserData user in m_userCacheByID.Values)
- {
- if (user.FirstName.Equals(firstName, StringComparison.InvariantCultureIgnoreCase) &&
- user.LastName.Equals(lastName, StringComparison.InvariantCultureIgnoreCase))
- return user.Id;
- }
- if(m_userAccountService != null)
- {
- UserAccount account = m_userAccountService.GetUserAccount(UUID.Zero, firstName, lastName);
- if (account != null)
- {
- AddUser(account);
- return account.PrincipalID;
- }
- }
- return UUID.Zero;
- }
- public virtual string GetUserName(UUID uuid)
- {
- if(GetUser(uuid, out UserData user))
- return user.FirstName + " " + user.LastName;
- return "UnknownUMM2 " + uuid.ToString();
- }
- public virtual Dictionary<UUID,string> GetUsersNames(string[] ids, UUID scopeID)
- {
- Dictionary<UUID,string> ret = new Dictionary<UUID,string>();
- if(m_Scenes.Count <= 0)
- return ret;
- UserData userdata = new UserData();
- UUID uuid = UUID.Zero;
- foreach(string id in ids)
- {
- if(UUID.TryParse(id, out uuid))
- {
- if (GetUser(uuid, out userdata))
- ret[uuid] = userdata.FirstName + " " + userdata.LastName;
- else
- ret[uuid] = "Unknown " + uuid.ToString() + "UMM1";
- }
- }
- return ret;
- }
- public virtual string GetUserHomeURL(UUID userID)
- {
- if (GetUser(userID, out UserData user) && user != null)
- {
- if (user.LastWebFail > 0 && Util.GetTimeStamp() - user.LastWebFail > BADURLEXPIRE)
- user.LastWebFail = -1;
- return user.HomeURL;
- }
- return string.Empty;
- }
- public virtual string GetUserHomeURL(UUID userID, out bool recentFail)
- {
- recentFail = false;
- if (GetUser(userID, out UserData user))
- {
- if (user.LastWebFail > 0)
- {
- if (Util.GetTimeStamp() - user.LastWebFail > BADURLEXPIRE)
- user.LastWebFail = -1;
- else
- recentFail = true;
- }
- return user.HomeURL;
- }
- return string.Empty;
- }
- public virtual string GetUserServerURL(UUID userID, string serverType)
- {
- UserData userdata;
- if(!GetUser(userID, out userdata))
- return string.Empty;
- if(userdata.IsLocal)
- return string.Empty;
- if(userdata.LastWebFail > 0)
- {
- if(Util.GetTimeStamp() - userdata.LastWebFail > BADURLEXPIRE) // 5 minutes
- return string.Empty;
- userdata.LastWebFail = -1;
- }
- if (userdata.ServerURLs != null)
- {
- if(userdata.ServerURLs.ContainsKey(serverType) && userdata.ServerURLs[serverType] != null)
- return userdata.ServerURLs[serverType].ToString();
- else
- return string.Empty;
- }
- if (!string.IsNullOrEmpty(userdata.HomeURL))
- {
- string homeuri = userdata.HomeURL.ToLower();
- if (!WebUtil.GlobalExpiringBadURLs.ContainsKey(homeuri))
- {
- //m_log.DebugFormat("[USER MANAGEMENT MODULE]: Requested url type {0} for {1}", serverType, userID);
- UserAgentServiceConnector uConn = new UserAgentServiceConnector(homeuri);
- try
- {
- userdata.ServerURLs = uConn.GetServerURLs(userID);
- }
- catch(System.Net.WebException e)
- {
- m_log.DebugFormat("[USER MANAGEMENT MODULE]: GetServerURLs call failed {0}", e.Message);
- WebUtil.GlobalExpiringBadURLs.Add(homeuri, BADURLEXPIRE * 1000);
- userdata.ServerURLs = new Dictionary<string, object>();
- }
- catch (Exception e)
- {
- m_log.Debug("[USER MANAGEMENT MODULE]: GetServerURLs call failed ", e);
- userdata.ServerURLs = new Dictionary<string, object>();
- }
- if (userdata.ServerURLs != null && userdata.ServerURLs.TryGetValue(serverType, out object ourl) && ourl != null)
- return ourl.ToString();
- }
- }
- return string.Empty;
- }
- public void UserWebFailed(UUID id)
- {
- if(m_userCacheByID.TryGetValue(id, out UserData u))
- u.LastWebFail = Util.GetTimeStamp();
- }
- public virtual string GetUserServerURL(UUID userID, string serverType, out bool recentFail)
- {
- recentFail = false;
- if (!GetUser(userID, out UserData userdata))
- return string.Empty;
- if (userdata.IsLocal)
- return string.Empty;
- if (userdata.LastWebFail > 0)
- {
- if (Util.GetTimeStamp() - userdata.LastWebFail > BADURLEXPIRE)
- recentFail = true;
- else
- userdata.LastWebFail = -1;
- }
- if (userdata.ServerURLs != null)
- {
- if (userdata.ServerURLs.ContainsKey(serverType) && userdata.ServerURLs[serverType] != null)
- return userdata.ServerURLs[serverType].ToString();
- else
- return string.Empty;
- }
- if (!recentFail && !string.IsNullOrEmpty(userdata.HomeURL))
- {
- string homeurl = userdata.HomeURL.ToLower();
- if(!WebUtil.GlobalExpiringBadURLs.ContainsKey(homeurl))
- {
- //m_log.DebugFormat("[USER MANAGEMENT MODULE]: Requested url type {0} for {1}", serverType, userID);
- UserAgentServiceConnector uConn = new UserAgentServiceConnector(homeurl);
- try
- {
- userdata.ServerURLs = uConn.GetServerURLs(userID);
- }
- catch (System.Net.WebException e)
- {
- m_log.DebugFormat("[USER MANAGEMENT MODULE]: GetServerURLs call failed {0}", e.Message);
- userdata.ServerURLs = new Dictionary<string, object>();
- userdata.LastWebFail = Util.GetTimeStamp();
- WebUtil.GlobalExpiringBadURLs.Add(homeurl, BADURLEXPIRE * 1000);
- recentFail = true;
- }
- catch (Exception e)
- {
- m_log.Debug("[USER MANAGEMENT MODULE]: GetServerURLs call failed ", e);
- userdata.ServerURLs = new Dictionary<string, object>();
- userdata.LastWebFail = Util.GetTimeStamp();
- recentFail = true;
- }
- if (userdata.ServerURLs != null && userdata.ServerURLs.ContainsKey(serverType) && userdata.ServerURLs[serverType] != null)
- return userdata.ServerURLs[serverType].ToString();
- }
- }
- return string.Empty;
- }
- public virtual string GetUserUUI(UUID userID)
- {
- string uui;
- GetUserUUI(userID, out uui);
- return uui;
- }
- public virtual bool GetUserUUI(UUID userID, out string uui)
- {
- bool result = GetUser(userID, out UserData ud);
- if (ud != null)
- {
- string homeURL = ud.HomeURL;
- string first = ud.FirstName, last = ud.LastName;
- if (ud.LastName.StartsWith("@"))
- {
- string[] parts = ud.FirstName.Split('.');
- if (parts.Length >= 2)
- {
- first = parts[0];
- last = parts[1];
- }
- uui = userID + ";" + homeURL + ";" + first + " " + last;
- return result;
- }
- }
- uui = userID.ToString();
- return result;
- }
- #region Cache Management
- public virtual bool GetUser(UUID uuid, out UserData userdata)
- {
- return GetUser(uuid, m_scopeID, out userdata);
- }
- public virtual bool GetUser(UUID uuid, UUID scopeID, out UserData userdata)
- {
- if (m_Scenes.Count <= 0)
- {
- userdata = new UserData();
- return false;
- }
- if (m_userCacheByID.TryGetValue(uuid, out userdata))
- {
- if (userdata.HasGridUserTried)
- return true;
- }
- else
- {
- userdata = new UserData();
- userdata.Id = uuid;
- userdata.FirstName = "Unknown";
- userdata.LastName = uuid.ToString();
- userdata.HomeURL = string.Empty;
- userdata.IsUnknownUser = true;
- userdata.HasGridUserTried = false;
- }
- if (!userdata.HasGridUserTried)
- {
- /* rewrite here */
- UserAccount account = m_userAccountService.GetUserAccount(scopeID, uuid);
- if (account != null)
- {
- userdata.FirstName = account.FirstName;
- userdata.LastName = account.LastName;
- userdata.HomeURL = string.Empty;
- userdata.IsUnknownUser = false;
- userdata.IsLocal = true;
- userdata.HasGridUserTried = true;
- AddUser(account);
- }
- }
- if (!userdata.HasGridUserTried)
- {
- GridUserInfo uInfo = null;
- if (null != m_gridUserService)
- {
- uInfo = m_gridUserService.GetGridUserInfo(uuid.ToString());
- }
- if (uInfo != null)
- {
- string url, first, last, tmp;
- UUID u;
- if (uInfo.UserID.Length >= 36 && Util.ParseUniversalUserIdentifier(uInfo.UserID, out u, out url, out first, out last, out tmp))
- {
- bool islocal;
- Uri uri;
- bool isvalid = CheckUrl(url, out islocal, out uri);
- if (isvalid)
- {
- if(islocal)
- {
- userdata.FirstName = first;
- userdata.LastName = last;
- userdata.HomeURL = string.Empty;
- userdata.IsLocal = true;
- userdata.IsUnknownUser = false;
- }
- else
- {
- userdata.FirstName = first.Replace(" ", ".") + "." + last.Replace(" ", ".");
- userdata.HomeURL = uri.AbsoluteUri;
- userdata.LastName = "@" + uri.Authority;
- userdata.IsLocal = false;
- userdata.IsUnknownUser = false;
- }
- }
- }
- else
- m_log.DebugFormat("[USER MANAGEMENT MODULE]: Unable to parse UUI {0}", uInfo.UserID);
- }
- userdata.HasGridUserTried = true;
- }
- /* END: do not wrap this code in any lock here */
- return !userdata.IsUnknownUser;
- }
- public void AddUser(UserAccount account)
- {
- UUID id = account.PrincipalID;
- if (!m_userCacheByID.ContainsKey(id))
- {
- UserData user = new UserData();
- user.Id = id;
- user.FirstName = account.FirstName;
- user.LastName = account.LastName;
- user.HomeURL = string.Empty;
- user.IsUnknownUser = false;
- user.HasGridUserTried = true;
- user.IsLocal = account.LocalToGrid;
- m_userCacheByID.Add(id, user, 1800000);
- }
- }
- public virtual void AddUser(UUID uuid, string first, string last, bool isNPC = false, int expire = 1800000)
- {
- if (!m_userCacheByID.ContainsKey(uuid))
- {
- UserData user = new UserData();
- user.Id = uuid;
- user.FirstName = first;
- user.LastName = last;
- user.HasGridUserTried = isNPC;
- if (!isNPC && last.StartsWith("@"))
- {
- string url = last.Substring(1);
- bool local;
- Uri uri;
- if(CheckUrl(url, out local, out uri))
- {
- if(local)
- {
- user.IsLocal = true;
- user.HomeURL = string.Empty;
- user.HasGridUserTried = true;
- }
- else
- {
- user.IsLocal = false;
- user.HomeURL = uri.AbsoluteUri;
- user.HasGridUserTried = false;
- }
- user.IsUnknownUser = false;
- }
- }
- else
- {
- user.IsUnknownUser = false;
- user.IsLocal = true;
- user.HasGridUserTried = true;
- }
- m_userCacheByID.Add(uuid, user, isNPC ? int.MaxValue / 16 : expire);
- }
- }
- public virtual void AddUser(UUID uuid, string first, string last, string homeURL)
- {
- //m_log.DebugFormat("[USER MANAGEMENT MODULE]: Adding user with id {0}, first {1}, last {2}, url {3}", uuid, first, last, homeURL);
- UserData oldUser;
- if (m_userCacheByID.TryGetValue(uuid, out oldUser))
- {
- if (!oldUser.IsUnknownUser)
- {
- if (homeURL != oldUser.HomeURL && m_DisplayChangingHomeURI)
- {
- m_log.DebugFormat("[USER MANAGEMENT MODULE]: Different HomeURI for {0} {1} ({2}): {3} and {4}",
- first, last, uuid.ToString(), homeURL, oldUser.HomeURL);
- }
- /* no update needed */
- return;
- }
- }
- oldUser = new UserData();
- oldUser.Id = uuid;
- oldUser.HasGridUserTried = false;
- oldUser.IsUnknownUser = false;
- bool local;
- Uri uri;
- if (CheckUrl(homeURL, out local, out uri))
- {
- if (local)
- {
- oldUser.FirstName = first;
- oldUser.LastName = last;
- oldUser.IsLocal = true;
- oldUser.HomeURL = string.Empty;
- oldUser.HasGridUserTried = true;
- }
- else
- {
- oldUser.FirstName = first.Replace(" ", ".") + "." + last.Replace(" ", ".");
- oldUser.LastName = "@" + uri.Authority;
- oldUser.HomeURL = uri.AbsoluteUri;
- oldUser.IsLocal = false;
- }
- }
- else
- {
- oldUser.FirstName = first.Replace(" ", ".") + "." + last.Replace(" ", ".");
- oldUser.LastName = "UMMM0Unknown";
- oldUser.IsLocal = true;
- oldUser.HomeURL = string.Empty;
- oldUser.HasGridUserTried = true;
- oldUser.IsUnknownUser = true;
- }
- m_userCacheByID.Add(uuid, oldUser, 300000);
- }
- public virtual void AddUser(UUID id, string creatorData)
- {
- // m_log.InfoFormat("[USER MANAGEMENT MODULE]: Adding user with id {0}, creatorData {1}", id, creatorData);
- if(string.IsNullOrEmpty(creatorData))
- return;
- if(m_userCacheByID.ContainsKey(id))
- return;
- string homeURL;
- string firstname = string.Empty;
- string lastname = string.Empty;
- //creatorData = <endpoint>;<name>
- string[] parts = creatorData.Split(';');
- if(parts.Length > 1)
- {
- string[] nameparts = parts[1].Split(' ');
- if(nameparts.Length < 2)
- return;
- firstname = nameparts[0];
- for(int xi = 1; xi < nameparts.Length; ++xi)
- {
- if(xi != 1)
- {
- lastname += " ";
- }
- lastname += nameparts[xi];
- }
- if (string.IsNullOrWhiteSpace(firstname))
- return;
- if (string.IsNullOrWhiteSpace(lastname))
- return;
- }
- else
- return;
- homeURL = parts[0];
- if(homeURL.Length > 10)
- {
- string test = homeURL.Substring(10);
- int indx = test.IndexOf("/");
- if(indx > 0 && indx != test.Length - 1)
- homeURL = homeURL.Substring(0, indx + 10);
- }
- bool local;
- Uri uri;
- var oldUser = new UserData();
- oldUser.Id = id;
- oldUser.HasGridUserTried = false;
- oldUser.IsUnknownUser = false;
- if (CheckUrl(homeURL, out local, out uri))
- {
- if (local)
- {
- oldUser.FirstName = firstname;
- oldUser.LastName = lastname;
- oldUser.IsLocal = true;
- oldUser.HomeURL = string.Empty;
- oldUser.HasGridUserTried = true;
- }
- else
- {
- oldUser.FirstName = firstname + "." + lastname.Replace(" ", ".");
- oldUser.LastName = "@" + uri.Authority;
- oldUser.HomeURL = uri.AbsoluteUri;
- oldUser.IsLocal = false;
- }
- }
- else
- {
- oldUser.FirstName = firstname + "." + lastname.Replace(" ", ".");
- oldUser.LastName = "UMMM1Unknown";
- oldUser.IsLocal = true;
- oldUser.HomeURL = string.Empty;
- oldUser.HasGridUserTried = true;
- oldUser.IsUnknownUser = true;
- }
- m_userCacheByID.Add(id, oldUser, int.MaxValue / 16);
- }
- public bool RemoveUser(UUID uuid)
- {
- return m_userCacheByID.Remove(uuid);
- }
- #endregion
- public virtual bool IsLocalGridUser(UUID uuid)
- {
- if (m_Scenes.Count <= 0)
- return true;
- if (m_userCacheByID.TryGetValue(uuid, out UserData u))
- {
- if (u.HasGridUserTried)
- return u.IsLocal;
- }
- if(m_userAccountService == null)
- return true;
- UserAccount account = m_userAccountService.GetUserAccount(m_Scenes[0].RegionInfo.ScopeID, uuid);
- if (account == null)
- return false;
- if(u == null)
- AddUser(account);
- else
- u.HasGridUserTried = true;
- return true;
- }
- #endregion IUserManagement
- protected virtual void Init(IConfigSource config)
- {
- AddUser(UUID.Zero, "Unknown", "User", false, int.MaxValue / 16);
- AddUser(Constants.m_MrOpenSimID, "Mr", "Opensim", false, int.MaxValue / 16);
- RegisterConsoleCmds();
- IConfig userManagementConfig = config.Configs["UserManagement"];
- if (userManagementConfig != null)
- m_DisplayChangingHomeURI = userManagementConfig.GetBoolean("DisplayChangingHomeURI", false);
- }
- protected virtual void RegisterConsoleCmds()
- {
- MainConsole.Instance.Commands.AddCommand("Users", true,
- "show name",
- "show name <uuid>",
- "Show the bindings between a single user UUID and a user name",
- String.Empty,
- HandleShowUser);
- MainConsole.Instance.Commands.AddCommand("Users", true,
- "show names",
- "show names",
- "Show the bindings between user UUIDs and user names",
- String.Empty,
- HandleShowUsers);
- MainConsole.Instance.Commands.AddCommand("Users", true,
- "reset user cache",
- "reset user cache",
- "reset user cache to allow changed settings to be applied",
- String.Empty,
- HandleResetUserCache);
- }
- protected virtual void HandleResetUserCache(string module, string[] cmd)
- {
- lock(m_userCacheByID)
- {
- m_userCacheByID.Clear();
- }
- }
- protected virtual void HandleShowUser(string module, string[] cmd)
- {
- if (cmd.Length < 3)
- {
- MainConsole.Instance.Output("Usage: show name <uuid>");
- return;
- }
- UUID userId;
- if (!ConsoleUtil.TryParseConsoleUuid(MainConsole.Instance, cmd[2], out userId))
- return;
- UserData ud;
- if(!GetUser(userId, out ud))
- {
- MainConsole.Instance.Output("No name known for user with id {0}", userId);
- return;
- }
- ConsoleDisplayTable cdt = new ConsoleDisplayTable();
- cdt.AddColumn("UUID", 36);
- cdt.AddColumn("Name", 30);
- cdt.AddColumn("HomeURL", 40);
- cdt.AddRow(userId, string.Format("{0} {1}", ud.FirstName, ud.LastName), ud.HomeURL);
- MainConsole.Instance.Output(cdt.ToString());
- }
- protected virtual void HandleShowUsers(string module, string[] cmd)
- {
- ConsoleDisplayTable cdt = new ConsoleDisplayTable();
- cdt.AddColumn("UUID", 36);
- cdt.AddColumn("Name", 30);
- cdt.AddColumn("HomeURL", 40);
- cdt.AddColumn("Checked", 10);
- ICollection<UserData> copy = m_userCacheByID.Values;
- foreach(UserData u in copy)
- {
- cdt.AddRow(u.Id, string.Format("{0} {1}", u.FirstName, u.LastName), u.HomeURL, u.HasGridUserTried ? "yes" : "no");
- }
- MainConsole.Instance.Output(cdt.ToString());
- }
- }
- }
|