Beispiel #1
0
        private void BGThread_DoWork(object sender, DoWorkEventArgs e)
        {
            // Make sure ifme temp folder is clean
            if (Directory.Exists(Globals.AppInfo.TempFolder))
            {
                foreach (var item in Directory.GetFiles(Globals.AppInfo.TempFolder))
                {
                    File.Delete(item);
                }
            }

            // Move here, let another thread do his job
            Addons.Installed.Get();
            Language.Installed.Get();

            // Delete old old stuff
            if (File.Exists(Path.Combine(Globals.AppInfo.CurrentFolder, "za.dll")))
            {
                File.Delete(Path.Combine(Globals.AppInfo.CurrentFolder, "za.dll"));
            }

            // Get IFME version
            try
            {
                InvokeStatus("Checking version", Globals.AppInfo.NameTitle);
                Globals.AppInfo.VersionNew = client.DownloadString("http://x265.github.io/update/version.txt");
                string[] GetVersion    = Globals.AppInfo.VersionNew.Split('.');
                int[]    GetVersionInt = new int[4];

                for (int x = 0; x < 4; x++)
                {
                    GetVersionInt[x] = int.Parse(GetVersion[x]);
                }

                string[] NowVersion    = Globals.AppInfo.Version.Split('.');
                int[]    NowVersionInt = new int[4];

                for (int i = 0; i < 4; i++)
                {
                    NowVersionInt[i] = int.Parse(NowVersion[i]);
                }

                for (int i = 0; i < 4; i++)
                {
                    if (NowVersionInt[i] == GetVersionInt[i])
                    {
                        Globals.AppInfo.VersionEqual = true;
                        Globals.AppInfo.VersionMsg   = String.Format("{0} is Up-to-date!", Globals.AppInfo.NameShort);
                        continue;
                    }
                    else if (NowVersionInt[i] < GetVersionInt[i])
                    {
                        Globals.AppInfo.VersionEqual = false;
                        Globals.AppInfo.VersionMsg   = String.Format("Version {0}.{1}.{2}.{3} is available! click About button to perform updates!", GetVersion);
                        break;
                    }
                    else
                    {
                        Globals.AppInfo.VersionEqual = false;
                        Globals.AppInfo.VersionMsg   = String.Format("This version intend for private testing, public version are {0}.{1}.{2}.{3}", GetVersion);
                        break;
                    }
                }
            }
            catch (WebException ex)
            {
                InvokeStatus("Error", ex.Message);
                System.Threading.Thread.Sleep(wait);
                return;
            }

            // Fetch news
            try
            {
                InvokeStatus("Loading", "Fetch latest news");
                Globals.AppInfo.News = client.DownloadString("https://x265.github.io/page/x-news.txt");
            }
            catch
            {
                Globals.AppInfo.News = null;
                InvokeStatus("Error", "Are you offline?");
                System.Threading.Thread.Sleep(wait);
            }

            // IFME have new version, dont proceed check addons verions
            if (!Globals.AppInfo.VersionEqual)
            {
                return;
            }

            // If use disable update, dont proceed
            if (!Properties.Settings.Default.UpdateAlways)
            {
                return;
            }

            // Get addons version and update
            for (int i = 1; i < Addons.Installed.Data.GetLength(0); i++)
            {
                // Stop when reach end of addons
                if (Addons.Installed.Data[i, 0] == null)
                {
                    break;
                }

                // Get version
                try
                {
                    InvokeStatus("Loading", Addons.Installed.Data[i, 2]);

                    if (String.IsNullOrEmpty(Addons.Installed.Data[i, 8]))
                    {
                        continue;
                    }

                    string GetVersion = client.DownloadString(Addons.Installed.Data[i, 8]);
                    if (GetVersion == Addons.Installed.Data[i, 4] || GetVersion == null)
                    {
                        continue;
                    }
                }
                catch
                {
                    continue;
                }

                // Apply update
                try
                {
                    InvokeStatus("Downloading updates", Addons.Installed.Data[i, 2]);
                    client.DownloadFileAsync(new Uri(Addons.Installed.Data[i, 9]), Path.Combine(Addons.Folder, "addons.ifz"));
                    finish = false;

                    while (finish == false) /* block and do noting... */ } {
                    // Proceed extract update if file exist and not zero length file
                    if (File.Exists(Path.Combine(Addons.Folder, "addons.ifz")))
                    {
                        FileInfo ChapLen = new FileInfo(Path.Combine(Addons.Folder, "addons.ifz"));
                        if (ChapLen.Length > 1024)
                        {
                            InvokeStatus("Updating", Addons.Installed.Data[i, 2]);
                            System.IO.Directory.Delete(Addons.Installed.Data[i, 0], true);
                            Addons.Extract(Path.Combine(Addons.Folder, "addons.ifz"), Addons.Folder);

                            // Tell startup there are got addon update
                            Addons.Installed.IsUpdated = true;
                        }
                    }
            }