Exemple #1
0
        private async Task <IDictionary <int, IEnumerable <File> > > GetUrnFilesAsync(
            int[] urns,
            FileTypeOption fileType,
            CancellationToken cancellationToken)
        {
            Dictionary <int, IEnumerable <File> > toReturn =
                new Dictionary <int, IEnumerable <File> >();

            foreach (int urn in urns)
            {
                // First, get the meta-data (i.e. location to files).
                this.loggerProvider.Debug(
                    $"Pulling back file list for {nameof(urn)} = {urn} and " +
                    $"{nameof(fileType)} = {fileType}...");

                IEnumerable <FileMetaData> fileMetaDatas =
                    await this.fileMetaDataAdapter.GetFileMetaDatasAsync(
                        urn,
                        fileType,
                        cancellationToken)
                    .ConfigureAwait(false);

                this.loggerProvider.Info(
                    $"Returned {fileMetaDatas.Count()} result(s).");

                // Then, actually pull the files.
                List <File> files = new List <File>();

                File file = null;
                foreach (FileMetaData fileMetaData in fileMetaDatas)
                {
                    this.loggerProvider.Debug($"Pulling {fileMetaData}...");

                    file = await this.fileStorageAdapter.GetFileAsync(
                        fileMetaData,
                        cancellationToken)
                           .ConfigureAwait(false);

                    if (file != null)
                    {
                        this.loggerProvider.Info($"Pulled {file}.");

                        files.Add(file);
                    }
                    else
                    {
                        this.loggerProvider.Warning(
                            $"No file could be found for {fileMetaData}!");
                    }
                }

                toReturn.Add(urn, files);
            }

            return(toReturn);
        }
Exemple #2
0
        private File ZipMultipleFiles(
            int urn,
            IEnumerable <File> files)
        {
            File toReturn = null;

            string          fileName        = null;
            ZipArchiveEntry zipArchiveEntry = null;

            byte[] bytes = null;
            using (MemoryStream memoryStream = new MemoryStream())
            {
                using (ZipArchive zipArchive = new ZipArchive(memoryStream, ZipArchiveMode.Create, true))
                {
                    // For each file...
                    foreach (File file in files)
                    {
                        fileName = file.FileName;

                        // Create an entry...
                        zipArchiveEntry = zipArchive.CreateEntry(fileName);

                        using (Stream stream = zipArchiveEntry.Open())
                        {
                            bytes = file.ContentBytes.ToArray();

                            // Write to each entry with the bytes in the
                            // File...
                            stream.Write(bytes, 0, bytes.Length);
                        }

                        this.loggerProvider.Info(
                            $"Added {fileName} to the archive.");
                    }
                }

                memoryStream.Position = 0;
                byte[] contentBytes = memoryStream.ToArray();

                toReturn = new File()
                {
                    ContentBytes = contentBytes,
                    ContentType  = ZipMimeType,
                    FileName     = $"{urn} files.zip",
                };

                this.loggerProvider.Info($"Archive generated: {toReturn}.");
            }

            return(toReturn);
        }
Exemple #3
0
        public async Task <File> GetFileAsync(
            int urn,
            FileTypeOption fileType,
            int[] fallbackUrns,
            CancellationToken cancellationToken)
        {
            File toReturn = null;

            this.loggerProvider.Debug(
                $"Firstly, searching for files under {nameof(urn)} {urn}...");

            IDictionary <int, IEnumerable <File> > fileSearch =
                await this.GetUrnFilesAsync(urn, fileType, cancellationToken)
                .ConfigureAwait(false);

            IEnumerable <File> files = fileSearch[urn];

            if (files.Any())
            {
                if (files.Count() == 1)
                {
                    // Then just return this one file.
                    toReturn = files.Single();

                    this.loggerProvider.Info(
                        $"Only one {nameof(File)} available ({toReturn}). " +
                        $"Returning this {nameof(File)}, as-is.");
                }
                else
                {
                    this.loggerProvider.Debug(
                        $"More than one file available ({files.Count()} in " +
                        $"total). Zipping up...");

                    // Else, there's more than one, and we'll need to zip them
                    // up, then return them.
                    toReturn = this.ZipMultipleFiles(urn, files);

                    this.loggerProvider.Info(
                        $"Returning zip {nameof(File)}: {toReturn}.");
                }
            }
            else
            {
                this.loggerProvider.Warning(
                    $"Could not find any files for {nameof(urn)} = {urn} " +
                    $"and {nameof(fileType)} = {fileType}.");

                if (fallbackUrns != null)
                {
                    this.loggerProvider.Info(
                        "Fallback URNs were provided, however. Pulling back " +
                        "files for fallback URNs...");

                    fileSearch = await this.GetUrnFilesAsync(
                        fallbackUrns,
                        fileType,
                        cancellationToken)
                                 .ConfigureAwait(false);

                    // We only want to return a file (i.e. zip) if there are
                    // files in our search results to return.
                    bool fallbackFilesAvailable = fileSearch
                                                  .SelectMany(x => x.Value)
                                                  .Any();

                    if (fallbackFilesAvailable)
                    {
                        toReturn = this.ZipMultipleFiles(
                            urn,
                            fileSearch);
                    }
                    else
                    {
                        this.loggerProvider.Info(
                            $"No files available for the primary " +
                            $"{nameof(urn)} = {urn}, or for any " +
                            $"{nameof(fallbackUrns)}. Null will be returned.");
                    }
                }
            }

            return(toReturn);
        }
Exemple #4
0
        private File ZipMultipleFiles(
            int originalUrn,
            IDictionary <int, IEnumerable <File> > urnsAndFiles)
        {
            File toReturn = null;

            int             urn;
            string          urnFolderName   = null;
            string          fileName        = null;
            ZipArchiveEntry zipArchiveEntry = null;

            byte[]             bytes = null;
            IEnumerable <File> files = null;

            using (MemoryStream memoryStream = new MemoryStream())
            {
                using (ZipArchive zipArchive = new ZipArchive(memoryStream, ZipArchiveMode.Create, true))
                {
                    // For each urn group...
                    foreach (KeyValuePair <int, IEnumerable <File> > urnAndFiles in urnsAndFiles)
                    {
                        urn           = urnAndFiles.Key;
                        urnFolderName = string.Format(
                            CultureInfo.InvariantCulture,
                            UrnGroupingName,
                            urn);

                        files = urnAndFiles.Value;

                        foreach (File file in files)
                        {
                            fileName = $"{urnFolderName}\\{file.FileName}";

                            // Create an entry...
                            zipArchiveEntry = zipArchive.CreateEntry(fileName);

                            using (Stream stream = zipArchiveEntry.Open())
                            {
                                bytes = file.ContentBytes.ToArray();

                                // Write to each entry with the bytes in the
                                // File...
                                stream.Write(bytes, 0, bytes.Length);
                            }

                            this.loggerProvider.Info(
                                $"Added {fileName} to the archive.");
                        }
                    }
                }

                memoryStream.Position = 0;
                byte[] contentBytes = memoryStream.ToArray();

                string zipName = string.Format(
                    CultureInfo.InvariantCulture,
                    UrnGroupingName,
                    originalUrn);

                toReturn = new File()
                {
                    ContentBytes = contentBytes,
                    ContentType  = ZipMimeType,
                    FileName     = $"{zipName}.zip",
                };

                this.loggerProvider.Info($"Archive generated: {toReturn}.");
            }

            return(toReturn);
        }