Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

After installation of the NuGet package, it's time to setup the connection to you Digizuite DAM instance. Add the DAMIntegrationConfiguration to your startup class. The configuration should be added after the AddCms due to TinyMCE initialization. Here is an example. The paramaters will be delivered by Digizuite.

...

NameTypeRequiredDefaultDescription
DatabaseNamestringYes
The databaseName is the name of the database that you are running your Optimizely application in. We have experienced in some applications that it is not enougt to only add the name of the database, but it should have the hole connection string. You can get the connection string like this: 
_configuration.GetConnectionString("EPiServerDB")
ConnectionDigizuiteConfigurationYes
This object contains the connection parameters to the Digizuite DAM instance.
MediaManagerMediaManagerElementYes
The Url parameter has to be set. This is used for embedding the MediaManager into Optimizely.
MainSearchFolderIdintYes
This is the channel folder in Digizuite. Request the id from your Digizuite consultant.
RoleMappings
List<RoleMappingElement>
No


Code Block
languagec#
new RoleMappingElement()
{
	DigizuiteUser = new DigizuiteUser()
    {
    	Name = "Episerver Editor",
        Password = 36b2a0e1d5d2a4bd45975951366ea26b",
        IsSystemUser = true
    },
    EpiserverRoles = new List<string>() 
	{
		"DigizuiteEditor" 
	}                 
},
new RoleMappingElement()
{
	DigizuiteUser = new DigizuiteUser()
    {
    	Name = "Episerver User",
        Password = "292ad587521cc6c4c26e1c32991c2afd"                    
    },
    EpiserverRoles = new List<string>() 
	{
		"DigizuiteUser"
	}
}    


see DFO 4.0.0 - 14 Role mapping
FallbackIconMappings
List<IconMappingElement>
No

VideoPlaybackType
VideoPlaybackType
No
VideoPlaybackType.Streaming
The connector comes with 3 different option for video playback. You can read about the it at DFO 4.0.0 - 13 Video playback
VideoCdnBaseUrlstringNo

DigizuiteWebhookElement
DigizuiteWebhookElement
No
Listening for Digizuite asset update events. When someone make a change to an asset in Digizuite DAM and event is raised which your Optimizely instanc gets and all cached data about the asset will be cleared.
FullSearchBatchSizeintno200
ValidVideoExtensionsList<string>no"mp4", "m4v", "ogv", "webm"
DisableNotificationsboolnofalse
DefaultLanguageIdintno3
DefaultLanguageNamestringnoen
ForceDefaultLanguageboolnofalse
CacheCacheElementnoTimeOut = "10:00"

...

NameTypeRequiredDefaultDescription
DigizuiteUserDigizuiteUserYes
The name of the role in Digizuite to map.
EpiserverRoles
List<string>
Yes
A list of Episerver roles that be given similar permissions to the Digizuite Role.

...

NameTypeRequiredDefaultDescription
DocumentTypestringYes
The icon for the document type - for instance "video" for a video icon.
Extensions
List<string>
Yes
A list of file extensions to map for the above document type.

...

NameTypeRequiredDefaultDescription
SiteUrlstringYes
This is the url that Digizuite use to send the notification to. We will append the routing to the controller to the url. [siteUrl]/episerver/digizuite/DigizuiteWebhook/Update
GuidstringYes
This is the unique identifier for the endpoint in Digizuite DAM. Just generate a new guid. 
SubscriptionsList<int>No
 new List<int> { 1 }
A list of changeTypes. Possible values are: AssetChanged = 1, MetafieldChanged = 2, TreeValueChanged = 4, ComboValueChanged = 8
DeleteBlob
boolNoFalseBy default this is false. Enable this if each instance of a loadbalanced enviroment has its own local blob storage.

Child element: CacheElement

...