Ejemplo n.º 1
0
        private static int XMLFUSRequest(string URL, string xml, out string xmlresponse)
        {
            xmlresponse = null;
            HttpWebRequest wr = KiesRequest.Create(URL);

            wr.Method = "POST";
            wr.Headers["Authorization"] = "FUS nonce=\"\", signature=\"" + Imports.GetAuthorization(Nonce) + "\", nc=\"\", type=\"\", realm=\"\"";
            byte[] bytes = Encoding.ASCII.GetBytes(Regex.Replace(xml, @"\r\n?|\n|\t", string.Empty));
            wr.ContentLength = bytes.Length;
            using (Stream stream = wr.GetRequestStream())
            {
                stream.Write(bytes, 0, bytes.Length);
            }
            using (HttpWebResponse response = (HttpWebResponse)wr.GetResponseFUS())
            {
                if (response == null)
                {
                    return(0x385);
                }
                if (response.StatusCode == HttpStatusCode.OK)
                {
                    try
                    {
                        xmlresponse = new StreamReader(response.GetResponseStream()).ReadToEnd();
                    }
                    catch (Exception)
                    {
                        return(900);
                    }
                }
                return((int)response.StatusCode);
            }
        }
Ejemplo n.º 2
0
        public static int GenerateNonce()
        {
            HttpWebRequest wr = KiesRequest.Create("https://neofussvr.sslcs.cdngc.net/NF_DownloadGenerateNonce.do");

            wr.Method        = "POST";
            wr.ContentLength = 0L;
            using (HttpWebResponse response = (HttpWebResponse)wr.GetFUSResponse())
            {
                if (response == null)
                {
                    return(0x385);
                }
                return((int)response.StatusCode);
            }
        }
Ejemplo n.º 3
0
        public static int DownloadBinary(string path, string file, string saveTo, string size, bool GUI = true)
        {
            int            num5;
            long           num = 0L;
            HttpWebRequest wr  = KiesRequest.Create("http://cloud-neofussvr.sslcs.cdngc.net/NF_DownloadBinaryForMass.do?file=" + path + file);

            wr.Method = "GET";
            wr.Headers["Authorization"] = Imports.GetAuthorization(Nonce).Replace("Authorization: ", "").Replace("nonce=\"", "nonce=\"" + Nonce);
            wr.Timeout          = 0x61a8;
            wr.ReadWriteTimeout = 0x61a8;
            if (System.IO.File.Exists(saveTo))
            {
                long length = new FileInfo(saveTo).Length;
                if (long.Parse(size) == length)
                {
                    Logger.WriteLog("File already downloaded.", false);
                    return(200);
                }
                Logger.WriteLog("File exists. Resuming download...", false);
                wr.AddRange((int)length);
                num = length;
            }
            using (HttpWebResponse response = (HttpWebResponse)wr.GetResponseFUS())
            {
                if (response == null)
                {
                    Logger.WriteLog("Error downloading: response is null", false);
                    return(0x385);
                }
                if ((response.StatusCode != HttpStatusCode.OK) && (response.StatusCode != HttpStatusCode.PartialContent))
                {
                    Logger.WriteLog("Error downloading: " + ((int)response.StatusCode), false);
                }
                else
                {
                    long total = long.Parse(response.GetResponseHeader("content-length")) + num;
                    if (!System.IO.File.Exists(saveTo) || (new FileInfo(saveTo).Length != total))
                    {
                        byte[]    buffer = new byte[0x2000];
                        Stopwatch sw     = new Stopwatch();
                        Utility.ResetSpeed(num);
                        try
                        {
                            Utility.PreventDeepSleep(Utility.PDSMode.Start);
                            using (BinaryWriter writer = new BinaryWriter(new FileStream(saveTo, FileMode.Append)))
                            {
                                int count = 0;
                                do
                                {
                                    Utility.PreventDeepSleep(Utility.PDSMode.Continue);
                                    if (GUI && form.PauseDownload)
                                    {
                                        goto Label_02BB;
                                    }
                                    num += count = response.GetResponseStream().Read(buffer, 0, buffer.Length);
                                    if (count > 0)
                                    {
                                        writer.Write(buffer, 0, count);
                                        if (GUI)
                                        {
                                            int dlspeed = Utility.DownloadSpeed(num, sw);
                                            if (dlspeed != -1)
                                            {
                                                form.lbl_speed.Invoke(new Action(delegate {
                                                    form.lbl_speed.Text = dlspeed + "kB/s";
                                                }));
                                            }
                                        }
                                    }
                                    if (GUI)
                                    {
                                        form.SetProgressBar(Utility.GetProgress(num, total));
                                    }
                                    else
                                    {
                                        CmdLine.SetProgress(Utility.GetProgress(num, total));
                                    }
                                }while (count > 0);
                            }
                        }
                        catch (IOException exception)
                        {
                            Logger.WriteLog("Error: Can't access output file " + saveTo, false);
                            if (GUI)
                            {
                                form.PauseDownload = true;
                            }
                            Logger.WriteLog(exception.ToString(), false);
                            return(-1);
                        }
                        catch (WebException)
                        {
                            Logger.WriteLog("Error: Connection interrupted", false);
                            SetReconnect();
                        }
                        finally
                        {
                            Utility.PreventDeepSleep(Utility.PDSMode.Stop);
                            if (GUI)
                            {
                                form.lbl_speed.Invoke(new Action(delegate {
                                    form.lbl_speed.Text = "0kB/s";
                                }));
                            }
                        }
                    }
                }
Label_02BB:
                num5 = (int)response.StatusCode;
            }
            return(num5);
        }