home *** CD-ROM | disk | FTP | other *** search
/ Adelphia Powerlink / adelphia-powerlink.iso / install / inc / onclose.js < prev    next >
Encoding:
Text File  |  2003-03-10  |  5.5 KB  |  163 lines

  1. function External_OnClose()
  2. {
  3.   ssSubmitSIOnClose(gGlobalServer);
  4. }
  5.  
  6. function ssSubmitSIOnClose(strServer)
  7. {
  8.   // Get date and format it
  9.   var objDate = new Date();
  10.   var strDate = objDate.getDate();
  11.   var strYear = objDate.getFullYear();
  12.   var strMonth = objDate.getMonth();
  13.   var strHour = objDate.getHours();
  14.   var strMinutes = objDate.getMinutes();
  15.   var strSeconds = objDate.getSeconds();
  16.   
  17.   var formattedDate = new Date(strYear,strMonth,strDate,strHour,strMinutes,strSeconds);
  18.   
  19.   var strFullDate = strMonth + "/" + strDate + "/" + strYear + " " + strHour + ":" + strMinutes + ":" + strSeconds;
  20.   
  21.   ssSetReg("timeFlow", ssGetReg("timeFlow") + strFullDate + "<br>");
  22.  
  23.   var strErrorMessage = "";
  24.   var issueId = ssGetIssueID();
  25.   var issueFile = document.si.GetIssueFile(issueId);
  26.   var displayMain;
  27.   var stat = false;
  28.  
  29.   if (strServer == "")
  30.   {
  31.     strServer = " ";
  32.   }
  33.   
  34.   // Check basic connection before submitting SI
  35.   if (!ssTestConnection(TEST_CONNECT_INT_ADD,TEST_CONNECT_INT_PORT))
  36.   {
  37.     strErrorMessage = "<b>Error:</b> " + MSG_CONNECTIVITY_ERROR;
  38.     stat = false;
  39.   }
  40.  
  41.   // We have connectivity, so go ahead with SI submission
  42.   else
  43.   {
  44.     document.si.EnableErrorExceptions(false);
  45.     ssSetReg('CurrentSubmittedSI',issueId);
  46.         
  47.     var errCode = 0, stat = false;
  48.     
  49.     // Error handling if server is not found
  50.     if (document.si.GetLastError() == 536870965)
  51.     {
  52.       var fullError = document.si.GetLastErrorMsg();
  53.       var errorSplit = fullError.split("=");
  54.       strErrorMessage = errorSplit[1];
  55.       alert(strErrorMessage);
  56.     }
  57.     else
  58.     {
  59.       // Update the SmartIssue with new key/values
  60.  
  61.       document.si.StartXMLIO(issueFile);
  62.       
  63.       // Break SI fields into chucks smaller than 300 characters to accommodate dynamic table limitations
  64.       // on the server
  65.       var pflowLength = ssGetReg("pageFlow").length;
  66.       var pflowString = ssGetReg("pageFlow");
  67.       var trimmedString, className, pageIndex;
  68.       var startIndex = 0;
  69.       var endIndex = 294;
  70.       
  71.       if (pflowLength > 295)
  72.       {
  73.         var counter = Math.ceil(pflowLength/295);
  74.         for (i=0; i<=counter-1; i++)
  75.         {
  76.           className = "PageFlow" + i;
  77.           if (endIndex > pflowLength-1)
  78.           {
  79.             endIndex = pflowLength;
  80.           }
  81.           trimmedString = pflowString.slice(startIndex,endIndex);
  82.           document.si.UpdateXMLFile("PageFlow", i, "PageFlow", trimmedString, "");
  83.           startIndex = endIndex;
  84.           endIndex += 295;
  85.           pageIndex = i;
  86.         }
  87.       }
  88.       // if data is <= 295 characters
  89.       else
  90.       {
  91.         document.si.UpdateXMLFile("PageFlow", 0, "PageFlow", ssGetReg("pageFlow"), "");
  92.         pageIndex = 0;
  93.       }
  94.       
  95.       // Break SI fields into chucks smaller than 300 characters to accommodate dynamic table limitations
  96.       // on the server
  97.       var tflowLength = ssGetReg("timeFlow").length;
  98.       var tflowString = ssGetReg("timeFlow");
  99.       var tTrimmedString, tclassName, timeIndex;
  100.       var tstartIndex = 0;
  101.       var tendIndex = 294;
  102.       
  103.       if (tflowLength > 295)
  104.       {
  105.         var counter = Math.ceil(tflowLength/295);
  106.         for (j=0; j<=counter-1; j++)
  107.         {
  108.           className = "TimeFlow" + j;
  109.           if (tendIndex > tflowLength)
  110.           {
  111.             tendIndex = tflowLength;
  112.           }
  113.           tTrimmedString = tflowString.slice(tstartIndex,tendIndex);
  114.           document.si.UpdateXMLFile("TimeFlow", j, "TimeFlow", tTrimmedString, "");
  115.           tstartIndex = tendIndex;
  116.           tendIndex += 295;
  117.           timeIndex = j;
  118.         }
  119.       }
  120.       // if data is <= 295 characters
  121.       else
  122.       {
  123.         document.si.UpdateXMLFile("TimeFlow", 0, "TimeFlow", ssGetReg("timeFlow"), "");
  124.         timeIndex = 0;
  125.       }
  126.  
  127.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "LastStep", ssGetNameIndex(ssGetCurrentPage()), "");
  128.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "LastPage", ssGetCurrentPage(), "");
  129.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "PageIndex", pageIndex, "");
  130.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "TimeIndex", timeIndex, "");
  131.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "Adapter", ssGetReg("SelectedAdapter"), "");
  132.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "AdapterName", ssGetReg("AdapterName"), "");
  133.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "FilterDemo", ssGetReg("FilterDemo"), "");
  134.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "ModemDemo", ssGetReg("ModemDemo"), "");
  135.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "language", ssGetReg("language"), "");
  136.       document.si.UpdateXMLFile("SDC_Connectivity", "ConnectionData", "PostToQueue", "0", "");
  137.     
  138.       document.si.EndXMLIO();
  139.       
  140.       // form local cab file name and location
  141.       var cabIssueFile = issueFile.replace(/xml$/i, "cab"); 
  142.     
  143.       // compress the xml to cab
  144.       var success = window.external.CompressFile(issueFile, cabIssueFile, true);
  145.     
  146.       // form remote cab file destination
  147.       var issueDir = strServer;
  148.       issueDir += "\\issue\\";
  149.     
  150.       var rcabFn = issueDir + issueId + ".cab"
  151.       
  152.       // submit SI to remote location through HttpRequest
  153.       window.external.EnableErrorExceptions(false);
  154.       stat = window.external.HttpRequest(2, cabIssueFile, rcabFn);
  155.       
  156.     }
  157.   }
  158.   
  159.   return stat;
  160.   window.external.EnableErrorExceptions(true);
  161.  
  162. }
  163.