BLOB Storing Bunny Provider
BLOB Storing Bunny Provider can store BLOBs in bunny.net Storage.
Read the BLOB Storing document to understand how to use the BLOB storing system. This document only covers how to configure containers to use a Bunny BLOB as the storage provider.
Installation
Use the ABP CLI to add Volo.Abp.BlobStoring.Bunny NuGet package to your project:
- Install the ABP CLI if you haven't installed before.
- Open a command line (terminal) in the directory of the
.csproj
file you want to add theVolo.Abp.BlobStoring.Bunny
package. - Run
abp add-package Volo.Abp.BlobStoring.Bunny
command.
If you want to do it manually, install the Volo.Abp.BlobStoring.Bunny NuGet package to your project and add [DependsOn(typeof(AbpBlobStoringBunnyModule))]
to the ABP module class inside your project.
Configuration
Configuration is done in the ConfigureServices
method of your module class, as explained in the BLOB Storing document.
Example: Configure to use the Bunny storage provider by default
See the BLOB Storing document to learn how to configure this provider for a specific container.
Options
- AccessKey (string): Bunny Account Access Key. Where do I find my Access key?
- Region (string?): The code of the main storage zone region (Possible values: DE, NY, LA, SG).
- ContainerName (string): You can specify the container name in Bunny. If this is not specified, it uses the name of the BLOB container defined with the
BlobContainerName
attribute (see the BLOB storing document). Please note that Bunny has some rules for naming containers:- Storage Zone names must be a globaly unique.
- Storage Zone names must be between 4 and 64 characters long.
- Storage Zone names can consist only of lowercase letters, numbers, and hyphens (-).
- CreateContainerIfNotExists (bool): Default value is
false
, If a container does not exist in Bunny,BunnyBlobProvider
will try to create it.
Bunny Blob Name Calculator
Bunny Blob Provider organizes BLOB name and implements some conventions. The full name of a BLOB is determined by the following rules by default:
- Appends
host
string if current tenant isnull
(or multi-tenancy is disabled for the container - see the BLOB Storing document to learn how to disable multi-tenancy for a container). - Appends
tenants/<tenant-id>
string if current tenant is notnull
. - Appends the BLOB name.
Other Services
BunnyBlobProvider
is the main service that implements the Bunny BLOB storage provider, if you want to override/replace it via dependency injection (don't replaceIBlobProvider
interface, but replaceBunnyBlobProvider
class).IBunnyBlobNameCalculator
is used to calculate the full BLOB name (that is explained above). It is implemented by theDefaultBunnyBlobNameCalculator
by default.IBunnyClientFactory
is implemented byDefaultBunnyClientFactory
by default. You can override/replace it,if you want customize.