Exemple #1
0
#pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously
        public static long GetFolderSize(string FolderName, string remote)
#pragma warning restore CS1998 // Async method lacks 'await' operators and will run synchronously
        {
            try
            {
                dynamic results  = JsonConvert.DeserializeObject <dynamic>(RCLONE.runRcloneCommand($"size \"{remote}:{RcloneGamesFolder}/{FolderName}\" --json").Output);
                long    gameSize = results.bytes.ToObject <long>();
                return(gameSize / 1000000);
            }
            catch { return(0); }
        }
Exemple #2
0
        public static void RefreshRemotes()
        {
            RemotesList.Clear();
            var remotes = RCLONE.runRcloneCommand("listremotes").Output.Split('\n');

            Logger.Log("Loaded following remotes: ");
            foreach (string r in remotes)
            {
                if (r.Length > 1)
                {
                    var remote = r.Remove(r.Length - 1);
                    if (remote.Contains("mirror"))
                    {
                        Logger.Log(remote);
                        RemotesList.Add(remote);
                    }
                }
            }
        }
Exemple #3
0
        public static async Task updateConfig(string remote)
        {
            string localHash = "";

            try { localHash = File.ReadAllText(Environment.CurrentDirectory + "\\rclone\\hash.txt"); } catch { } //file may not exist

            string hash = RCLONE.runRcloneCommand($"md5sum \"{remote}:Quest Homebrew/Sideloading Methods/1. Rookie Sideloader - VRP Edition/VRP.download.config\"").Output;

            try { hash = hash.Substring(0, hash.LastIndexOf(" ")); } catch { return; } //remove stuff after hash

            Debug.WriteLine("The local file hash is " + localHash + " and the current a file hash is " + hash);

            if (!string.Equals(localHash, hash))
            {
                RCLONE.runRcloneCommand(string.Format($"copy \"{remote}:Quest Homebrew/Sideloading Methods/1. Rookie Sideloader - VRP Edition/VRP.download.config\" \"{Environment.CurrentDirectory}\\rclone\""));
                RCLONE.killRclone();
                File.WriteAllText(Environment.CurrentDirectory + "\\rclone\\hash.txt", hash);
            }
        }
Exemple #4
0
#pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously
        public static async Task updateConfig(string remote)
#pragma warning restore CS1998 // Async method lacks 'await' operators and will run synchronously
        {
            string localHash = "";

            try { localHash = File.ReadAllText(Environment.CurrentDirectory + "\\rclone\\hash.txt"); } catch { } //file may not exist

            string hash = RCLONE.runRcloneCommand($"md5sum --config .\\a \"{remote}:Quest Homebrew/Sideloading Methods/1. Rookie Sideloader - VRP Edition/a\"");

            try { hash = hash.Substring(0, hash.LastIndexOf(" ")); } catch { return; } //remove stuff after hash

            Debug.WriteLine("The local file hash is " + localHash + " and the current a file hash is " + hash);

            if (!string.Equals(localHash, hash))
            {
                RCLONE.runRcloneCommand(string.Format($"copy \"{remote}:Quest Homebrew/Sideloading Methods/1. Rookie Sideloader - VRP Edition/a\" \"{Environment.CurrentDirectory}\" --config .\\a"));
                RCLONE.killRclone();
                File.Copy(Environment.CurrentDirectory + "\\a", Environment.CurrentDirectory + "\\rclone\\a", true);
                File.WriteAllText(Environment.CurrentDirectory + "\\rclone\\hash.txt", hash);
            }
        }
Exemple #5
0
        public static void initGames(string remote)
        {
            gameProperties.Clear();
            games.Clear();
            string tempGameList = RCLONE.runRcloneCommand($"cat \"{remote}:{RcloneGamesFolder}/GameList.txt\"").Output;
            //File.WriteAllText("GamesList.txt", tempGameList);
            string gamePropertiesLine = Utilities.StringUtilities.RemoveEverythingAfterFirst(tempGameList, "\n");

            foreach (string gameProperty in gamePropertiesLine.Split(';'))
            {
                gameProperties.Add(gameProperty);
            }

            tempGameList = Utilities.StringUtilities.RemoveEverythingBeforeFirst(tempGameList, "\n");

            foreach (string game in tempGameList.Split('\n'))
            {
                if (game.Length > 1)
                {
                    games.Add(game.Split(';'));
                }
            }

            //Output
            //Console.WriteLine("Headers:");
            //foreach (string s in gameProperties)
            //{
            //    Console.WriteLine($"gameProperty: {s}");
            //}
            foreach (string[] s in games)
            {
                string output = "";
                for (int i = 0; i < gameProperties.Count; i++)
                {
                    output += s[i] + " ";
                }
            }
        }
Exemple #6
0
 public static void UpdateGameNotes(string remote)
 {
     RCLONE.runRcloneCommand($"sync \"{remote}:{RcloneGamesFolder}/.meta/notes\" \"{NotesFolder}\"");
 }
Exemple #7
0
 public static void UpdateGamePhotos(string remote)
 {
     RCLONE.runRcloneCommand($"sync \"{remote}:{RcloneGamesFolder}/.meta/thumbnails\" \"{ThumbnailsFolder}\"");
 }