File: D:/HostingSpaces/RMourik/bassol.nl/CMS/CMSModules/ImportExport/Controls/ExportWizard.ascx.cs
using System;
using System.Collections;
using System.Security.Principal;
using System.Web.UI;
using System.Web.UI.WebControls;
using CMS.CMSImportExport;
using CMS.Core;
using CMS.EventLog;
using CMS.ExtendedControls;
using CMS.Helpers;
using CMS.IO;
using CMS.Membership;
using CMS.PortalControls;
using CMS.Base;
using CMS.PortalEngine;
using CMS.UIControls;
using IOExceptions = System.IO;
public partial class CMSModules_ImportExport_Controls_ExportWizard : CMSUserControl, ICallbackEventHandler
{
#region "Constants"
/// <summary>
/// Short link to help page regarding disk permissions.
/// </summary>
private const string HELP_TOPIC_DISKPERMISSIONS_LINK = "disk_permission_problems";
#endregion
#region "Variables"
private static readonly Hashtable mManagers = new Hashtable();
private static object mLock = new object();
#endregion
#region "Properties"
/// <summary>
/// Redirection URL after finish button click.
/// </summary>
public string FinishUrl
{
get;
set;
}
/// <summary>
/// Export manager.
/// </summary>
public ExportManager ExportManager
{
get
{
string key = "exManagers_" + ProcessGUID;
if (mManagers[key] == null)
{
// Restart of the application
if (ApplicationInstanceGUID != SystemHelper.ApplicationInstanceGUID)
{
// Lock section to avoid multiple log same error
lock (mLock)
{
LogStatusEnum progressLog = ExportSettings.GetProgressState();
if (progressLog == LogStatusEnum.Info)
{
ExportSettings.LogProgressState(LogStatusEnum.UnexpectedFinish, GetString("SiteExport.ApplicationRestarted"));
}
}
}
ExportManager em = new ExportManager(ExportSettings);
mManagers[key] = em;
}
return (ExportManager)mManagers[key];
}
set
{
string key = "exManagers_" + ProcessGUID;
mManagers[key] = value;
}
}
/// <summary>
/// Wizard height.
/// </summary>
public int PanelHeight
{
get
{
return ValidationHelper.GetInteger(ViewState["PanelHeight"], 400);
}
set
{
ViewState["PanelHeight"] = value;
}
}
/// <summary>
/// Site ID.
/// </summary>
public int SiteId
{
get
{
return ValidationHelper.GetInteger(ViewState["SiteId"], 0);
}
set
{
ViewState["SiteId"] = value;
}
}
/// <summary>
/// Application instance GUID.
/// </summary>
public Guid ApplicationInstanceGUID
{
get
{
if (ViewState["ApplicationInstanceGUID"] == null)
{
ViewState["ApplicationInstanceGUID"] = SystemHelper.ApplicationInstanceGUID;
}
return ValidationHelper.GetGuid(ViewState["ApplicationInstanceGUID"], Guid.Empty);
}
}
/// <summary>
/// Export process GUID.
/// </summary>
public Guid ProcessGUID
{
get
{
if (ViewState["ProcessGUID"] == null)
{
ViewState["ProcessGUID"] = Guid.NewGuid();
}
return ValidationHelper.GetGuid(ViewState["ProcessGUID"], Guid.Empty);
}
}
/// <summary>
/// Persistent settings key.
/// </summary>
public string PersistentSettingsKey
{
get
{
return "Export_" + ProcessGUID + "_Settings";
}
}
/// <summary>
/// Export settings stored in viewstate.
/// </summary>
public SiteExportSettings ExportSettings
{
get
{
SiteExportSettings settings = (SiteExportSettings)SiteExportSettings.GetFromPersistentStorage(PersistentSettingsKey);
if (settings == null)
{
if (wzdExport.ActiveStepIndex == 0)
{
settings = GetNewSettings();
}
else
{
throw new Exception("[ExportWizard.ExportSettings]: Export settings has been lost.");
}
}
return settings;
}
set
{
PersistentStorageHelper.SetValue(PersistentSettingsKey, value);
}
}
#endregion
#region "Finish step wizard buttons"
/// <summary>
/// Finish button.
/// </summary>
public LocalizedButton FinishButton
{
get
{
return wzdExport.FindControl("FinishNavigationTemplateContainerID").FindControl("StepFinishButton") as LocalizedButton;
}
}
/// <summary>
/// Previous button.
/// </summary>
public LocalizedButton PreviousButton
{
get
{
return wzdExport.FindControl("FinishNavigationTemplateContainerID").FindControl("StepPreviousButton") as LocalizedButton;
}
}
/// <summary>
/// Next button.
/// </summary>
public LocalizedButton NextButton
{
get
{
return wzdExport.FindControl("StartNavigationTemplateContainerID").FindControl("StepNextButton") as LocalizedButton;
}
}
/// <summary>
/// Cancel button.
/// </summary>
public LocalizedButton CancelButton
{
get
{
return wzdExport.FindControl("FinishNavigationTemplateContainerID").FindControl("StepCancelButton") as LocalizedButton;
}
}
#endregion
#region "Events handling"
protected void Page_Load(object sender, EventArgs e)
{
// Register script for pendingCallbacks repair
ScriptHelper.FixPendingCallbacks(Page);
// Handle export settings
if (!RequestHelper.IsCallback() && !RequestHelper.IsPostBack())
{
ExportSettings = GetNewSettings();
}
if (!RequestHelper.IsCallback())
{
// Display BETA warning
lblBeta.Visible = CMSVersion.IsBetaVersion();
lblBeta.Text = string.Format(GetString("export.BETAwarning"), CMSVersion.GetFriendlySystemVersion(false));
bool notTargetPermissions = false;
bool notTempPermissions = false;
ctrlAsync.OnFinished += ctrlAsync_OnFinished;
ctrlAsync.OnError += ctrlAsync_OnError;
// Init steps
if (wzdExport.ActiveStepIndex < 2)
{
configExport.Settings = ExportSettings;
if (!RequestHelper.IsPostBack())
{
configExport.SiteId = SiteId;
}
pnlExport.Settings = ExportSettings;
// Ensure directories and check permissions
try
{
DirectoryHelper.EnsureDiskPath(ExportSettings.TargetPath + "\\temp.file", ExportSettings.WebsitePath);
notTargetPermissions = !DirectoryHelper.CheckPermissions(ExportSettings.TargetPath, true, true, false, false);
}
catch (UnauthorizedAccessException)
{
notTargetPermissions = true;
}
catch (IOExceptions.IOException ex)
{
pnlWrapper.Visible = false;
SetAlertLabel(lblErrorBlank, ex.Message);
return;
}
try
{
DirectoryHelper.EnsureDiskPath(ExportSettings.TemporaryFilesPath + "\\temp.file", ExportSettings.WebsitePath);
notTempPermissions = !DirectoryHelper.CheckPermissions(ExportSettings.TemporaryFilesPath, true, true, false, false);
}
catch (UnauthorizedAccessException)
{
notTempPermissions = true;
}
catch (IOExceptions.IOException ex)
{
pnlWrapper.Visible = false;
SetAlertLabel(lblErrorBlank, ex.Message);
return;
}
}
if (notTargetPermissions || notTempPermissions)
{
string folder = (notTargetPermissions) ? ExportSettings.TargetPath : ExportSettings.TemporaryFilesPath;
pnlWrapper.Visible = false;
pnlPermissions.Visible = true;
SetAlertLabel(lblErrorBlank, String.Format(GetString("ExportSite.ErrorPermissions"), folder, WindowsIdentity.GetCurrent().Name));
lnkPermissions.Target = "_blank";
lnkPermissions.Text = GetString("Install.ErrorPermissions");
lnkPermissions.NavigateUrl = DocumentationHelper.GetDocumentationTopicUrl(HELP_TOPIC_DISKPERMISSIONS_LINK);
}
else
{
// Try to delete temporary files from previous export
if (!RequestHelper.IsPostBack())
{
try
{
ExportProvider.DeleteTemporaryFiles(ExportSettings, false);
}
catch (Exception ex)
{
pnlWrapper.Visible = false;
SetAlertLabel(lblErrorBlank, GetString("ImportSite.ErrorDeletionTemporaryFiles") + " " + ex.Message);
return;
}
}
PortalHelper.EnsureScriptManager(Page).EnablePageMethods = true;
// Javascript functions
string script =
@"var exMessageText = '';
var exErrorText = '';
var exWarningText = '';
var exMachineName = '" + SystemContext.MachineName.ToLowerCSafe() + @"';
var getBusy = false;
function GetExportState(cancel) {
if (window.Activity) {
window.Activity();
}
if (getBusy) return;
getBusy = true;
var argument = cancel + ';' + exMessageText.length + ';' + exErrorText.length + ';' + exWarningText.length + ';' + exMachineName;
" + Page.ClientScript.GetCallbackEventReference(this, "argument", "SetExportStateMssg", "argument", "ProcessSetExportError", false) + @";
}
function ProcessSetExportError(arg, context) {
getBusy = false;
}
function SetExportStateMssg(rValue, context) {
getBusy = false;
if (rValue!='') {
var args = context.split(';');
var values = rValue.split('" + SiteExportSettings.SEPARATOR + @"');
var messageElement = document.getElementById('" + lblProgress.ClientID + @"');
var errorElement = document.getElementById('" + lblError.ClientID + @"');
var warningElement = document.getElementById('" + lblWarning.ClientID + @"');
var messageText = exMessageText;
messageText = values[1] + messageText.substring(messageText.length - args[1]);
if (messageText.length > exMessageText.length) {
exMessageText = messageElement.innerHTML = messageText;
}
var errorText = exErrorText;
errorText = values[2] + errorText.substring(errorText.length - args[2]);
if (errorText.length > exErrorText.length) {
exErrorText = errorElement.innerHTML = errorText;
document.getElementById('" + pnlError.ClientID + @"').style.removeProperty('display');
}
var warningText = exWarningText;
warningText = values[3] + warningText.substring(warningText.length - args[3]);
if (warningText.length > exWarningText.length) {
exWarningText = warningElement.innerHTML = warningText;
document.getElementById('" + pnlWarning.ClientID + @"').style.removeProperty('display');
}
if ((values=='') || (values[0]=='F')) {
StopExportStateTimer();
var actDiv = document.getElementById('actDiv');
if (actDiv != null) { actDiv.style.display = 'none'; }
BTN_Enable('" + FinishButton.ClientID + @"');
try {
BTN_Disable('" + CancelButton.ClientID + @"');
}
catch(err) {
}
}
}
}";
// Register the script to perform get flags for showing buttons retrieval callback
ScriptHelper.RegisterClientScriptBlock(this, GetType(), "GetSetExportState", ScriptHelper.GetScript(script));
// Add cancel button attribute
CancelButton.Attributes.Add("onclick", "BTN_Disable('" + CancelButton.ClientID + "'); return CancelExport();");
wzdExport.NextButtonClick += wzdExport_NextButtonClick;
wzdExport.PreviousButtonClick += wzdExport_PreviousButtonClick;
wzdExport.FinishButtonClick += wzdExport_FinishButtonClick;
if (!RequestHelper.IsPostBack())
{
configExport.InitControl();
}
}
}
}
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
// Initilaize header
InitializeHeader();
// Button click script
const string afterScript = "var exClicked = false; \n" +
"function exNextStepAction() \n" +
"{ \n" +
" if(!exClicked) \n" +
" { \n" +
" exClicked = true; \n" +
" return true; \n" +
" } \n" +
" return false; \n" +
"} \n";
ltlScriptAfter.Text += ScriptHelper.GetScript(afterScript);
// Ensure default button
EnsureDefaultButton();
InitAlertLabels();
}
protected override void Render(HtmlTextWriter writer)
{
base.Render(writer);
// Save the settings
if (wzdExport.ActiveStep.StepType != WizardStepType.Finish)
{
ExportSettings.SavePersistent();
}
}
private void wzdExport_FinishButtonClick(object sender, WizardNavigationEventArgs e)
{
if (String.IsNullOrEmpty(FinishUrl))
{
FinishUrl = UIContextHelper.GetElementUrl(ModuleName.CMS, "Sites", false);
}
URLHelper.Redirect(FinishUrl);
}
private void wzdExport_PreviousButtonClick(object sender, WizardNavigationEventArgs e)
{
wzdExport.ActiveStepIndex = e.NextStepIndex;
}
private void wzdExport_NextButtonClick(object sender, WizardNavigationEventArgs e)
{
switch (e.CurrentStepIndex)
{
case 0:
// Apply settings
if (!configExport.ApplySettings())
{
e.Cancel = true;
return;
}
// Update settings
ExportSettings = configExport.Settings;
if (!configExport.ExportHistory)
{
ltlScriptAfter.Text = ScriptHelper.GetScript(
"var actDiv = document.getElementById('actDiv'); \n" +
"if (actDiv != null) { actDiv.style.display='block'; } \n" +
"var buttonsDiv = document.getElementById('buttonsDiv'); if (buttonsDiv != null) { buttonsDiv.disabled=true; } \n" +
"BTN_Disable('" + NextButton.ClientID + "'); \n" +
"StartSelectionTimer();"
);
// Select objects asynchronously
ctrlAsync.RunAsync(SelectObjects, WindowsIdentity.GetCurrent());
e.Cancel = true;
}
else
{
pnlExport.Settings = ExportSettings;
pnlExport.ReloadData();
}
break;
case 1:
// Apply settings
if (!pnlExport.ApplySettings())
{
e.Cancel = true;
return;
}
ExportSettings = pnlExport.Settings;
// Delete temporary files
try
{
ExportProvider.DeleteTemporaryFiles(ExportSettings, true);
}
catch (Exception ex)
{
SetErrorLabel(ex.Message);
e.Cancel = true;
return;
}
try
{
// Save export history
ExportHistoryInfo history = new ExportHistoryInfo();
history.ExportDateTime = DateTime.Now;
history.ExportFileName = ExportSettings.TargetFileName;
history.ExportSettings = ExportSettings.GetXML();
history.ExportSiteID = ExportSettings.SiteId;
history.ExportUserID = MembershipContext.AuthenticatedUser.UserID;
ExportHistoryInfoProvider.SetExportHistoryInfo(history);
}
catch (Exception ex)
{
SetErrorLabel(ex.Message);
pnlError.ToolTip = EventLogProvider.GetExceptionLogMessage(ex);
e.Cancel = true;
return;
}
// Init the Mimetype helper (required for the export)
MimeTypeHelper.LoadMimeTypes();
if (ExportSettings.SiteId > 0)
{
ExportSettings.EventLogSource = string.Format(ExportSettings.GetAPIString("ExportSite.EventLogSiteSource", "Export '{0}' site"), ResHelper.LocalizeString(ExportSettings.SiteInfo.DisplayName));
}
// Start asynchronnous export
ExportManager.Settings = ExportSettings;
AsyncWorker worker = new AsyncWorker();
worker.OnFinished += worker_OnFinished;
worker.OnError += worker_OnError;
worker.RunAsync(ExportManager.Export, WindowsIdentity.GetCurrent());
lblProgress.Text = GetString("SiteExport.PreparingExport");
break;
}
ReloadSteps();
wzdExport.ActiveStepIndex = e.NextStepIndex;
}
protected void ctrlAsync_OnError(object sender, EventArgs e)
{
SetErrorLabel(((AsyncControl)sender).Worker.LastException.Message);
// Stop the timer
ltlScript.Text += ScriptHelper.GetScript("StopSelectionTimer();");
}
protected void ctrlAsync_OnFinished(object sender, EventArgs e)
{
// Stop the timer
const string script = "StopSelectionTimer();";
pnlExport.Settings = ExportSettings;
pnlExport.ReloadData();
wzdExport.ActiveStepIndex++;
ltlScriptAfter.Text += ScriptHelper.GetScript(script);
}
// Preselect objects
private void SelectObjects(object parameter)
{
ExportSettings.LoadDefaultSelection();
}
protected void worker_OnError(object sender, EventArgs e)
{
}
protected void worker_OnFinished(object sender, EventArgs e)
{
}
#endregion
#region "Private methods"
private void InitializeHeader()
{
int stepIndex = wzdExport.ActiveStepIndex + 1;
ucHeader.Title = string.Format(GetString("ExportPanel.Title"), stepIndex, wzdExport.WizardSteps.Count);
switch (wzdExport.ActiveStepIndex)
{
case 0:
ucHeader.Header = GetString("ExportPanel.ObjectsSettingsHeader");
ucHeader.Description = GetString("ExportPanel.ObjectsSelectionSetting");
break;
case 1:
ucHeader.Header = GetString("ExportPanel.ObjectsSelectionHeader");
ucHeader.Description = GetString("ExportPanel.ObjectsSelectionDescription");
break;
case 2:
ucHeader.Header = GetString("ExportPanel.ObjectsProgressHeader");
ucHeader.Description = GetString("ExportPanel.ObjectsProgressDescription");
break;
}
}
private void ReloadSteps()
{
switch (wzdExport.ActiveStepIndex)
{
case 0:
break;
case 1:
//this.pnlExport.ReloadData();
ltlScript.Text = ScriptHelper.GetScript("StartExportStateTimer();");
break;
case 2:
break;
}
}
private void EnsureDefaultButton()
{
if (wzdExport.ActiveStep.StepType == WizardStepType.Start)
{
Page.Form.DefaultButton = wzdExport.FindControl("StartNavigationTemplateContainerID").FindControl("StepNextButton").UniqueID;
}
else if (wzdExport.ActiveStep.StepType == WizardStepType.Step)
{
Page.Form.DefaultButton = wzdExport.FindControl("StepNavigationTemplateContainerID").FindControl("StepNextButton").UniqueID;
}
else if (wzdExport.ActiveStep.StepType == WizardStepType.Finish)
{
Page.Form.DefaultButton = wzdExport.FindControl("FinishNavigationTemplateContainerID").FindControl("StepFinishButton").UniqueID;
}
}
/// <summary>
/// Creates new settings object for export.
/// </summary>
private SiteExportSettings GetNewSettings()
{
SiteExportSettings result = new SiteExportSettings(MembershipContext.AuthenticatedUser);
result.WebsitePath = Server.MapPath("~/");
result.TargetPath = ImportExportHelper.GetSiteUtilsFolder() + "Export";
result.PersistentSettingsKey = PersistentSettingsKey;
return result;
}
/// <summary>
/// Iniliazes (hides) alert labels
/// </summary>
private void InitAlertLabels()
{
// Do not use Visible property to hide this elements. They are used in JS.
pnlError.Attributes.CssStyle.Add(HtmlTextWriterStyle.Display, String.IsNullOrEmpty(lblError.Text) ? "none" : "block");
pnlWarning.Attributes.CssStyle.Add(HtmlTextWriterStyle.Display, String.IsNullOrEmpty(lblWarning.Text) ? "none" : "block");
}
/// <summary>
/// Displays text in given altert lable
/// </summary>
/// <param name="label">Alert label</param>
/// <param name="text">Text to display</param>
private void SetAlertLabel(Label label, string text)
{
label.Text = text;
}
/// <summary>
/// Displays error alert label with given text
/// </summary>
/// <param name="text">Text to display</param>
private void SetErrorLabel(string text)
{
SetAlertLabel(lblError, text);
}
#endregion
#region "Callback handling"
/// <summary>
/// Gets the current export state.
/// </summary>
/// <param name="argument">Argument</param>
public string GetExportState(string argument)
{
string result = null;
// Get arguments
string[] args = argument.Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
bool cancel = ValidationHelper.GetBoolean(args[0], false);
int messageLength = 0;
int errorLength = 0;
int warningLength = 0;
string machineName = null;
if (args.Length == 5)
{
messageLength = ValidationHelper.GetInteger(args[1], 0);
errorLength = ValidationHelper.GetInteger(args[2], 0);
warningLength = ValidationHelper.GetInteger(args[3], 0);
machineName = ValidationHelper.GetString(args[4], null);
}
// Check if on same machine
if (machineName == SystemContext.MachineName.ToLowerCSafe())
{
try
{
// Cancel export
if (cancel)
{
ExportManager.Settings.Cancel();
}
result = ExportManager.Settings.GetLimitedProgressLog(messageLength, errorLength, warningLength);
}
catch (Exception ex)
{
EventLogProvider.LogException("ExportWizard", "EXPORT", ex);
result = ExportManager.Settings.GetLimitedProgressLog(messageLength, errorLength, warningLength);
}
finally
{
if (ExportManager.Settings.GetProgressState() != LogStatusEnum.Info)
{
// Delete persistent data
PersistentStorageHelper.RemoveValue(PersistentSettingsKey);
}
}
}
return result;
}
/// <summary>
/// Callback event handler.
/// </summary>
/// <param name="argument">Callback argument</param>
public void RaiseCallbackEvent(string argument)
{
hdnState.Value = GetExportState(argument);
}
/// <summary>
/// Callback result retrieving handler.
/// </summary>
public string GetCallbackResult()
{
return hdnState.Value;
}
#endregion
}