mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-22 00:16:03 +01:00
384b033305
When an upload request is triggered, 1. fetch the upload token from CallHomeSettings, 2. generate the server status report and upload it to CIS server, 3. update the corresponding fields of CallHomeSettings when the upload is finished successfully or failed. Signed-off-by: Hui Zhang <hui.zhang@citrix.com>
217 lines
8.1 KiB
C#
217 lines
8.1 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:
|
|
*
|
|
* * 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.
|
|
*
|
|
* 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.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.IO;
|
|
using System.Net;
|
|
using System.Web.Script.Serialization;
|
|
|
|
|
|
namespace XenServerHealthCheck
|
|
{
|
|
public class XenServerHealthCheckUpload
|
|
{
|
|
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
|
public const string UPLOAD_URL = "https://rttf-staging.citrix.com/feeds/api/";
|
|
public const int CHUNK_SIZE = 1 * 1024 * 1024;
|
|
private JavaScriptSerializer serializer;
|
|
private int verbosityLevel;
|
|
|
|
private string uploadToken;
|
|
|
|
public XenServerHealthCheckUpload(string token, int verbosity)
|
|
{
|
|
uploadToken = token;
|
|
verbosityLevel = verbosity;
|
|
serializer = new JavaScriptSerializer();
|
|
serializer.MaxJsonLength = int.MaxValue;
|
|
}
|
|
|
|
// Request an upload and fetch the uploading id from CIS.
|
|
public string InitiateUpload(long size)
|
|
{
|
|
// Request a new bundle upload to CIS server.
|
|
Uri uri = new Uri(UPLOAD_URL + "bundle/?size=" + size.ToString());
|
|
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri);
|
|
if (uploadToken != null)
|
|
{
|
|
request.Headers.Add("Authorization", "BT " + uploadToken);
|
|
}
|
|
|
|
request.Method = "POST";
|
|
request.ContentType = "application/json";
|
|
request.ServicePoint.Expect100Continue = false;
|
|
|
|
using (var streamWriter = new StreamWriter(request.GetRequestStream()))
|
|
{
|
|
// Add the log verbosity level in json cotent.
|
|
string verbosity = "{\"verbosity\":\"2\"}";
|
|
streamWriter.Write(verbosity);
|
|
}
|
|
|
|
Dictionary<string, object> res = new Dictionary<string, object>();
|
|
try
|
|
{
|
|
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
|
|
using (StreamReader reader = new StreamReader(response.GetResponseStream()))
|
|
{
|
|
string respString = reader.ReadToEnd();
|
|
res = (Dictionary<string, object>)serializer.DeserializeObject(respString);
|
|
}
|
|
response.Close();
|
|
}
|
|
catch (WebException e)
|
|
{
|
|
log.ErrorFormat("Exception while requesting a new CIS uploading: {0}", e);
|
|
return "";
|
|
}
|
|
|
|
if (res.ContainsKey("id"))
|
|
{
|
|
// Get the uuid of uploading
|
|
return (string)res["id"];
|
|
}
|
|
else
|
|
{
|
|
// Fail to initialize the upload request
|
|
return "";
|
|
}
|
|
}
|
|
|
|
// Upload a chunk.
|
|
public bool UploadChunk(string address, string filePath, long offset, long thisChunkSize, string uploadToken)
|
|
{
|
|
Uri uri = new Uri(address);
|
|
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(uri);
|
|
req.Method = "POST";
|
|
req.ContentType = "application/octet-stream";
|
|
req.Headers.Add("Authorization", "BT " + uploadToken);
|
|
|
|
using (Stream destination = req.GetRequestStream())
|
|
{
|
|
using (FileStream source = File.Open(filePath, FileMode.Open))
|
|
{
|
|
source.Position = offset;
|
|
int bytes = Convert.ToInt32(thisChunkSize);
|
|
byte[] buffer = new byte[CHUNK_SIZE];
|
|
int read;
|
|
while (bytes > 0 &&
|
|
(read = source.Read(buffer, 0, Math.Min(buffer.Length, bytes))) > 0)
|
|
{
|
|
destination.Write(buffer, 0, read);
|
|
bytes -= read;
|
|
}
|
|
}
|
|
HttpWebResponse resp = req.GetResponse() as HttpWebResponse;
|
|
HttpStatusCode statusCode = resp.StatusCode;
|
|
|
|
// After sending every chunk upload request to server, response will contain a status indicating if it is complete.
|
|
using (StreamReader reader = new StreamReader(resp.GetResponseStream()))
|
|
{
|
|
string respString = reader.ReadToEnd();
|
|
Dictionary<string, object> res = (Dictionary<string, object>)serializer.DeserializeObject(respString);
|
|
log.InfoFormat("The status of chunk upload: {0}", res["status"]);
|
|
}
|
|
|
|
resp.Close();
|
|
|
|
if (statusCode == HttpStatusCode.OK)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Upload the zip file.
|
|
public string UploadZip(string fileName, System.Threading.CancellationToken cancel)
|
|
{
|
|
FileInfo fileInfo = new FileInfo(fileName);
|
|
long size = fileInfo.Length;
|
|
|
|
// Fetch the upload UUID from CIS server.
|
|
string uploadUuid = InitiateUpload(size);
|
|
if (string.IsNullOrEmpty(uploadUuid))
|
|
{
|
|
log.ErrorFormat("Cannot fetch the upload UUID from CIS server");
|
|
return "";
|
|
}
|
|
|
|
// Start to upload zip file.
|
|
log.InfoFormat("Upload ID: {0}", uploadUuid);
|
|
StringBuilder url = new StringBuilder(UPLOAD_URL + "upload_raw_chunk/?id=" + uploadUuid);
|
|
|
|
long offset = 0;
|
|
while (offset < size)
|
|
{
|
|
url.Append(String.Format("&offset={0}", offset));
|
|
long remainingSize = size - offset;
|
|
long thisChunkSize = (remainingSize > CHUNK_SIZE) ? CHUNK_SIZE : remainingSize;
|
|
|
|
try
|
|
{
|
|
for (int i = 0; i < 3; i++)
|
|
{
|
|
if (cancel.IsCancellationRequested)
|
|
{
|
|
return "";
|
|
}
|
|
|
|
if (UploadChunk(url.ToString(), fileName, offset, thisChunkSize, uploadToken))
|
|
{
|
|
// This chunk is successfully uploaded
|
|
offset += thisChunkSize;
|
|
break;
|
|
}
|
|
|
|
// Fail to upload the chunk for 3 times so fail the bundle upload.
|
|
log.ErrorFormat("Fail to upload the chunk");
|
|
return "";
|
|
}
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
log.Error(e, e);
|
|
return "";
|
|
}
|
|
|
|
}
|
|
|
|
log.InfoFormat("Succeed to upload bundle {0}", fileName);
|
|
return uploadUuid;
|
|
|
|
}
|
|
|
|
}
|
|
}
|