/* * Copyright (c) Citrix Systems, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1) Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2) 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. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "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 * COPYRIGHT HOLDER OR 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; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using Newtonsoft.Json; namespace XenAPI { /// /// A user of the system /// First published in XenServer 4.0. /// public partial class User : XenObject { #region Constructors public User() { } public User(string uuid, string short_name, string fullname, Dictionary other_config) { this.uuid = uuid; this.short_name = short_name; this.fullname = fullname; this.other_config = other_config; } /// /// Creates a new User from a Hashtable. /// Note that the fields not contained in the Hashtable /// will be created with their default values. /// /// public User(Hashtable table) : this() { UpdateFrom(table); } /// /// Creates a new User from a Proxy_User. /// /// public User(Proxy_User proxy) { UpdateFrom(proxy); } #endregion /// /// Updates each field of this instance with the value of /// the corresponding field of a given User. /// public override void UpdateFrom(User update) { uuid = update.uuid; short_name = update.short_name; fullname = update.fullname; other_config = update.other_config; } internal void UpdateFrom(Proxy_User proxy) { uuid = proxy.uuid == null ? null : proxy.uuid; short_name = proxy.short_name == null ? null : proxy.short_name; fullname = proxy.fullname == null ? null : proxy.fullname; other_config = proxy.other_config == null ? null : Maps.convert_from_proxy_string_string(proxy.other_config); } public Proxy_User ToProxy() { Proxy_User result_ = new Proxy_User(); result_.uuid = uuid ?? ""; result_.short_name = short_name ?? ""; result_.fullname = fullname ?? ""; result_.other_config = Maps.convert_to_proxy_string_string(other_config); return result_; } /// /// Given a Hashtable with field-value pairs, it updates the fields of this User /// with the values listed in the Hashtable. Note that only the fields contained /// in the Hashtable will be updated and the rest will remain the same. /// /// public void UpdateFrom(Hashtable table) { if (table.ContainsKey("uuid")) uuid = Marshalling.ParseString(table, "uuid"); if (table.ContainsKey("short_name")) short_name = Marshalling.ParseString(table, "short_name"); if (table.ContainsKey("fullname")) fullname = Marshalling.ParseString(table, "fullname"); if (table.ContainsKey("other_config")) other_config = Maps.convert_from_proxy_string_string(Marshalling.ParseHashTable(table, "other_config")); } public bool DeepEquals(User other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return Helper.AreEqual2(this._uuid, other._uuid) && Helper.AreEqual2(this._short_name, other._short_name) && Helper.AreEqual2(this._fullname, other._fullname) && Helper.AreEqual2(this._other_config, other._other_config); } internal static List ProxyArrayToObjectList(Proxy_User[] input) { var result = new List(); foreach (var item in input) result.Add(new User(item)); return result; } public override string SaveChanges(Session session, string opaqueRef, User server) { if (opaqueRef == null) { var reference = create(session, this); return reference == null ? null : reference.opaque_ref; } else { if (!Helper.AreEqual2(_fullname, server._fullname)) { User.set_fullname(session, opaqueRef, _fullname); } if (!Helper.AreEqual2(_other_config, server._other_config)) { User.set_other_config(session, opaqueRef, _other_config); } return null; } } /// /// Get a record containing the current state of the given user. /// First published in XenServer 4.0. /// Deprecated since XenServer 5.5. /// /// The session /// The opaque_ref of the given user [Deprecated("XenServer 5.5")] public static User get_record(Session session, string _user) { if (session.JsonRpcClient != null) return session.JsonRpcClient.user_get_record(session.opaque_ref, _user); else return new User(session.XmlRpcProxy.user_get_record(session.opaque_ref, _user ?? "").parse()); } /// /// Get a reference to the user instance with the specified UUID. /// First published in XenServer 4.0. /// Deprecated since XenServer 5.5. /// /// The session /// UUID of object to return [Deprecated("XenServer 5.5")] public static XenRef get_by_uuid(Session session, string _uuid) { if (session.JsonRpcClient != null) return session.JsonRpcClient.user_get_by_uuid(session.opaque_ref, _uuid); else return XenRef.Create(session.XmlRpcProxy.user_get_by_uuid(session.opaque_ref, _uuid ?? "").parse()); } /// /// Create a new user instance, and return its handle. /// First published in XenServer 4.0. /// Deprecated since XenServer 5.5. /// /// The session /// All constructor arguments [Deprecated("XenServer 5.5")] public static XenRef create(Session session, User _record) { if (session.JsonRpcClient != null) return session.JsonRpcClient.user_create(session.opaque_ref, _record); else return XenRef.Create(session.XmlRpcProxy.user_create(session.opaque_ref, _record.ToProxy()).parse()); } /// /// Create a new user instance, and return its handle. /// First published in XenServer 4.0. /// Deprecated since XenServer 5.5. /// /// The session /// All constructor arguments [Deprecated("XenServer 5.5")] public static XenRef async_create(Session session, User _record) { if (session.JsonRpcClient != null) return session.JsonRpcClient.async_user_create(session.opaque_ref, _record); else return XenRef.Create(session.XmlRpcProxy.async_user_create(session.opaque_ref, _record.ToProxy()).parse()); } /// /// Destroy the specified user instance. /// First published in XenServer 4.0. /// Deprecated since XenServer 5.5. /// /// The session /// The opaque_ref of the given user [Deprecated("XenServer 5.5")] public static void destroy(Session session, string _user) { if (session.JsonRpcClient != null) session.JsonRpcClient.user_destroy(session.opaque_ref, _user); else session.XmlRpcProxy.user_destroy(session.opaque_ref, _user ?? "").parse(); } /// /// Destroy the specified user instance. /// First published in XenServer 4.0. /// Deprecated since XenServer 5.5. /// /// The session /// The opaque_ref of the given user [Deprecated("XenServer 5.5")] public static XenRef async_destroy(Session session, string _user) { if (session.JsonRpcClient != null) return session.JsonRpcClient.async_user_destroy(session.opaque_ref, _user); else return XenRef.Create(session.XmlRpcProxy.async_user_destroy(session.opaque_ref, _user ?? "").parse()); } /// /// Get the uuid field of the given user. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given user public static string get_uuid(Session session, string _user) { if (session.JsonRpcClient != null) return session.JsonRpcClient.user_get_uuid(session.opaque_ref, _user); else return session.XmlRpcProxy.user_get_uuid(session.opaque_ref, _user ?? "").parse(); } /// /// Get the short_name field of the given user. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given user public static string get_short_name(Session session, string _user) { if (session.JsonRpcClient != null) return session.JsonRpcClient.user_get_short_name(session.opaque_ref, _user); else return session.XmlRpcProxy.user_get_short_name(session.opaque_ref, _user ?? "").parse(); } /// /// Get the fullname field of the given user. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given user public static string get_fullname(Session session, string _user) { if (session.JsonRpcClient != null) return session.JsonRpcClient.user_get_fullname(session.opaque_ref, _user); else return session.XmlRpcProxy.user_get_fullname(session.opaque_ref, _user ?? "").parse(); } /// /// Get the other_config field of the given user. /// First published in XenServer 5.0. /// /// The session /// The opaque_ref of the given user public static Dictionary get_other_config(Session session, string _user) { if (session.JsonRpcClient != null) return session.JsonRpcClient.user_get_other_config(session.opaque_ref, _user); else return Maps.convert_from_proxy_string_string(session.XmlRpcProxy.user_get_other_config(session.opaque_ref, _user ?? "").parse()); } /// /// Set the fullname field of the given user. /// First published in XenServer 4.0. /// /// The session /// The opaque_ref of the given user /// New value to set public static void set_fullname(Session session, string _user, string _fullname) { if (session.JsonRpcClient != null) session.JsonRpcClient.user_set_fullname(session.opaque_ref, _user, _fullname); else session.XmlRpcProxy.user_set_fullname(session.opaque_ref, _user ?? "", _fullname ?? "").parse(); } /// /// Set the other_config field of the given user. /// First published in XenServer 5.0. /// /// The session /// The opaque_ref of the given user /// New value to set public static void set_other_config(Session session, string _user, Dictionary _other_config) { if (session.JsonRpcClient != null) session.JsonRpcClient.user_set_other_config(session.opaque_ref, _user, _other_config); else session.XmlRpcProxy.user_set_other_config(session.opaque_ref, _user ?? "", Maps.convert_to_proxy_string_string(_other_config)).parse(); } /// /// Add the given key-value pair to the other_config field of the given user. /// First published in XenServer 5.0. /// /// The session /// The opaque_ref of the given user /// Key to add /// Value to add public static void add_to_other_config(Session session, string _user, string _key, string _value) { if (session.JsonRpcClient != null) session.JsonRpcClient.user_add_to_other_config(session.opaque_ref, _user, _key, _value); else session.XmlRpcProxy.user_add_to_other_config(session.opaque_ref, _user ?? "", _key ?? "", _value ?? "").parse(); } /// /// Remove the given key and its corresponding value from the other_config field of the given user. If the key is not in that Map, then do nothing. /// First published in XenServer 5.0. /// /// The session /// The opaque_ref of the given user /// Key to remove public static void remove_from_other_config(Session session, string _user, string _key) { if (session.JsonRpcClient != null) session.JsonRpcClient.user_remove_from_other_config(session.opaque_ref, _user, _key); else session.XmlRpcProxy.user_remove_from_other_config(session.opaque_ref, _user ?? "", _key ?? "").parse(); } /// /// Unique identifier/object reference /// public virtual string uuid { get { return _uuid; } set { if (!Helper.AreEqual(value, _uuid)) { _uuid = value; NotifyPropertyChanged("uuid"); } } } private string _uuid = ""; /// /// short name (e.g. userid) /// public virtual string short_name { get { return _short_name; } set { if (!Helper.AreEqual(value, _short_name)) { _short_name = value; NotifyPropertyChanged("short_name"); } } } private string _short_name = ""; /// /// full name /// public virtual string fullname { get { return _fullname; } set { if (!Helper.AreEqual(value, _fullname)) { _fullname = value; NotifyPropertyChanged("fullname"); } } } private string _fullname = ""; /// /// additional configuration /// First published in XenServer 5.0. /// [JsonConverter(typeof(StringStringMapConverter))] public virtual Dictionary other_config { get { return _other_config; } set { if (!Helper.AreEqual(value, _other_config)) { _other_config = value; NotifyPropertyChanged("other_config"); } } } private Dictionary _other_config = new Dictionary() {}; } }