home *** CD-ROM | disk | FTP | other *** search
/ Adelphia Powerlink / adelphia-powerlink.iso / install / inc / activator.js next >
Encoding:
JavaScript  |  2003-06-13  |  16.0 KB  |  434 lines

  1. //**********************************************************************************
  2. //**
  3. //**  File Name: activator.js
  4. //**
  5. //**  Summary: SupportSoft Activator Support JavaScript File
  6. //**
  7. //**  Description: This file contains global functions and structures used by
  8. //**               serveral pages to make HTTP POST calls with the SI information
  9. //**               to communicate with backend systems via activators.
  10. //**
  11. //**  Copyright SupportSoft Inc. 2003, All rights reserved.
  12. //**
  13. //**********************************************************************************
  14.  
  15. //**********************************************************************************
  16. // Constants
  17. //**********************************************************************************
  18.  
  19. // Values for index, tracking ID, sequence ID on submission of SmartIssue
  20. var SI_USERNAME_INDEX = "100";
  21. var SI_THANKYOU_INDEX = "200";
  22.  
  23. var SI_USERNAME_SEQUENCE_ID = "1";
  24. var SI_THANKYOU_SEQUENCE_ID = "2";
  25.  
  26. var SI_USERNAME_TRACKING_ID = "1";
  27. var SI_THANKYOU_TRACKING_ID = "2";
  28.  
  29. // Custom error message
  30. var MSG_CUSTOM_ERROR = "We were unable to connect you to the server. Please check all your network connections and try again. If you continue to get this error, please contact Road Runner.<br>";
  31.  
  32. // If we fail basic connectivity test message
  33. var MSG_CONNECTIVITY_ERROR = "We were unable to establish basic network connection. Please check all your network connections and try again. If you continue to get this error, please contact BellSouth.<br>";
  34.  
  35. //**********************************************************************************
  36. // Functions
  37. //**********************************************************************************
  38.  
  39. //*******************************
  40. // Name:         ssDisplayStatus
  41. // Purpose:      Hides buttons and shows status bar. Used with ssSendXml
  42. //*******************************
  43. function ssDisplayStatus()
  44. {
  45.   document.all.error.style.display = "none";
  46.   document.all.main.style.display = "none";
  47.   document.all.status.style.display = "block";
  48.   document.all.buttons.style.visibility = "hidden";
  49.  
  50.   setTimeout('ssSendXml(gGlobalServer)',1000);
  51. }
  52.  
  53. //*******************************
  54. // Name:         ssSendXml
  55. // Purpose:      Submit SmartIssue to specified server to communicate with
  56. //               backend servers via activators
  57. // Parameter:    server -- The remote server to which the SmartIssue will be submitted
  58. // Return:       boolean
  59. //*******************************
  60. function ssSendXml(strServer)
  61. {
  62.   // Get date and format it
  63.   var objDate = new Date();
  64.   var strDate = objDate.getDate();
  65.   var strYear = objDate.getFullYear();
  66.   var strMonth = objDate.getMonth();
  67.   var strHour = objDate.getHours();
  68.   var strMinutes = objDate.getMinutes();
  69.   var strSeconds = objDate.getSeconds();
  70.   
  71.   var formattedDate = new Date(strYear,strMonth,strDate,strHour,strMinutes,strSeconds);
  72.   
  73.   var strFullDate = strMonth + "/" + strDate + "/" + strYear + " " + strHour + ":" + strMinutes + ":" + strSeconds;
  74.   
  75.   ssSetReg("timeFlow", ssGetReg("timeFlow") + strFullDate + "<br>");
  76.  
  77.   // Begin submission stuff
  78.   var strErrorMessage = "";
  79.   var issueId = ssGetIssueID();
  80.   var issueFile = document.si.GetIssueFile(issueId);
  81.   var displayMain;
  82.   var stat = false;
  83.  
  84.   if (strServer == "")
  85.   {
  86.     strServer = " ";
  87.   }
  88.   
  89.   // Check basic connection before submitting SI
  90.   if (!ssTestConnection(TEST_CONNECT_INT_ADD,TEST_CONNECT_INT_PORT))
  91.   {
  92.     strErrorMessage = "<b>Error:</b> " + MSG_CONNECTIVITY_ERROR;
  93.     if (ssGetCurrentPage() != "devices.htm")
  94.     {
  95.       document.all.main.style.display = "block";
  96.       document.all.status.style.display = "none";
  97.       document.all.error.style.display = "block";
  98.       document.all.buttons.style.visibility = "visible";
  99.     }
  100.     stat = false;
  101.   }
  102.  
  103.   // We have connectivity, so go ahead with SI submission
  104.   else
  105.   {
  106.     document.si.EnableErrorExceptions(false);
  107.     ssSetReg('CurrentSubmittedSI',issueId);
  108.         
  109.     var errCode = 0, stat = false;
  110.     
  111.     // Error handling if server is not found
  112.     if (document.si.GetLastError() == 536870965)
  113.     {
  114.       var fullError = document.si.GetLastErrorMsg();
  115.       var errorSplit = fullError.split("=");
  116.       strErrorMessage = errorSplit[1];
  117.   
  118.       // Display the page properly
  119.       if (ssGetCurrentPage() != "devices.htm")
  120.       {
  121.         document.all.main.style.display = "block";
  122.         document.all.status.style.display = "none";
  123.         document.all.error.style.display = "block";
  124.         document.all.buttons.style.visibility = "visible";
  125.       }
  126.     }
  127.     else
  128.     {
  129.       // Update the SmartIssue with new key/values
  130.  
  131.       document.si.StartXMLIO(issueFile);
  132.       
  133.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "LastStep", ssGetNameIndex(ssGetCurrentPage()), "");
  134.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "LastPage", ssGetCurrentPage(), "");
  135.       
  136.       // Break SI fields into chucks smaller than 300 characters to accommodate dynamic table limitations
  137.       // on the server
  138.       var pflowLength = ssGetReg("pageFlow").length;
  139.       var pflowString = ssGetReg("pageFlow");
  140.       var trimmedString, className, pageIndex;
  141.       var startIndex = 0;
  142.       var endIndex = 294;
  143.       
  144.       if (pflowLength > 295)
  145.       {
  146.         var counter = Math.ceil(pflowLength/295);
  147.         for (i=0; i<=counter-1; i++)
  148.         {
  149.           className = "PageFlow" + i;
  150.           if (endIndex > pflowLength-1)
  151.           {
  152.             endIndex = pflowLength;
  153.           }
  154.           trimmedString = pflowString.slice(startIndex,endIndex);
  155.           document.si.UpdateXMLFile("PageFlow", i, "PageFlow", trimmedString, "");
  156.           startIndex = endIndex;
  157.           endIndex += 295;
  158.           pageIndex = i;
  159.         }
  160.       }
  161.       // if data is <= 295 characters
  162.       else
  163.       {
  164.         document.si.UpdateXMLFile("PageFlow", 0, "PageFlow", ssGetReg("pageFlow"), "");
  165.         pageIndex = 0;
  166.       }
  167.       
  168.       // Break SI fields into chucks smaller than 300 characters to accommodate dynamic table limitations
  169.       // on the server
  170.       var tflowLength = ssGetReg("timeFlow").length;
  171.       var tflowString = ssGetReg("timeFlow");
  172.       var tTrimmedString, tclassName, timeIndex;
  173.       var tstartIndex = 0;
  174.       var tendIndex = 294;
  175.       
  176.       if (tflowLength > 295)
  177.       {
  178.         var counter = Math.ceil(tflowLength/295);
  179.         for (j=0; j<=counter-1; j++)
  180.         {
  181.           className = "TimeFlow" + j;
  182.           if (tendIndex > tflowLength)
  183.           {
  184.             tendIndex = tflowLength;
  185.           }
  186.           tTrimmedString = tflowString.slice(tstartIndex,tendIndex);
  187.           document.si.UpdateXMLFile("TimeFlow", j, "TimeFlow", tTrimmedString, "");
  188.           tstartIndex = tendIndex;
  189.           tendIndex += 295;
  190.           timeIndex = j;
  191.         }
  192.       }
  193.       // if data is <= 295 characters
  194.       else
  195.       {
  196.         document.si.UpdateXMLFile("TimeFlow", 0, "TimeFlow", ssGetReg("timeFlow"), "");
  197.         timeIndex = 0;
  198.       }
  199.       
  200.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "Language", ssGetReg("language"), "");
  201.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "PageIndex", pageIndex, "");
  202.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "TimeIndex", timeIndex, "");
  203.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "Adapter", ssGetReg("SelectedAdapter"), "");
  204.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "AdapterName", ssGetReg("AdapterName"), "");
  205.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "AdapterType", ssGetReg("ModemType"), "");
  206.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "FilterDemo", ssGetReg("FilterDemo"), "");
  207.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "ModemDemo", ssGetReg("ModemDemo"), "");
  208.  
  209.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "provider", ssGetReg("provider"), "");
  210.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "state", ssGetReg("state"), "");
  211.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "division", ssGetReg("division"), "");
  212.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "city", ssGetReg("city"), "");
  213.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "firstname", ssGetReg("firstname"), "");
  214.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "lastname", ssGetReg("lastname"), "");
  215.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "zip", ssGetReg("zip"), "");
  216.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "phone_num", ssGetReg("phone_num"), "");
  217.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "workorder", ssGetReg("workorder"), "");
  218.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "userid", ssGetReg("username"), "");
  219.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "selfinstall", ssGetReg("selfinstall"), "");
  220.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "ModemDemo", ssGetReg("ModemDemo"), "");
  221.       
  222.       // Did technician do install
  223.       var techdata = window.external.QueryRegValue("HKLM", "Software\\support.com", "TechData");
  224.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "TechData", techdata, "");
  225.       document.si.UpdateXMLFile("SDC_Connectivity", "ConnectionData", "PostToQueue", "0", "");
  226.   
  227.       var pages = ssGetReg("pageFlow");
  228.       var times = ssGetReg("timeFlow");
  229.       
  230.       var arrayPageFlow = pages.split("<br>");
  231.       var arrayTimeFlow = times.split("<br>");
  232.       var objDateOne, objDateTwo, dif, pageFormatted
  233.       var elapsedTime = "";
  234.  
  235.       for (k=0; k < arrayPageFlow.length-1; k++)
  236.       {
  237.         objDateOne = new Date(arrayTimeFlow[k]);
  238.         objDateTwo = new Date(arrayTimeFlow[k+1]);
  239.         dif = objDateTwo.getTime()-objDateOne.getTime(); // time on page in milliseconds
  240.         dif = dif/1000; // time on page in seconds
  241.  
  242.         pageFormatted = arrayPageFlow[k].substring(0, arrayPageFlow[k].indexOf("."))
  243.         
  244.         document.si.UpdateXMLFile("SDC_SAPages", k, "Page", pageFormatted, "");
  245.         document.si.UpdateXMLFile("SDC_SAPages", k, "Time", dif, "");
  246.       }
  247.  
  248.       var objDateStart, objDateEnd;
  249.       objDateStart = new Date(arrayTimeFlow[0]);
  250.       objDateEnd = new Date(arrayTimeFlow[arrayTimeFlow.length-2]);
  251.       var milliseconds = objDateEnd.getTime()-objDateStart.getTime(); // elapsed time in milliseconds
  252.       elapsedTime = milliseconds/1000; // elapsed time in seconds
  253.  
  254.       var elapsedSeconds, elapsedMinutes, elapsedHours;
  255.       
  256.       elapsedMinutes = elapsedTime/60;
  257.       elapsedMinutes = Math.floor(elapsedMinutes);
  258.       elapsedSeconds = eval(elapsedTime - (elapsedMinutes * 60));
  259.       elapsedHours = elapsedMinutes/60;
  260.       elapsedHours = Math.floor(elapsedHours);
  261.       elapsedMinutes = eval(elapsedMinutes - (elapsedHours * 60));
  262.       
  263.       var strSeconds = new String(elapsedSeconds);
  264.       var strMinutes = new String(elapsedMinutes);
  265.       var strHours = new String(elapsedHours);
  266.       
  267.       // convert time to string
  268.       if (strSeconds.length == 1)
  269.       {
  270.         strSeconds = "0" + strSeconds;
  271.       }
  272.       if (strMinutes.length == 1)
  273.       {
  274.         strMinutes = "0" + strMinutes;
  275.       }
  276.       if (strHours.length == 1)
  277.       {
  278.         strHours = "0" + strHours;
  279.       }
  280.       
  281.       // format time for SI add
  282.       var strElapsedTime = strHours + ":" + strMinutes + ":" + strSeconds;
  283.       document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "elapsedTime", strElapsedTime, "");
  284.  
  285.       document.si.EndXMLIO();
  286.       
  287.       // form local cab file name and location
  288.       var cabIssueFile = issueFile.replace(/xml$/i, "cab"); 
  289.     
  290.       // compress the xml to cab
  291.       var success = window.external.CompressFile(issueFile, cabIssueFile, true);
  292.     
  293.       // form remote cab file destination
  294.       var issueDir = strServer;
  295.       issueDir += "\\issue\\";
  296.     
  297.       var rcabFn = issueDir + issueId + ".cab"
  298.       
  299.       // submit SI to remote location through HttpRequest
  300.       window.external.EnableErrorExceptions(false);
  301.       stat = window.external.HttpRequest(2, cabIssueFile, rcabFn);
  302.       
  303.       // **************************
  304.       // Error handling
  305.       // **************************
  306.       errCode = window.external.GetLastError();
  307.   
  308.       var strReturnedMessage = "";
  309.       var strErrorMsg;
  310.   
  311.       if ((errCode != 0) && (errCode < 600)) {
  312.         strErrorMsg = window.external.GetLastErrorMsg();
  313.  
  314.         // Handle 500 errors
  315.         if (errCode.toString().charAt(0) == 5 && errCode.toString().length == 3)
  316.         {
  317.           // Display test in the <h1> tag as error message
  318.           var h1RegExp = /<h1>(.*)<\/h1>/i;
  319.           var arrayResults = strErrorMsg.match(h1RegExp);
  320.           var strParsedMessage;
  321.           
  322.           if (arrayResults != null)
  323.           {
  324.             strParsedMessage = arrayResults[1];
  325.           }
  326.           else
  327.           {
  328.             strParsedMessage = "Internal Server Error.";
  329.           }
  330.  
  331.           strErrorMessage = "<b>Error " + errCode + ":</b> " + strParsedMessage + "<br>";
  332.         }
  333.         
  334.         // Parse the return to get errors
  335.         var arrayErrorMsg = strErrorMsg.split("(ProvActivator)-MESSAGE: |");
  336.         if (arrayErrorMsg.length > 1)
  337.         {
  338.           var completionCode = 0;
  339.           var errorCode = 0;
  340.           var trackingID = 0;
  341.           var sequenceID = 0;
  342.           var errorText = "";
  343.           var activeError = "";
  344.           var username = "";
  345.          
  346.           // Break down the sections
  347.           var arrayKeyValue = arrayErrorMsg[1].split("|");
  348.           for (i=0; i <= arrayKeyValue.length-1; i++)
  349.           {
  350.             var arrayFields = arrayKeyValue[i].split("=");
  351.             switch (arrayFields[0])
  352.             {
  353.               case "completioncode" :
  354.                 completionCode = arrayFields[1];
  355.               break;
  356.               case "errortext" :
  357.                 errorText = arrayFields[1];
  358.               break;
  359.               case "errorcode" :
  360.                 errorCode = arrayFields[1];
  361.               break;
  362.               case "trackingid" :
  363.                 trackingID = arrayFields[1];
  364.               break;
  365.               case "sequence" :
  366.                 sequenceID = arrayFields[1];
  367.               break;
  368.               case "activeerror" :
  369.                 activeError = arrayFields[1];
  370.               break;
  371.               case "username" :
  372.                 username = arrayFields[1];
  373.               break;
  374.             }
  375.           }
  376.   
  377.           if (activeError != "")
  378.           {
  379.             strErrorMessage = "<b>Error " + errCode + ":</b> " + activeError + "<br>";
  380.           }
  381.           else if (completionCode != 1)
  382.           {
  383.             if (errorCode != 0)
  384.             {
  385.               strErrorMessage = "<b>Error " + errCode + ":</b> " + errorText + "<br>";
  386.             }
  387.             else
  388.             {
  389.               strErrorMessage = "<b>Error " + errCode + ":</b> " + completionCode + "<br>";
  390.             }
  391.           }
  392.         }
  393.       }
  394.       else
  395.       {
  396.         strErrorMessage = "<b>Custom Error " + errCode + ":</b> Server: " + strServer + ".<br>" + MSG_CUSTOM_ERROR;
  397.       }
  398.   
  399.       if (stat == true && strErrorMessage == "")
  400.       {
  401.         if (ssGetCurrentPage() != "thankyou.htm")
  402.         {
  403.           // Advance to next page
  404.           ssGoNextStep();
  405.         }
  406.       }
  407.       else
  408.       {
  409.         if (ssGetCurrentPage() != "devices.htm" && ssGetCurrentPage() != "thankyou.htm")
  410.         {
  411.           document.all.error.style.display = "block";
  412.           document.all.main.style.display = displayMain;
  413.           document.all.status.style.display = "none";
  414.           document.all.buttons.style.visibility = "visible";
  415.         }
  416.       }
  417.     }
  418.   }
  419.   
  420.   // If we found an error, display it properly
  421.   if (strErrorMessage != "")
  422.   {
  423.     if (ssGetCurrentPage() == "thankyou.htm")
  424.     {
  425.       document.all.error.style.display = "block";
  426.       document.all.error.innerHTML = "<p class='error'><b>Error:</b> " + strErrorMessage + "</p>";
  427.     }
  428.   }
  429.   
  430.   return stat;
  431.   window.external.EnableErrorExceptions(true);
  432. }
  433.  
  434.