2013-06-24 13:41:48 +02:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-07-03 12:22:08 +02:00
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
using CookComputing.XmlRpc;
|
|
|
|
|
|
|
|
|
|
|
|
namespace XenAPI
|
|
|
|
{
|
|
|
|
public partial class Subject : XenObject<Subject>
|
|
|
|
{
|
|
|
|
public Subject()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public Subject(string uuid,
|
|
|
|
string subject_identifier,
|
|
|
|
Dictionary<string, string> other_config,
|
|
|
|
List<XenRef<Role>> roles)
|
|
|
|
{
|
|
|
|
this.uuid = uuid;
|
|
|
|
this.subject_identifier = subject_identifier;
|
|
|
|
this.other_config = other_config;
|
|
|
|
this.roles = roles;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Creates a new Subject from a Proxy_Subject.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="proxy"></param>
|
|
|
|
public Subject(Proxy_Subject proxy)
|
|
|
|
{
|
|
|
|
this.UpdateFromProxy(proxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void UpdateFrom(Subject update)
|
|
|
|
{
|
|
|
|
uuid = update.uuid;
|
|
|
|
subject_identifier = update.subject_identifier;
|
|
|
|
other_config = update.other_config;
|
|
|
|
roles = update.roles;
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void UpdateFromProxy(Proxy_Subject proxy)
|
|
|
|
{
|
|
|
|
uuid = proxy.uuid == null ? null : (string)proxy.uuid;
|
|
|
|
subject_identifier = proxy.subject_identifier == null ? null : (string)proxy.subject_identifier;
|
|
|
|
other_config = proxy.other_config == null ? null : Maps.convert_from_proxy_string_string(proxy.other_config);
|
|
|
|
roles = proxy.roles == null ? null : XenRef<Role>.Create(proxy.roles);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Proxy_Subject ToProxy()
|
|
|
|
{
|
|
|
|
Proxy_Subject result_ = new Proxy_Subject();
|
|
|
|
result_.uuid = (uuid != null) ? uuid : "";
|
|
|
|
result_.subject_identifier = (subject_identifier != null) ? subject_identifier : "";
|
|
|
|
result_.other_config = Maps.convert_to_proxy_string_string(other_config);
|
|
|
|
result_.roles = (roles != null) ? Helper.RefListToStringArray(roles) : new string[] {};
|
|
|
|
return result_;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Creates a new Subject from a Hashtable.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="table"></param>
|
|
|
|
public Subject(Hashtable table)
|
|
|
|
{
|
|
|
|
uuid = Marshalling.ParseString(table, "uuid");
|
|
|
|
subject_identifier = Marshalling.ParseString(table, "subject_identifier");
|
|
|
|
other_config = Maps.convert_from_proxy_string_string(Marshalling.ParseHashTable(table, "other_config"));
|
|
|
|
roles = Marshalling.ParseSetRef<Role>(table, "roles");
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool DeepEquals(Subject other)
|
|
|
|
{
|
|
|
|
if (ReferenceEquals(null, other))
|
|
|
|
return false;
|
|
|
|
if (ReferenceEquals(this, other))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return Helper.AreEqual2(this._uuid, other._uuid) &&
|
|
|
|
Helper.AreEqual2(this._subject_identifier, other._subject_identifier) &&
|
|
|
|
Helper.AreEqual2(this._other_config, other._other_config) &&
|
|
|
|
Helper.AreEqual2(this._roles, other._roles);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override string SaveChanges(Session session, string opaqueRef, Subject server)
|
|
|
|
{
|
|
|
|
if (opaqueRef == null)
|
|
|
|
{
|
|
|
|
Proxy_Subject p = this.ToProxy();
|
|
|
|
return session.proxy.subject_create(session.uuid, p).parse();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("This type has no read/write properties");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Subject get_record(Session session, string _subject)
|
|
|
|
{
|
|
|
|
return new Subject((Proxy_Subject)session.proxy.subject_get_record(session.uuid, (_subject != null) ? _subject : "").parse());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static XenRef<Subject> get_by_uuid(Session session, string _uuid)
|
|
|
|
{
|
|
|
|
return XenRef<Subject>.Create(session.proxy.subject_get_by_uuid(session.uuid, (_uuid != null) ? _uuid : "").parse());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static XenRef<Subject> create(Session session, Subject _record)
|
|
|
|
{
|
|
|
|
return XenRef<Subject>.Create(session.proxy.subject_create(session.uuid, _record.ToProxy()).parse());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static XenRef<Task> async_create(Session session, Subject _record)
|
|
|
|
{
|
|
|
|
return XenRef<Task>.Create(session.proxy.async_subject_create(session.uuid, _record.ToProxy()).parse());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void destroy(Session session, string _subject)
|
|
|
|
{
|
|
|
|
session.proxy.subject_destroy(session.uuid, (_subject != null) ? _subject : "").parse();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static XenRef<Task> async_destroy(Session session, string _subject)
|
|
|
|
{
|
|
|
|
return XenRef<Task>.Create(session.proxy.async_subject_destroy(session.uuid, (_subject != null) ? _subject : "").parse());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static string get_uuid(Session session, string _subject)
|
|
|
|
{
|
|
|
|
return (string)session.proxy.subject_get_uuid(session.uuid, (_subject != null) ? _subject : "").parse();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static string get_subject_identifier(Session session, string _subject)
|
|
|
|
{
|
|
|
|
return (string)session.proxy.subject_get_subject_identifier(session.uuid, (_subject != null) ? _subject : "").parse();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Dictionary<string, string> get_other_config(Session session, string _subject)
|
|
|
|
{
|
|
|
|
return Maps.convert_from_proxy_string_string(session.proxy.subject_get_other_config(session.uuid, (_subject != null) ? _subject : "").parse());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static List<XenRef<Role>> get_roles(Session session, string _subject)
|
|
|
|
{
|
|
|
|
return XenRef<Role>.Create(session.proxy.subject_get_roles(session.uuid, (_subject != null) ? _subject : "").parse());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void add_to_roles(Session session, string _self, string _role)
|
|
|
|
{
|
|
|
|
session.proxy.subject_add_to_roles(session.uuid, (_self != null) ? _self : "", (_role != null) ? _role : "").parse();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void remove_from_roles(Session session, string _self, string _role)
|
|
|
|
{
|
|
|
|
session.proxy.subject_remove_from_roles(session.uuid, (_self != null) ? _self : "", (_role != null) ? _role : "").parse();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static string[] get_permissions_name_label(Session session, string _self)
|
|
|
|
{
|
|
|
|
return (string [])session.proxy.subject_get_permissions_name_label(session.uuid, (_self != null) ? _self : "").parse();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static List<XenRef<Subject>> get_all(Session session)
|
|
|
|
{
|
|
|
|
return XenRef<Subject>.Create(session.proxy.subject_get_all(session.uuid).parse());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Dictionary<XenRef<Subject>, Subject> get_all_records(Session session)
|
|
|
|
{
|
|
|
|
return XenRef<Subject>.Create<Proxy_Subject>(session.proxy.subject_get_all_records(session.uuid).parse());
|
|
|
|
}
|
|
|
|
|
|
|
|
private string _uuid;
|
|
|
|
public virtual string uuid {
|
|
|
|
get { return _uuid; }
|
|
|
|
set { if (!Helper.AreEqual(value, _uuid)) { _uuid = value; Changed = true; NotifyPropertyChanged("uuid"); } }
|
|
|
|
}
|
|
|
|
|
|
|
|
private string _subject_identifier;
|
|
|
|
public virtual string subject_identifier {
|
|
|
|
get { return _subject_identifier; }
|
|
|
|
set { if (!Helper.AreEqual(value, _subject_identifier)) { _subject_identifier = value; Changed = true; NotifyPropertyChanged("subject_identifier"); } }
|
|
|
|
}
|
|
|
|
|
|
|
|
private Dictionary<string, string> _other_config;
|
|
|
|
public virtual Dictionary<string, string> other_config {
|
|
|
|
get { return _other_config; }
|
|
|
|
set { if (!Helper.AreEqual(value, _other_config)) { _other_config = value; Changed = true; NotifyPropertyChanged("other_config"); } }
|
|
|
|
}
|
|
|
|
|
|
|
|
private List<XenRef<Role>> _roles;
|
|
|
|
public virtual List<XenRef<Role>> roles {
|
|
|
|
get { return _roles; }
|
|
|
|
set { if (!Helper.AreEqual(value, _roles)) { _roles = value; Changed = true; NotifyPropertyChanged("roles"); } }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|