Ejemplo n.º 1
0
        public static void ScanningUTM()
        {
            List <UTM> UTM_List = WorkWithDB.GetUTM();
            bool       isActive = false;

            foreach (var u in UTM_List)
            {
                isActive = ConnectionAttempt(u.URL);

                WorkWithDB.UpdateUTMState(u.UTMId, isActive);
            }
        }
Ejemplo n.º 2
0
        public static List <Task> GetXMLFromUTM()
        {
            List <Task> tasksList = new List <Task>();
            List <UTM>  utm       = WorkWithDB.GetActiveUTM();

            int TimeOut = Convert.ToInt32(ConfigurationManager.AppSettings.Get("HTTPTimeout")); //httpTimeout\

            if (TimeOut == 0)
            {
                TimeOut = 20000;
            }

            foreach (var u in utm)
            {
                tasksList.Add(AsyncGet(u, TimeOut));
            }
            return(tasksList);
        }
Ejemplo n.º 3
0
        public static List <Task> SendXMLToUTM()
        {
            List <Task> tasksList = new List <Task>();
            List <UTM>  utmList   = WorkWithDB.GetActiveUTM();

            int TimeOut = Convert.ToInt32(ConfigurationManager.AppSettings.Get("HTTPTimeout")); // httpTimeout

            if (TimeOut == 0)
            {
                TimeOut = 20000;
            }

            foreach (var u in utmList)
            {
                List <UTM_Data> utmDataList = WorkWithDB.GetNewData(u.UTMId);

                tasksList.Add(AsyncSend(utmDataList, TimeOut));
            }
            return(tasksList);
        }
Ejemplo n.º 4
0
        public void ParseAndSafeResponseFromUTM(string responseFromUTM, Guid rowId, WorkWithDB workWithDB) // after sended XMLContent to UTM
        {
            if (responseFromUTM != null)
            {
                string ReplyId;

                try
                {
                    //parse response from UTM
                    XDocument xdoc = XDocument.Parse(responseFromUTM);
                    ReplyId = xdoc.Root.Element("url")?.Value;

                    //update buffer table
                    if (ReplyId != null | ReplyId != "")
                    {
                        workWithDB.UpdateBuffer(rowId, ReplyId);
                    }
                }
                catch (Exception ex)
                {
                    Log log = new Log(ex);
                }
            }
        }
Ejemplo n.º 5
0
        public static void Send(List <UTM_Data> utmDataList, int timeOut)
        {
            WorkWithXML workWithXML = new WorkWithXML();
            WorkWithDB  workWithDB  = new WorkWithDB();

            foreach (var utmData in utmDataList)
            {
                HttpWebRequest httpWebRequest;

                try
                {
                    string sendingStatus = ConfigurationManager.AppSettings.Get("SendingStatus");
                    if (sendingStatus == null || sendingStatus == "")
                    {
                        sendingStatus = "Sending";
                    }

                    workWithDB.SetStatus(utmData.RowId, sendingStatus);

                    string responseFromServer = null;
                    string boundary           = "---------------------------" + DateTime.Now.Ticks.ToString("x");

                    string fileExtension = ConfigurationManager.AppSettings.Get("FileExtension");
                    if (fileExtension == null || fileExtension == "")
                    {
                        fileExtension = ".xml";
                    }

                    string path = ConfigurationManager.AppSettings.Get("PathToTempFiles");
                    if (path == null || path == "")
                    {
                        path = Path.GetTempPath();
                    }

                    string filePath = path + utmData.RowId + fileExtension;

                    using (StreamWriter streamWriter = new StreamWriter(filePath, false, Encoding.UTF8)) // write file to Temp catalog
                    {
                        streamWriter.WriteLine(utmData.XMLContent);
                    }

                    httpWebRequest             = (HttpWebRequest)WebRequest.Create(utmData.URL);
                    httpWebRequest.Timeout     = Convert.ToInt32(timeOut);
                    httpWebRequest.ContentType = "multipart/form-data; boundary=" + boundary;
                    httpWebRequest.Method      = "POST";
                    httpWebRequest.KeepAlive   = true;
                    httpWebRequest.Credentials = CredentialCache.DefaultCredentials;

                    //request to UTM
                    using (Stream requestStream = httpWebRequest.GetRequestStream())
                    {
                        byte[] boundaryBytesBegin = Encoding.ASCII.GetBytes("\r\n--" + boundary + "\r\n");
                        requestStream.Write(boundaryBytesBegin, 0, boundaryBytesBegin.Length);

                        byte[] headersBytes = Encoding.UTF8.GetBytes(string.Format($"Content-Disposition: form-data; name=\"xml_file\"; filename=\"{filePath}\"\r\nContent-Type: text/xml\r\n\r\n"));
                        requestStream.Write(headersBytes, 0, headersBytes.Length);

                        byte[] bytesXMLContent = Encoding.UTF8.GetBytes(utmData.XMLContent);
                        requestStream.Write(bytesXMLContent, 0, bytesXMLContent.Length);

                        byte[] boundaryBytesEnd = Encoding.ASCII.GetBytes("\r\n--" + boundary + "--\r\n");
                        requestStream.Write(boundaryBytesEnd, 0, boundaryBytesEnd.Length);
                    }

                    HttpWebResponse httpWebResponse;

                    //response from UTM
                    using (httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse())
                    {
                        responseFromServer = new StreamReader(httpWebResponse.GetResponseStream()).ReadToEnd();
                    }
                    httpWebRequest = null;

                    //parse response and update buffer table
                    workWithXML.ParseAndSafeResponseFromUTM(responseFromServer, utmData.RowId, workWithDB);

                    //delete temp xml file
                    if (File.Exists(filePath))
                    {
                        File.Delete(filePath);
                    }
                }
                catch (Exception ex)
                {
                    Log log = new Log(ex);

                    string errorStatus = ConfigurationManager.AppSettings.Get("ErrorStatus");
                    if (errorStatus == null || errorStatus == "")
                    {
                        errorStatus = "Error";
                    }

                    workWithDB.SetStatus(utmData.RowId, errorStatus);

                    httpWebRequest = null;
                }
            }
        }
Ejemplo n.º 6
0
        public static void DeleteAsiiuTicketFromUTM()
        {
            List <UTM> utmList = WorkWithDB.GetActiveUTM();

            try
            {
                foreach (var utm in utmList)
                {
                    if (utm.IsActive & UTMDeleteTicketPossibility(utm.UTMId))
                    {
                        string pathToOutFilesFromUTM = ConfigurationManager.AppSettings.Get("pathToTicket");

                        int timeOut = Convert.ToInt32(ConfigurationManager.AppSettings.Get("HTTPTimeout")); // httpTimeout
                        if (timeOut == 0)
                        {
                            timeOut = 20000;
                        }

                        HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(utm.URL + pathToOutFilesFromUTM);
                        httpWebRequest.Method  = "GET";
                        httpWebRequest.Timeout = Convert.ToInt32(timeOut);

                        WorkWithXML     workWithXML       = new WorkWithXML();
                        List <UTM_Data> listTicketFromUtm = null; // all files on UTM

                        using (StreamReader streamReader = new StreamReader(httpWebRequest.GetResponse().GetResponseStream(), Encoding.UTF8))
                        {
                            string responseFromUTM = streamReader.ReadToEnd();                     // xml with list of all tickets on UTM
                            listTicketFromUtm = workWithXML.ParseResponseFromUTM(responseFromUTM); // get list all files on UTM
                        }

                        httpWebRequest = null;

                        foreach (var linkticket in listTicketFromUtm)
                        {
                            string Ticket = null;

                            HttpWebRequest httpWebRequestGetTicket = (HttpWebRequest)WebRequest.Create(linkticket.URL);
                            httpWebRequestGetTicket.Method  = "GET";
                            httpWebRequestGetTicket.Timeout = Convert.ToInt32(timeOut);

                            using (StreamReader streamReader = new StreamReader(httpWebRequestGetTicket.GetResponse().GetResponseStream(), Encoding.UTF8))
                            {
                                Ticket = streamReader.ReadToEnd();
                            }

                            httpWebRequestGetTicket = null;

                            linkticket.XMLContent = Ticket;
                            linkticket.UTMId      = utm.UTMId;

                            string docType = workWithXML.GetTicketDocType(linkticket.XMLContent);

                            if (!DocTypeDeletePossibility(docType))
                            {
                                DateTime TicketDate  = DateTime.Parse(WorkWithXML.GetDateFromXml(linkticket.XMLContent));
                                DateTime NowDateTime = DateTime.Now;
                                TimeSpan TicketOld   = NowDateTime.Subtract(TicketDate);

                                string ticketTimeSpan = ConfigurationManager.AppSettings.Get("ticketTimeSpan");

                                if (TicketOld > TimeSpan.Parse(ticketTimeSpan))
                                {
                                    HttpWebRequest  httpWebRequestDelete  = null;
                                    HttpWebResponse httpWebResponseDelete = null;

                                    try
                                    {
                                        httpWebRequestDelete        = (HttpWebRequest)WebRequest.Create(linkticket.URL);
                                        httpWebRequestDelete.Method = "DELETE";
                                        httpWebResponseDelete       = (HttpWebResponse)httpWebRequestDelete.GetResponse();
                                    }
                                    finally
                                    {
                                        httpWebRequestDelete  = null;
                                        httpWebResponseDelete = null;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                Log log = new Log(ex);
            }
        } // delete Asiiu's tickets from UTM