@@ -2436,6 +2436,60 @@ public List<Contract_AnimeSeries> GetSeriesByFolderID(int FolderID, int userID,
2436
2436
return null ;
2437
2437
}
2438
2438
2439
+ public List < Contract_AnimeSeriesFileStats > GetSeriesFileStatsByFolderID ( int FolderID , int userID , int max )
2440
+ {
2441
+ try
2442
+ {
2443
+ int limit = 0 ;
2444
+ Dictionary < int , Contract_AnimeSeriesFileStats > list = new Dictionary < int , Contract_AnimeSeriesFileStats > ( ) ;
2445
+ VideoLocalRepository reVideo = new VideoLocalRepository ( ) ;
2446
+ ImportFolderRepository repFolders = new ImportFolderRepository ( ) ;
2447
+ ImportFolder fldr = repFolders . GetByID ( FolderID ) ;
2448
+ if ( fldr == null ) return list . Values . ToList ( ) ;
2449
+ string importLocation = fldr . ImportFolderLocation . TrimEnd ( '\\ ' ) ;
2450
+
2451
+ foreach ( VideoLocal vi in reVideo . GetByImportFolder ( FolderID ) )
2452
+ {
2453
+ foreach ( Contract_AnimeEpisode ae in GetEpisodesForFile ( vi . VideoLocalID , userID ) )
2454
+ {
2455
+ Contract_AnimeSeries ase = GetSeries ( ae . AnimeSeriesID , userID ) ;
2456
+ Contract_AnimeSeriesFileStats asfs = null ;
2457
+ if ( list . TryGetValue ( ase . AnimeSeriesID , out asfs ) == false )
2458
+ {
2459
+ limit ++ ;
2460
+ if ( limit >= max )
2461
+ {
2462
+ continue ;
2463
+ }
2464
+ asfs = new Contract_AnimeSeriesFileStats ( ) ;
2465
+ asfs . AnimeSeriesName = ase . AniDBAnime . AniDBAnime . MainTitle ;
2466
+ asfs . FileCount = 0 ;
2467
+ asfs . FileSize = 0 ;
2468
+ asfs . Folders = new List < string > ( ) ;
2469
+ asfs . AnimeSeriesID = ase . AnimeSeriesID ;
2470
+ list . Add ( ase . AnimeSeriesID , asfs ) ;
2471
+ }
2472
+ asfs . FileCount ++ ;
2473
+ asfs . FileSize += vi . FileSize ;
2474
+
2475
+ string filePath = Pri . LongPath . Path . GetDirectoryName ( vi . FullServerPath ) . Replace ( importLocation , "" ) ;
2476
+ filePath = filePath . TrimStart ( '\\ ' ) ;
2477
+ if ( ! asfs . Folders . Contains ( filePath ) ) {
2478
+ asfs . Folders . Add ( filePath ) ;
2479
+ }
2480
+
2481
+ }
2482
+ }
2483
+
2484
+ return list . Values . ToList ( ) ;
2485
+ }
2486
+ catch ( Exception ex )
2487
+ {
2488
+ logger . ErrorException ( ex . ToString ( ) , ex ) ;
2489
+ }
2490
+ return null ;
2491
+ }
2492
+
2439
2493
public Contract_AnimeSeries GetSeriesForAnime ( int animeID , int userID )
2440
2494
{
2441
2495
AnimeSeriesRepository repAnimeSer = new AnimeSeriesRepository ( ) ;
0 commit comments