mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-22 00:16:03 +01:00
9c13c7e4b9
In the CallHomeAuthenticationAction.SetUploadTokenSecret() check if the tokenKey is null (public static, may be reused later). Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
188 lines
7.3 KiB
C#
188 lines
7.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Net;
|
|
using Microsoft.Win32;
|
|
using XenAdmin.Network;
|
|
using XenAPI;
|
|
using System.Web.Script.Serialization;
|
|
|
|
namespace XenAdmin.Actions
|
|
{
|
|
public class CallHomeAuthenticationAction : AsyncAction
|
|
{
|
|
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
|
|
|
private readonly Pool pool;
|
|
private readonly string username;
|
|
private readonly string password;
|
|
|
|
private readonly bool saveTokenAsSecret;
|
|
private readonly long tokenExpiration;
|
|
|
|
private string uploadToken;
|
|
|
|
private const string identityTokenUrl = "/auth/api/create_identity/";
|
|
private const string uploadGrantTokenUrl = "/feeds/api/create_grant/";
|
|
private const string uploadTokenUrl = "/feeds/api/create_upload/";
|
|
|
|
private readonly string identityTokenDomainName = "http://cis-daily.citrite.net";
|
|
private readonly string uploadGrantTokenDomainName = "https://rttf-staging.citrix.com";
|
|
private readonly string uploadTokenDomainName = "https://rttf-staging.citrix.com";
|
|
|
|
private const string productKey = "eb1b224c461038baf1f08dfba6b8d4b4413f96c7";
|
|
|
|
public CallHomeAuthenticationAction(Pool pool, string username, string password, bool saveTokenAsSecret, long tokenExpiration, bool suppressHistory)
|
|
: base(pool != null ? pool.Connection : null, Messages.ACTION_CALLHOME_AUTHENTICATION, Messages.ACTION_CALLHOME_AUTHENTICATION_PROGRESS, suppressHistory)
|
|
{
|
|
this.pool = pool;
|
|
this.username = username;
|
|
this.password = password;
|
|
this.saveTokenAsSecret = saveTokenAsSecret;
|
|
this.tokenExpiration = tokenExpiration;
|
|
#region RBAC Dependencies
|
|
if (saveTokenAsSecret)
|
|
ApiMethodsToRoleCheck.Add("pool.set_health_check_config");
|
|
#endregion
|
|
|
|
}
|
|
|
|
public CallHomeAuthenticationAction(Pool pool, string username, string password,
|
|
string identityTokenDomainName, string uploadGrantTokenDomainName, string uploadTokenDomainName, bool saveTokenAsSecret, long tokenExpiration, bool suppressHistory)
|
|
: this(pool, username, password, saveTokenAsSecret, tokenExpiration, suppressHistory)
|
|
{
|
|
if (!string.IsNullOrEmpty(identityTokenDomainName))
|
|
this.identityTokenDomainName = identityTokenDomainName;
|
|
if (!string.IsNullOrEmpty(identityTokenDomainName))
|
|
this.uploadGrantTokenDomainName = uploadGrantTokenDomainName;
|
|
if (!string.IsNullOrEmpty(identityTokenDomainName))
|
|
this.uploadTokenDomainName = uploadTokenDomainName;
|
|
}
|
|
|
|
protected override void Run()
|
|
{
|
|
System.Diagnostics.Trace.Assert(pool != null || !saveTokenAsSecret, "Pool is null! Cannot save token as secret");
|
|
try
|
|
{
|
|
string identityToken = GetIdentityToken();
|
|
string uploadGrantToken = GetUploadGrantToken(identityToken);
|
|
uploadToken = GetUploadToken(uploadGrantToken);
|
|
|
|
if (saveTokenAsSecret && pool != null)
|
|
{
|
|
log.Info("Saving upload token as xapi secret");
|
|
Dictionary<string, string> newConfig = pool.health_check_config;
|
|
SetTokenSecret(Connection, newConfig, CallHomeSettings.UPLOAD_TOKEN_SECRET, uploadToken);
|
|
Pool.set_health_check_config(Connection.Session, pool.opaque_ref, newConfig);
|
|
}
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
log.Error("Exception trying to authenticate", e);
|
|
Exception = e;
|
|
}
|
|
}
|
|
|
|
public string UploadToken
|
|
{
|
|
get { return uploadToken; }
|
|
}
|
|
|
|
public static void SetUploadTokenSecret(IXenConnection connection, Dictionary<string, string> config, string uploadToken)
|
|
{
|
|
SetTokenSecret(connection, config, CallHomeSettings.UPLOAD_TOKEN_SECRET, uploadToken);
|
|
}
|
|
|
|
public static void SetTokenSecret(IXenConnection connection, Dictionary<string, string> config, string tokenKey, string tokenValue)
|
|
{
|
|
if (string.IsNullOrEmpty(tokenKey))
|
|
return;
|
|
|
|
if (tokenValue == null)
|
|
{
|
|
config.Remove(tokenKey);
|
|
}
|
|
else if (config.ContainsKey(tokenKey))
|
|
{
|
|
try
|
|
{
|
|
string secretRef = Secret.get_by_uuid(connection.Session, config[tokenKey]);
|
|
Secret.set_value(connection.Session, secretRef, tokenValue);
|
|
}
|
|
catch (Failure)
|
|
{
|
|
config[tokenKey] = Secret.CreateSecret(connection.Session, tokenValue);
|
|
}
|
|
catch (WebException)
|
|
{
|
|
config[tokenKey] = Secret.CreateSecret(connection.Session, tokenValue);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
config[tokenKey] = Secret.CreateSecret(connection.Session, tokenValue);
|
|
}
|
|
}
|
|
|
|
private string GetIdentityToken()
|
|
{
|
|
var json = new JavaScriptSerializer().Serialize(new
|
|
{
|
|
username,
|
|
password
|
|
});
|
|
var urlString = string.Format("{0}{1}", identityTokenDomainName, identityTokenUrl);
|
|
return GetToken(urlString, json);
|
|
}
|
|
|
|
private string GetUploadGrantToken(string identityToken)
|
|
{
|
|
var json = new JavaScriptSerializer().Serialize(new
|
|
{
|
|
identity_token = identityToken,
|
|
expiration = tokenExpiration
|
|
});
|
|
var urlString = string.Format("{0}{1}", uploadGrantTokenDomainName, uploadGrantTokenUrl);
|
|
return GetToken(urlString, json);
|
|
}
|
|
|
|
private string GetUploadToken(string grantToken)
|
|
{
|
|
var json = new JavaScriptSerializer().Serialize(new
|
|
{
|
|
grant_token = grantToken,
|
|
product_key = productKey,
|
|
expiration = tokenExpiration
|
|
});
|
|
var urlString = string.Format("{0}{1}", uploadTokenDomainName, uploadTokenUrl);
|
|
return GetToken(urlString, json);
|
|
}
|
|
|
|
private string GetToken(string urlString, string jsonParameters)
|
|
{
|
|
var httpWebRequest = (HttpWebRequest) WebRequest.Create(urlString);
|
|
httpWebRequest.ContentType = "application/json";
|
|
httpWebRequest.Method = "POST";
|
|
|
|
using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream()))
|
|
{
|
|
streamWriter.Write(jsonParameters);
|
|
}
|
|
string result;
|
|
var httpResponse = (HttpWebResponse) httpWebRequest.GetResponse();
|
|
using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
|
|
{
|
|
result = streamReader.ReadToEnd();
|
|
}
|
|
TemplateResponse response = new JavaScriptSerializer().Deserialize<TemplateResponse>(result);
|
|
return response.Token;
|
|
}
|
|
|
|
class TemplateResponse
|
|
{
|
|
public string Token { get; set; }
|
|
}
|
|
}
|
|
}
|
|
|