mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
f1e1146a55
Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
420 lines
17 KiB
C#
420 lines
17 KiB
C#
/*
|
|
* 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;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
|
|
namespace XenAPI
|
|
{
|
|
/// <summary>
|
|
/// A set of permissions associated with a subject
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
public partial class Role : XenObject<Role>
|
|
{
|
|
public Role()
|
|
{
|
|
}
|
|
|
|
public Role(string uuid,
|
|
string name_label,
|
|
string name_description,
|
|
List<XenRef<Role>> subroles)
|
|
{
|
|
this.uuid = uuid;
|
|
this.name_label = name_label;
|
|
this.name_description = name_description;
|
|
this.subroles = subroles;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new Role from a Proxy_Role.
|
|
/// </summary>
|
|
/// <param name="proxy"></param>
|
|
public Role(Proxy_Role proxy)
|
|
{
|
|
this.UpdateFromProxy(proxy);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates each field of this instance with the value of
|
|
/// the corresponding field of a given Role.
|
|
/// </summary>
|
|
public override void UpdateFrom(Role update)
|
|
{
|
|
uuid = update.uuid;
|
|
name_label = update.name_label;
|
|
name_description = update.name_description;
|
|
subroles = update.subroles;
|
|
}
|
|
|
|
internal void UpdateFromProxy(Proxy_Role proxy)
|
|
{
|
|
uuid = proxy.uuid == null ? null : proxy.uuid;
|
|
name_label = proxy.name_label == null ? null : proxy.name_label;
|
|
name_description = proxy.name_description == null ? null : proxy.name_description;
|
|
subroles = proxy.subroles == null ? null : XenRef<Role>.Create(proxy.subroles);
|
|
}
|
|
|
|
public Proxy_Role ToProxy()
|
|
{
|
|
Proxy_Role result_ = new Proxy_Role();
|
|
result_.uuid = uuid ?? "";
|
|
result_.name_label = name_label ?? "";
|
|
result_.name_description = name_description ?? "";
|
|
result_.subroles = subroles == null ? new string[] {} : Helper.RefListToStringArray(subroles);
|
|
return result_;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new Role from a Hashtable.
|
|
/// Note that the fields not contained in the Hashtable
|
|
/// will be created with their default values.
|
|
/// </summary>
|
|
/// <param name="table"></param>
|
|
public Role(Hashtable table) : this()
|
|
{
|
|
UpdateFrom(table);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Given a Hashtable with field-value pairs, it updates the fields of this Role
|
|
/// 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.
|
|
/// </summary>
|
|
/// <param name="table"></param>
|
|
public void UpdateFrom(Hashtable table)
|
|
{
|
|
if (table.ContainsKey("uuid"))
|
|
uuid = Marshalling.ParseString(table, "uuid");
|
|
if (table.ContainsKey("name_label"))
|
|
name_label = Marshalling.ParseString(table, "name_label");
|
|
if (table.ContainsKey("name_description"))
|
|
name_description = Marshalling.ParseString(table, "name_description");
|
|
if (table.ContainsKey("subroles"))
|
|
subroles = Marshalling.ParseSetRef<Role>(table, "subroles");
|
|
}
|
|
|
|
public bool DeepEquals(Role other)
|
|
{
|
|
if (ReferenceEquals(null, other))
|
|
return false;
|
|
if (ReferenceEquals(this, other))
|
|
return true;
|
|
|
|
return Helper.AreEqual2(this._uuid, other._uuid) &&
|
|
Helper.AreEqual2(this._name_label, other._name_label) &&
|
|
Helper.AreEqual2(this._name_description, other._name_description) &&
|
|
Helper.AreEqual2(this._subroles, other._subroles);
|
|
}
|
|
|
|
internal static List<Role> ProxyArrayToObjectList(Proxy_Role[] input)
|
|
{
|
|
var result = new List<Role>();
|
|
foreach (var item in input)
|
|
result.Add(new Role(item));
|
|
|
|
return result;
|
|
}
|
|
|
|
public override string SaveChanges(Session session, string opaqueRef, Role server)
|
|
{
|
|
if (opaqueRef == null)
|
|
{
|
|
System.Diagnostics.Debug.Assert(false, "Cannot create instances of this type on the server");
|
|
return "";
|
|
}
|
|
else
|
|
{
|
|
throw new InvalidOperationException("This type has no read/write properties");
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// Get a record containing the current state of the given role.
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
/// <param name="_role">The opaque_ref of the given role</param>
|
|
public static Role get_record(Session session, string _role)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_record(session.opaque_ref, _role);
|
|
else
|
|
return new Role((Proxy_Role)session.proxy.role_get_record(session.opaque_ref, _role ?? "").parse());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get a reference to the role instance with the specified UUID.
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
/// <param name="_uuid">UUID of object to return</param>
|
|
public static XenRef<Role> get_by_uuid(Session session, string _uuid)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_by_uuid(session.opaque_ref, _uuid);
|
|
else
|
|
return XenRef<Role>.Create(session.proxy.role_get_by_uuid(session.opaque_ref, _uuid ?? "").parse());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get all the role instances with the given label.
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
/// <param name="_label">label of object to return</param>
|
|
public static List<XenRef<Role>> get_by_name_label(Session session, string _label)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_by_name_label(session.opaque_ref, _label);
|
|
else
|
|
return XenRef<Role>.Create(session.proxy.role_get_by_name_label(session.opaque_ref, _label ?? "").parse());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the uuid field of the given role.
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
/// <param name="_role">The opaque_ref of the given role</param>
|
|
public static string get_uuid(Session session, string _role)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_uuid(session.opaque_ref, _role);
|
|
else
|
|
return session.proxy.role_get_uuid(session.opaque_ref, _role ?? "").parse();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the name/label field of the given role.
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
/// <param name="_role">The opaque_ref of the given role</param>
|
|
public static string get_name_label(Session session, string _role)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_name_label(session.opaque_ref, _role);
|
|
else
|
|
return session.proxy.role_get_name_label(session.opaque_ref, _role ?? "").parse();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the name/description field of the given role.
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
/// <param name="_role">The opaque_ref of the given role</param>
|
|
public static string get_name_description(Session session, string _role)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_name_description(session.opaque_ref, _role);
|
|
else
|
|
return session.proxy.role_get_name_description(session.opaque_ref, _role ?? "").parse();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the subroles field of the given role.
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
/// <param name="_role">The opaque_ref of the given role</param>
|
|
public static List<XenRef<Role>> get_subroles(Session session, string _role)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_subroles(session.opaque_ref, _role);
|
|
else
|
|
return XenRef<Role>.Create(session.proxy.role_get_subroles(session.opaque_ref, _role ?? "").parse());
|
|
}
|
|
|
|
/// <summary>
|
|
/// This call returns a list of permissions given a role
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
/// <param name="_role">The opaque_ref of the given role</param>
|
|
public static List<XenRef<Role>> get_permissions(Session session, string _role)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_permissions(session.opaque_ref, _role);
|
|
else
|
|
return XenRef<Role>.Create(session.proxy.role_get_permissions(session.opaque_ref, _role ?? "").parse());
|
|
}
|
|
|
|
/// <summary>
|
|
/// This call returns a list of permission names given a role
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
/// <param name="_role">The opaque_ref of the given role</param>
|
|
public static string[] get_permissions_name_label(Session session, string _role)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_permissions_name_label(session.opaque_ref, _role);
|
|
else
|
|
return (string [])session.proxy.role_get_permissions_name_label(session.opaque_ref, _role ?? "").parse();
|
|
}
|
|
|
|
/// <summary>
|
|
/// This call returns a list of roles given a permission
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
/// <param name="_role">The opaque_ref of the given permission</param>
|
|
public static List<XenRef<Role>> get_by_permission(Session session, string _role)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_by_permission(session.opaque_ref, _role);
|
|
else
|
|
return XenRef<Role>.Create(session.proxy.role_get_by_permission(session.opaque_ref, _role ?? "").parse());
|
|
}
|
|
|
|
/// <summary>
|
|
/// This call returns a list of roles given a permission name
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
/// <param name="_label">The short friendly name of the role</param>
|
|
public static List<XenRef<Role>> get_by_permission_name_label(Session session, string _label)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_by_permission_name_label(session.opaque_ref, _label);
|
|
else
|
|
return XenRef<Role>.Create(session.proxy.role_get_by_permission_name_label(session.opaque_ref, _label ?? "").parse());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Return a list of all the roles known to the system.
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
public static List<XenRef<Role>> get_all(Session session)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_all(session.opaque_ref);
|
|
else
|
|
return XenRef<Role>.Create(session.proxy.role_get_all(session.opaque_ref).parse());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get all the role Records at once, in a single XML RPC call
|
|
/// First published in XenServer 5.6.
|
|
/// </summary>
|
|
/// <param name="session">The session</param>
|
|
public static Dictionary<XenRef<Role>, Role> get_all_records(Session session)
|
|
{
|
|
if (session.JsonRpcClient != null)
|
|
return session.JsonRpcClient.role_get_all_records(session.opaque_ref);
|
|
else
|
|
return XenRef<Role>.Create<Proxy_Role>(session.proxy.role_get_all_records(session.opaque_ref).parse());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Unique identifier/object reference
|
|
/// </summary>
|
|
public virtual string uuid
|
|
{
|
|
get { return _uuid; }
|
|
set
|
|
{
|
|
if (!Helper.AreEqual(value, _uuid))
|
|
{
|
|
_uuid = value;
|
|
Changed = true;
|
|
NotifyPropertyChanged("uuid");
|
|
}
|
|
}
|
|
}
|
|
private string _uuid = "";
|
|
|
|
/// <summary>
|
|
/// a short user-friendly name for the role
|
|
/// </summary>
|
|
public virtual string name_label
|
|
{
|
|
get { return _name_label; }
|
|
set
|
|
{
|
|
if (!Helper.AreEqual(value, _name_label))
|
|
{
|
|
_name_label = value;
|
|
Changed = true;
|
|
NotifyPropertyChanged("name_label");
|
|
}
|
|
}
|
|
}
|
|
private string _name_label = "";
|
|
|
|
/// <summary>
|
|
/// what this role is for
|
|
/// </summary>
|
|
public virtual string name_description
|
|
{
|
|
get { return _name_description; }
|
|
set
|
|
{
|
|
if (!Helper.AreEqual(value, _name_description))
|
|
{
|
|
_name_description = value;
|
|
Changed = true;
|
|
NotifyPropertyChanged("name_description");
|
|
}
|
|
}
|
|
}
|
|
private string _name_description = "";
|
|
|
|
/// <summary>
|
|
/// a list of pointers to other roles or permissions
|
|
/// </summary>
|
|
[JsonConverter(typeof(XenRefListConverter<Role>))]
|
|
public virtual List<XenRef<Role>> subroles
|
|
{
|
|
get { return _subroles; }
|
|
set
|
|
{
|
|
if (!Helper.AreEqual(value, _subroles))
|
|
{
|
|
_subroles = value;
|
|
Changed = true;
|
|
NotifyPropertyChanged("subroles");
|
|
}
|
|
}
|
|
}
|
|
private List<XenRef<Role>> _subroles = new List<XenRef<Role>>() {};
|
|
}
|
|
}
|