Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »

After installation of the NuGet package, it's time to setup the connection to you Digizuite DAM instance. You have 2 options to add the settings. Eather through code in the startup class or in a json settings file.

Option 1 - Through code in startup class

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.

services.AddDigizuiteDAM(new Action<DAMIntegrationConfiguration>(configuration =>
{
  	configuration.Connection = new Digizuite.Models.DigizuiteConfiguration()
	{
  		BaseUrl = new Uri("https://[DAM url]"),                
        SystemUsername = "Episerver Editor",
        SystemPassword = "36b2a0e1d5d2a4bd45975951366ea26b"
  	};
    configuration.MediaManager = new MediaManagerElement()
    {
    	Url = "https://[MediaManager url]"
   	};
    configuration.MainSearchFolderId = 136;
}));

Option 2 - Json settings

Create a new file with the name digizuitesettings.json and place it along with the appsettings.json. Add the minimun settings like below.

{
  "DigizuiteDamSettings": {
    "Connection": {
      "BaseUrl": "https://[DAM url]",
      "SystemUsername": "Optimizely Editor",
      "SystemPassword": "P74nR658TEhh"
    },
    "MediaManager": {
      "Url": "https://[MediaManager url]"
    },
    "MainSearchFolderId": 126
  }
}

Add the DAMIntegrationConfiguration to your startup class. The configuration should be added after the AddCms due to TinyMCE initialization.

services.AddDigizuiteDAM();

DAMIntegrationConfiguration parameters

Name

Type

Required

Default

Description

DatabaseName

string

Yes


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")

Connection

DigizuiteConfiguration

Yes


This object contains the connection parameters to the Digizuite DAM instance.

MediaManager

MediaManagerElement

Yes


The Url parameter has to be set. This is used for embedding the MediaManager into Optimizely.

MainSearchFolderId

int

Yes


This is the channel folder in Digizuite. Request the id from your Digizuite consultant.

RoleMappings

List<RoleMappingElement>

No


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

VideoCdnBaseUrl

string

No



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.

FullSearchBatchSize

int

no

200


ValidVideoExtensions

List<string>

no

"mp4", "m4v", "ogv", "webm"


DisableNotifications

bool

no

false


DefaultLanguageId

int

no

3


DefaultLanguageName

string

no

en


ForceDefaultLanguage

bool

no

false


Cache

CacheElement

no

TimeOut = "10:00"


Child element: DigizuiteConfiguration

The connection is the most important child element. This is where the main connection setting pointing to the DAM is specified. Typically you will replace this with connections settings you have gotten from your own DAM Center.

Name

Type

Required

Default

Description

BaseUrl

Uri

Yes


Base url to the DAM Center

SystemUsername

string

Yes


Sync user that the integration can use in the DAM Center

SystemPassword

string

Yes


The hashed secret that the integrations sync user should use.

Child element: MediaManagerElement

The url is used for embedding the MediaManager into Optimizely in an IFrame.

Name

Type

Required

Default

Description

Url

string

Yes


Base url to the MediaManager

Child element: RoleMappings

Since access rights can be set on individual assets in the DAM Center, you can use the list of roleMappings to map DAM Center roles to Episerver roles in order to ensure proper permissions for various editor groups. The default configuration of these elements should be sufficient in most cases.

Name

Type

Required

Default

Description

DigizuiteUser

DigizuiteUser

Yes


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.

Child element: DigizuiteUser


Name

Type

Required

Default

Description

Name

string

Yes


Digizuite username

Password

string

Yes


Digizuite password in the format md5

IsSystemUser

bool

No

false

The user with the highes rights in Digizuite should be set to true.

Child element: FallbackIconMappings

The FallbackIconMappings list is in order to ensure that for assets where a proper thumbnail cannot be shown, we can map the various file extensions to a fitting icon. Typically the default should be sufficient.

Each element in this list has the settings below:

Name

Type

Required

Default

Description

DocumentType

string

Yes


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.

Child element: DigizuiteWebhookElement

The DigizuiteWebhookElement for seting up the connection between Digizuite DAM and your Optimizely instance. So you will recive update notification when assets change.

Name

Type

Required

Default

Description

SiteUrl

string

Yes


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

Guid

string

Yes


This is the unique identifier for the endpoint in Digizuite DAM. Just generate a new guid. 

Subscriptions

List<int>

No

new List<int> { 1 }

A list of changeTypes. Possible values are: AssetChanged = 1, MetafieldChanged = 2, TreeValueChanged = 4, ComboValueChanged = 8

DeleteBlob

bool

No

False

By default this is false. Enable this if each instance of a loadbalanced enviroment has its own local blob storage.

Child element: CacheElement

Name

Type

Required

Default

Description

TimeOut

string

No

10.00

Use in the Digizuite Content provider. When building IContent, then it will by dedault cached for 10 minutes.

ImageCDNCacheControl

string

No



CDNCacheControl

string

No




  • No labels