Merge pull request #18824 from titanventura/feat/techdocs-azurite-support

techdocs azurite support
This commit is contained in:
Morgan Bentell
2023-08-28 14:07:16 +02:00
committed by GitHub
4 changed files with 62 additions and 32 deletions
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-techdocs-node': minor
'@backstage/plugin-techdocs-backend': minor
---
Add a `techdocs.publisher.azureBlobStorage.connectionString` app-config setting, which can be leveraged for improved Azurite support.
+6
View File
@@ -167,6 +167,12 @@ techdocs:
# (Required) Azure Blob Storage Container Name
containerName: 'techdocs-storage'
# (Optional) Azure blob storage connection string.
# Can be useful for local testing through azurite
# Defaults to undefined
# if provided, takes higher priority, 'techdocs.publisher.azureBlobStorage.credentials' will become irrelevant
connectionString: ''
# (Required) An account name is required to write to a storage blob container.
# https://docs.microsoft.com/en-us/rest/api/storageservices/authorize-with-shared-key
credentials:
+7 -2
View File
@@ -203,10 +203,15 @@ export interface Config {
*/
azureBlobStorage?: {
/**
* (Required) Credentials used to access a storage container.
* (Optional) Connection string of the storage container.
* @visibility secret
*/
credentials: {
connectionString?: string;
/**
* (Optional) Credentials used to access a storage container.
* @visibility secret
*/
credentials?: {
/**
* Account access name
* @visibility secret
@@ -66,6 +66,7 @@ export class AzureBlobStoragePublish implements PublisherBase {
}
static fromConfig(config: Config, logger: Logger): PublisherBase {
let storageClient: BlobServiceClient;
let containerName = '';
try {
containerName = config.getString(
@@ -78,41 +79,53 @@ export class AzureBlobStoragePublish implements PublisherBase {
);
}
let accountName = '';
try {
accountName = config.getString(
'techdocs.publisher.azureBlobStorage.credentials.accountName',
);
} catch (error) {
throw new Error(
"Since techdocs.publisher.type is set to 'azureBlobStorage' in your app config, " +
'techdocs.publisher.azureBlobStorage.credentials.accountName is required.',
);
}
// Credentials is an optional config. If missing, default Azure Blob Storage environment variables will be used.
// https://docs.microsoft.com/en-us/azure/storage/common/storage-auth-aad-app
const accountKey = config.getOptionalString(
'techdocs.publisher.azureBlobStorage.credentials.accountKey',
);
let credential;
if (accountKey) {
credential = new StorageSharedKeyCredential(accountName, accountKey);
} else {
credential = new DefaultAzureCredential();
}
const storageClient = new BlobServiceClient(
`https://${accountName}.blob.core.windows.net`,
credential,
);
const legacyPathCasing =
config.getOptionalBoolean(
'techdocs.legacyUseCaseSensitiveTripletPaths',
) || false;
// Give more priority for connectionString, if configured, return the AzureBlobStoragePublish object here itself
const connectionStringKey =
'techdocs.publisher.azureBlobStorage.connectionString';
const connectionString = config.getOptionalString(connectionStringKey);
if (connectionString) {
logger.info(
`Using '${connectionStringKey}' configuration to create storage client`,
);
storageClient = BlobServiceClient.fromConnectionString(connectionString);
} else {
let accountName = '';
try {
accountName = config.getString(
'techdocs.publisher.azureBlobStorage.credentials.accountName',
);
} catch (error) {
throw new Error(
"Since techdocs.publisher.type is set to 'azureBlobStorage' in your app config, " +
'techdocs.publisher.azureBlobStorage.credentials.accountName is required.',
);
}
// Credentials is an optional config. If missing, default Azure Blob Storage environment variables will be used.
// https://docs.microsoft.com/en-us/azure/storage/common/storage-auth-aad-app
const accountKey = config.getOptionalString(
'techdocs.publisher.azureBlobStorage.credentials.accountKey',
);
let credential;
if (accountKey) {
credential = new StorageSharedKeyCredential(accountName, accountKey);
} else {
credential = new DefaultAzureCredential();
}
storageClient = new BlobServiceClient(
`https://${accountName}.blob.core.windows.net`,
credential,
);
}
return new AzureBlobStoragePublish({
storageClient: storageClient,
containerName: containerName,