Esempio n. 1
0
        /// <summary>
        /// Creates the specified catalog.
        /// </summary>
        /// <param name="catalog">The instance of <see cref="Catalog" /> type to create.</param>
        /// <returns>The newly created instance of <see cref="Catalog" /> type.</returns>
        public async Task <Catalog> CreateCatalog(Catalog catalog)
        {
            CatalogContract catalogContract = await this.mapper.MapNewAsync <Catalog, CatalogContract>(catalog);

            CatalogContract parentCatalogContract = null;

            using (IDbContextScope scope = this.dataContextScopeFactory.CreateDbContextScope(this.connectionStrings.DataStorageDB, true))
            {
                ICatalogRepository catalogRepository = scope.GetRepository <ICatalogRepository>();

                catalogContract = await catalogRepository.SaveAsync(catalogContract);

                if (catalogContract.ParentID.HasValue)
                {
                    parentCatalogContract = await catalogRepository.GetAsync(catalogContract.ParentID.Value);
                }

                scope.Commit();
            }

            catalog = await this.mapper.MapAsync(catalogContract, catalog);

            catalog.Parent = await this.mapper.MapAsync(parentCatalogContract, catalog.Parent);

            return(catalog);
        }
Esempio n. 2
0
        /// <summary>
        /// Gets the catalog entry by the initial instance set.
        /// </summary>
        /// <param name="entry">The initial catalog entry set.</param>
        /// <returns>The instance of <see cref="CatalogEntry"/> type.</returns>
        public async Task <CatalogEntry> GetCatalogEntry(CatalogEntry entry)
        {
            FileContract    fileContract    = null;
            CatalogContract catalogContract = null;

            using (IDbContextScope scope = this.dataContextScopeFactory.CreateDbContextScope(this.connectionStrings.DataStorageDB, false))
            {
                IFileRepository fileRepository = scope.GetRepository <IFileRepository>();
                fileContract = await fileRepository.GetAsync(entry.ID);

                ICatalogRepository catalogRepository = scope.GetRepository <ICatalogRepository>();
                catalogContract = await catalogRepository.GetAsync(fileContract.DirectoryID);
            }

            entry = await this.mapper.MapAsync(fileContract, entry);

            entry.Catalog = await this.mapper.MapAsync(catalogContract, entry.Catalog);

            return(entry);
        }
Esempio n. 3
0
        /// <summary>
        /// Gets storage by initial instance set.
        /// </summary>
        /// <param name="storage">The initial storage set.</param>
        /// <returns>The instance of <see cref="Storage"/> type.</returns>
        public async Task <Storage> GetStorage(Storage storage)
        {
            StorageContract storageContract = null;
            CatalogContract catalogContract = null;

            using (IDbContextScope scope = this.dataContextScopeFactory.CreateDbContextScope(this.connectionStrings.DataStorageDB, false))
            {
                IStorageRepository storageRepository = scope.GetRepository <IStorageRepository>();
                storageContract = await storageRepository.GetAsync(storage.ID);

                ICatalogRepository catalogRepository = scope.GetRepository <ICatalogRepository>();
                catalogContract = await catalogRepository.GetAsync(storage.ID);
            }

            storage = await this.mapper.MapNewAsync <StorageContract, Storage>(storageContract);

            storage = await this.mapper.MapAsync(catalogContract, storage);

            return(storage);
        }
Esempio n. 4
0
        /// <summary>
        /// Gets the list of storages.
        /// </summary>
        /// <param name="offset">The offset index.</param>
        /// <param name="limit">The number of records to return.</param>
        /// <returns>The list of instances of <see cref="Storage"/> type.</returns>
        public async Task <IPaginable <Storage> > GetStorages(int offset = 0, int limit = 20)
        {
            if (limit == 0)
            {
                return(await Task.FromResult(new PagedList <Storage>()
                {
                    Offset = offset,
                    Limit = limit
                }));
            }

            IEnumerable <Storage> storages = null;
            int count = 0;

            using (IDbContextScope scope = this.dataContextScopeFactory.CreateDbContextScope(this.connectionStrings.DataStorageDB, false))
            {
                IStorageRepository storageRepository = scope.GetRepository <IStorageRepository>();
                ICatalogRepository catalogRepository = scope.GetRepository <ICatalogRepository>();

                count = await storageRepository.GetCountAsync();

                IEnumerable <StorageContract> data = await storageRepository.FindAsync(offset, limit);

                storages = await this.mapper.MapNewAsync <StorageContract, Storage>(data);

                storages = await Task.WhenAll(storages.Select(async storage =>
                {
                    CatalogContract catalogContract = await catalogRepository.GetAsync(storage.ID);

                    return(await this.mapper.MapAsync(catalogContract, storage));
                }));
            }

            IPaginable <Storage> result = storages.AsPaginable();

            result.Offset     = offset;
            result.Limit      = limit;
            result.TotalCount = count;

            return(result);
        }
Esempio n. 5
0
        /// <summary>
        /// Deletes the specified catalog entry.
        /// </summary>
        /// <param name="entry">The instance of <see cref="CatalogEntry" /> type to delete.</param>
        /// <returns>
        /// The deleted instance of <see cref="CatalogEntry"/> type.
        /// </returns>
        public async Task <CatalogEntry> DeleteCatalogEntry(CatalogEntry entry)
        {
            using (IDbContextScope scope = this.dataContextScopeFactory.CreateDbContextScope(this.connectionStrings.DataStorageDB, true))
            {
                IFileRepository fileRepository = scope.GetRepository <IFileRepository>();
                await fileRepository.DeleteAsync(entry.ID);

                scope.Commit();
            }

            return(entry);
        }
Esempio n. 6
0
        /// <summary>
        /// Deletes the specified catalog.
        /// </summary>
        /// <param name="catalog">The instance of <see cref="Catalog" /> type to delete.</param>
        /// <returns>
        /// The deleted instance of <see cref="Catalog"/> type.
        /// </returns>
        public async Task <Catalog> DeleteCatalog(Catalog catalog)
        {
            using (IDbContextScope scope = this.dataContextScopeFactory.CreateDbContextScope(this.connectionStrings.DataStorageDB, true))
            {
                ICatalogRepository catalogRepository = scope.GetRepository <ICatalogRepository>();
                await catalogRepository.DeleteAsync(catalog.ID);

                scope.Commit();
            }

            return(catalog);
        }
Esempio n. 7
0
        /// <summary>
        /// Deletes the specified storage.
        /// </summary>
        /// <param name="storage">The instance of <see cref="Storage" /> type to delete.</param>
        /// <returns>
        /// The deleted instance of <see cref="Storage"/> type.
        /// </returns>
        public async Task <Storage> DeleteStorage(Storage storage)
        {
            using (IDbContextScope scope = this.dataContextScopeFactory.CreateDbContextScope(this.connectionStrings.DataStorageDB, true))
            {
                IStorageRepository storageRepository = scope.GetRepository <IStorageRepository>();
                await storageRepository.DeleteAsync(storage.ID);

                scope.Commit();
            }

            return(storage);
        }
Esempio n. 8
0
        /// <summary>
        /// Gets the list of catalog entries located in specified catalog.
        /// </summary>
        /// <param name="catalog">The catalog of <see cref="CatalogRoot"/> type.</param>
        /// <param name="offset">The offset index.</param>
        /// <param name="limit">The number of records to return.</param>
        /// <returns>
        /// The list of instances of <see cref="CatalogEntry" /> type.
        /// </returns>
        public async Task <IPaginable <CatalogEntry> > GetCatalogEntries(CatalogRoot catalog, int offset = 0, int limit = 20)
        {
            if (limit == 0)
            {
                return(await Task.FromResult(new PagedList <CatalogEntry>()
                {
                    Offset = offset,
                    Limit = limit
                }));
            }

            IEnumerable <FileContract> data = null;
            int count = 0;

            FileContract contract = new FileContract()
            {
                DirectoryID = catalog.ID
            };

            using (IDbContextScope scope = this.dataContextScopeFactory.CreateDbContextScope(this.connectionStrings.DataStorageDB, false))
            {
                IFileRepository fileRepository = scope.GetRepository <IFileRepository>();

                await Task.WhenAll(
                    Task.Run(async() => data  = await fileRepository.FindAsync(contract, offset, limit)),
                    Task.Run(async() => count = await fileRepository.GetCountAsync(contract)));
            }

            IPaginable <CatalogEntry> result = (await this.mapper.MapNewAsync <FileContract, CatalogEntry>(data)).Select(entry =>
            {
                entry.Catalog = (Catalog)catalog;

                return(entry);
            }).AsPaginable();

            result.Offset     = offset;
            result.Limit      = limit;
            result.TotalCount = count;

            return(result);
        }
Esempio n. 9
0
        /// <summary>
        /// Gets the list of catalogs located in specified parent catalog.
        /// </summary>
        /// <param name="parent">The parent catalog of <see cref="CatalogRoot"/> type.</param>
        /// <param name="offset">The offset index.</param>
        /// <param name="limit">The number of records to return.</param>
        /// <returns>
        /// The list of instances of <see cref="Catalog" /> type.
        /// </returns>
        public async Task <IPaginable <Catalog> > GetCatalogs(CatalogRoot parent, int offset = 0, int limit = 20)
        {
            if (limit == 0)
            {
                return(await Task.FromResult(new PagedList <Catalog>()
                {
                    Offset = offset,
                    Limit = limit
                }));
            }

            IEnumerable <CatalogContract> data = null;
            int count = 0;

            CatalogContract contract = new CatalogContract()
            {
                ParentID = parent?.ID
            };

            using (IDbContextScope scope = this.dataContextScopeFactory.CreateDbContextScope(this.connectionStrings.DataStorageDB, false))
            {
                ICatalogRepository catalogRepository = scope.GetRepository <ICatalogRepository>();

                await Task.WhenAll(
                    Task.Run(async() => data  = await catalogRepository.FindAsync(contract, offset, limit)),
                    Task.Run(async() => count = await catalogRepository.GetCountAsync(contract)));
            }

            IPaginable <Catalog> result = (await this.mapper.MapNewAsync <CatalogContract, Catalog>(data)).Select(catalog =>
            {
                catalog.Parent = (Catalog)parent;

                return(catalog);
            }).AsPaginable();

            result.Offset     = offset;
            result.Limit      = limit;
            result.TotalCount = count;

            return(result);
        }
Esempio n. 10
0
        /// <summary>
        /// Gets a value indicating whether the specified storage already exists.
        /// </summary>
        /// <param name="storage">The storage.</param>
        /// <returns><c>true</c> if the storage exists. Otherwise <c>false.</c></returns>
        public async Task <bool> StorageExists(Storage storage)
        {
            StorageContract contract = await this.mapper.MapNewAsync <Storage, StorageContract>(storage);

            if (string.IsNullOrWhiteSpace(contract.Name) && contract.ID == Guid.Empty)
            {
                return(false);
            }

            using (IDbContextScope scope = this.dataContextScopeFactory.CreateDbContextScope(this.connectionStrings.DataStorageDB, false))
            {
                IStorageRepository storageRepository = scope.GetRepository <IStorageRepository>();

                if (!string.IsNullOrWhiteSpace(contract.Name))
                {
                    StorageContract storageResult = (await storageRepository.FindAsync(contract, 0, 1)).FirstOrDefault();

                    return(!(storageResult is null || (contract.ID != Guid.Empty && contract.ID == storageResult.ID)));
                }

                return((await storageRepository.GetAsync(contract.ID)) != null);
            }
        }
Esempio n. 11
0
        /// <summary>
        /// Gets the catalog by the initial instance set.
        /// </summary>
        /// <param name="catalog">The initial catalog set.</param>
        /// <returns>The instance of <see cref="Catalog"/> type.</returns>
        public async Task <Catalog> GetCatalog(Catalog catalog)
        {
            CatalogContract catalogContract       = null;
            CatalogContract parentCatalogContract = null;

            using (IDbContextScope scope = this.dataContextScopeFactory.CreateDbContextScope(this.connectionStrings.DataStorageDB, false))
            {
                ICatalogRepository catalogRepository = scope.GetRepository <ICatalogRepository>();

                catalogContract = await catalogRepository.GetAsync(catalog.ID);

                if ((catalogContract?.ParentID).HasValue)
                {
                    parentCatalogContract = await catalogRepository.GetAsync(catalogContract.ParentID.Value);
                }
            }

            catalog = await this.mapper.MapAsync(catalogContract, catalog);

            catalog.Parent = await this.mapper.MapAsync(parentCatalogContract, catalog.Parent);

            return(catalog);
        }