예제 #1
0
        public async Task <IEnumerable <SongSearchModel> > CompareSongsWithOnlineAsync(string dir = null)
        {
            var songsInfo = await CheckUpdateAsync();

            if (dir == null)
            {
                dir = DirProvider.getCustomDirectory().ToString();
            }

            return(exploreRecurs(dir, songsInfo));
        }
예제 #2
0
        public virtual async Task DownloadListAsync(int listId, Action <int> downloadProgressChanged,
                                                    Action <bool> downloadCompleted, Action <string> downloadTitle, bool autoClose = false)
        {
            using var webClient = new WebClient();
            var json  = webClient.DownloadString("https://ragnacustoms.com/api/song-list/" + listId);
            var stuff = JsonConvert.DeserializeObject <List <Song> >(json);
            var i     = 0;

            foreach (var song in stuff)
            {
                var songId = song.Id;
                using var client = new WebClient();
                var configuration = new Configuration();
                var uri           = new Uri($"https://ragnacustoms.com/songs/download/{songId}");

                if (!string.IsNullOrWhiteSpace(configuration.ApiKey))
                {
                    uri = new Uri($"https://ragnacustoms.com/songs/download/{songId}/{configuration.ApiKey}");
                }

                var tempDirectoryPath = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
                var tempDirectory     = Directory.CreateDirectory(tempDirectoryPath);
                var tempFilePath      = Path.GetTempFileName();

                var songInfo = song;

                var songDirectoryPath = Path.Combine(DirProvider.getCustomDirectory().ToString(),
                                                     $"{songInfo.Name.Slug()}{songInfo.Author.Slug()}{songInfo.Mapper.Slug()}");

                if (File.Exists(Path.Combine(songDirectoryPath, ".hash")) &&
                    File.ReadAllText(Path.Combine(songDirectoryPath, ".hash")) == songInfo.Hash)
                {
                    Oculus.PushSong(songDirectoryPath);
                    i = i + 1;
                    var percentage = (int)Math.Round((double)i / (double)stuff.Count() * 100);

                    downloadProgressChanged?.Invoke(percentage);
                    if (i >= stuff.Count())
                    {
                        downloadTitle?.Invoke($"Finish");
                    }
                    else
                    {
                        downloadTitle?.Invoke($"{percentage}% {songInfo.Name} by {songInfo.Mapper}");
                    }
                    continue;
                }

                client.DownloadFileCompleted += ClientDownloadFileCompleted;
                client.DownloadFileAsync(uri, tempFilePath);

                void ClientDownloadFileCompleted(object sender, AsyncCompletedEventArgs e)
                {
                    i = i + 1;
                    var percentage = (int)Math.Round((double)i / (double)stuff.Count() * 100);

                    downloadTitle?.Invoke($"{percentage}% {songInfo.Name} by {songInfo.Mapper}");

                    ZipFile.ExtractToDirectory(tempFilePath, tempDirectoryPath);

                    var songDirectory = tempDirectory.EnumerateDirectories().First();
                    var ragnarockSongDirectoryPath = Path.Combine(songDirectoryPath,
                                                                  $"{songInfo.Name.Slug()}{songInfo.Author.Slug()}{songInfo.Mapper.Slug()}");

                    if (Directory.Exists(songDirectoryPath))
                    {
                        Directory.Delete(songDirectoryPath, true);
                    }

                    if (Path.GetPathRoot(ragnarockSongDirectoryPath) == songDirectory.Root.FullName)
                    {
                        songDirectory.MoveTo(ragnarockSongDirectoryPath);
                    }
                    else
                    {
                        Directory.CreateDirectory(ragnarockSongDirectoryPath);

                        var files = songDirectory.GetFiles();
                        foreach (var file in files)
                        {
                            var tempPath = Path.Combine(ragnarockSongDirectoryPath, file.Name);
                            file.CopyTo(tempPath, false);
                        }
                    }

                    downloadProgressChanged?.Invoke(percentage);
                    if (i >= stuff.Count())
                    {
                        downloadTitle?.Invoke($"Finish");
                    }
                    else
                    {
                        downloadTitle?.Invoke($"{percentage}% {songInfo.Name} by {songInfo.Mapper}");
                    }

                    using (var writer = new StreamWriter(Path.Combine(ragnarockSongDirectoryPath, ".hash"), false))
                    {
                        writer.Write(songInfo.Hash);
                    }

                    using (var writer = new StreamWriter(Path.Combine(ragnarockSongDirectoryPath, ".id"), false))
                    {
                        writer.Write(songInfo.Id);
                    }

                    File.Delete(tempFilePath);
                    Directory.Delete(tempDirectoryPath, true);

                    Oculus.PushSong(ragnarockSongDirectoryPath);
                }
            }
        }
예제 #3
0
        public virtual async Task DownloadAsync(int songId, Action <int> downloadProgressChanged,
                                                Action <bool> downloadCompleted, Action <string> downloadTitle, bool autoClose = false, string songFolder = null)
        {
            using var client = new WebClient();
            var configuration = new Configuration();
            var uri           = new Uri($"https://ragnacustoms.com/songs/download/{songId}");

            if (!string.IsNullOrWhiteSpace(configuration.ApiKey))
            {
                uri = new Uri($"https://ragnacustoms.com/songs/download/{songId}/{configuration.ApiKey}");
            }

            var tempDirectoryPath = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
            var tempDirectory     = Directory.CreateDirectory(tempDirectoryPath);
            var tempFilePath      = Path.GetTempFileName();

            var songInfo = await SearchOnlineAsync(songId);

            if (songInfo == null)
            {
                downloadCompleted?.Invoke(autoClose);
                return;
            }

            downloadTitle?.Invoke($"{songInfo.Name} by {songInfo.Mapper}");
            var songDirectoryPath = Path.Combine(DirProvider.getCustomDirectory().ToString(),
                                                 $"{songInfo.Name.Slug()}{songInfo.Author.Slug()}{songInfo.Mapper.Slug()}");

            if (songFolder != null)
            {
                songDirectoryPath = songFolder;
            }

            if (File.Exists(Path.Combine(songDirectoryPath, ".hash")) &&
                File.ReadAllText(Path.Combine(songDirectoryPath, ".hash")) == songInfo.Hash)
            {
                Oculus.PushSong(songDirectoryPath);
                downloadCompleted?.Invoke(autoClose);
                return;
            }


            client.DownloadProgressChanged +=
                (sender, args) => downloadProgressChanged?.Invoke(args.ProgressPercentage);
            client.DownloadFileCompleted += ClientDownloadFileCompleted;
            client.DownloadFileAsync(uri, tempFilePath);

            void ClientDownloadFileCompleted(object sender, AsyncCompletedEventArgs e)
            {
                ZipFile.ExtractToDirectory(tempFilePath, tempDirectoryPath);

                var songDirectory = tempDirectory.EnumerateDirectories().First();

                if (Directory.Exists(songDirectoryPath))
                {
                    Directory.Delete(songDirectoryPath, true);
                }

                if (Path.GetPathRoot(songDirectoryPath) == songDirectory.Root.FullName)
                {
                    songDirectory.MoveTo(songDirectoryPath);
                }
                else
                {
                    Directory.CreateDirectory(songDirectoryPath);

                    var files = songDirectory.GetFiles();
                    foreach (var file in files)
                    {
                        var tempPath = Path.Combine(songDirectoryPath, file.Name);
                        file.CopyTo(tempPath, false);
                    }
                }

                using (var writer = new StreamWriter(Path.Combine(songDirectoryPath, ".hash"), false))
                {
                    writer.Write(songInfo.Hash);
                }

                using (var writer = new StreamWriter(Path.Combine(songDirectoryPath, ".id"), false))
                {
                    writer.Write(songInfo.Id);
                }

                File.Delete(tempFilePath);
                Directory.Delete(tempDirectoryPath, true);

                Oculus.PushSong(songDirectoryPath);

                downloadCompleted?.Invoke(autoClose);
            }
        }