1335 lines
42 KiB
JavaScript
1335 lines
42 KiB
JavaScript
import { DefaultAzureCredential } from "@azure/identity";
|
|
import _ from "lodash";
|
|
import { hashAPIPath, consoleLogger } from ".";
|
|
|
|
import { da } from "date-fns/locale";
|
|
const {
|
|
ContainerClient,
|
|
BlockBlobClient,
|
|
BlobServiceClient,
|
|
BlobSASPermissions,
|
|
ContainerSASPermissions,
|
|
generateBlobSASQueryParameters,
|
|
|
|
SASProtocol,
|
|
} = require("@azure/storage-blob");
|
|
const {
|
|
QueueServiceClient,
|
|
AccountSASResourceTypes,
|
|
AccountSASServices,
|
|
AccountSASPermissions,
|
|
QueueSASPermissions,
|
|
QueueSASSignatureValues,
|
|
generateAccountSASQueryParameters,
|
|
generateQueueSASQueryParameters,
|
|
StorageSharedKeyCredential,
|
|
QueueClient,
|
|
} = require("@azure/storage-queue");
|
|
const STORAGE_PATH = process.env.AZURE_PEDW_STORAGE_ENDPOINT;
|
|
const STORAGE_CONTAINER = process.env.AZURE_PEDW_CONTAINER;
|
|
const QUEUE_PATH = process.env.AZURE_PEDW_QUEUE_ENDPOINT;
|
|
|
|
const accountName = process.env.AZURE_STORAGE_ACCOUNT_NAME;
|
|
|
|
export const createContainerSas = async (containerName) => {
|
|
// Get environment variables
|
|
|
|
// Best practice: create time limits
|
|
const TEN_MINUTES = 10 * 60 * 1000;
|
|
const NOW = new Date();
|
|
|
|
// Best practice: set start time a little before current time to
|
|
// make sure any clock issues are avoided
|
|
const TEN_MINUTES_BEFORE_NOW = new Date(NOW.valueOf() - TEN_MINUTES);
|
|
const TEN_MINUTES_AFTER_NOW = new Date(NOW.valueOf() + TEN_MINUTES);
|
|
|
|
// Best practice: use managed identity - DefaultAzureCredential
|
|
const blobServiceClient = new BlobServiceClient(
|
|
`${STORAGE_PATH}`,
|
|
new DefaultAzureCredential()
|
|
);
|
|
|
|
// Best practice: delegation key is time-limited
|
|
// When using a user delegation key, container must already exist
|
|
const userDelegationKey = await blobServiceClient.getUserDelegationKey(
|
|
TEN_MINUTES_BEFORE_NOW,
|
|
TEN_MINUTES_AFTER_NOW
|
|
);
|
|
|
|
// Need only list permission to list blobs
|
|
const containerPermissions = "rcwdltf";
|
|
|
|
// Best practice: SAS options are time-limited
|
|
const sasOptions = {
|
|
containerName,
|
|
permissions: ContainerSASPermissions.parse(containerPermissions),
|
|
protocol: SASProtocol.HttpsAndHttp,
|
|
startsOn: TEN_MINUTES_BEFORE_NOW,
|
|
expiresOn: TEN_MINUTES_AFTER_NOW,
|
|
};
|
|
|
|
//conLogJSON.stringify(sasOptions));
|
|
|
|
const sasToken = generateBlobSASQueryParameters(
|
|
sasOptions,
|
|
userDelegationKey,
|
|
accountName
|
|
).toString();
|
|
|
|
return sasToken;
|
|
};
|
|
|
|
export const createBlobSas = async (containerName, blobName) => {
|
|
// Get environment variables
|
|
const accountName = process.env.AZURE_STORAGE_ACCOUNT_NAME;
|
|
|
|
// Best practice: create time limits
|
|
const TEN_MINUTES = 10 * 60 * 1000;
|
|
const NOW = new Date();
|
|
|
|
// Best practice: set start time a little before current time to
|
|
// make sure any clock issues are avoided
|
|
const TEN_MINUTES_BEFORE_NOW = new Date(NOW.valueOf() - TEN_MINUTES);
|
|
const TEN_MINUTES_AFTER_NOW = new Date(NOW.valueOf() + TEN_MINUTES);
|
|
|
|
// Best practice: use managed identity - DefaultAzureCredential
|
|
const blobServiceClient = new BlobServiceClient(
|
|
`https://${accountName}.blob.core.windows.net`,
|
|
new DefaultAzureCredential()
|
|
);
|
|
|
|
// Best practice: delegation key is time-limited
|
|
// When using a user delegation key, container must already exist
|
|
const userDelegationKey = await blobServiceClient.getUserDelegationKey(
|
|
TEN_MINUTES_BEFORE_NOW,
|
|
TEN_MINUTES_AFTER_NOW
|
|
);
|
|
|
|
// Need only create/write permission to upload file
|
|
const blobPermissionsForAnonymousUser = "rcwt";
|
|
|
|
// Best practice: SAS options are time-limited
|
|
const sasOptions = {
|
|
blobName,
|
|
containerName,
|
|
permissions: BlobSASPermissions.parse(blobPermissionsForAnonymousUser),
|
|
protocol: SASProtocol.HttpsAndHttp,
|
|
startsOn: TEN_MINUTES_BEFORE_NOW,
|
|
expiresOn: TEN_MINUTES_AFTER_NOW,
|
|
};
|
|
|
|
const sasToken = generateBlobSASQueryParameters(
|
|
sasOptions,
|
|
userDelegationKey,
|
|
accountName
|
|
).toString();
|
|
|
|
return sasToken;
|
|
};
|
|
|
|
export const createContainer = async (containerName) => {
|
|
const creds = new DefaultAzureCredential();
|
|
|
|
//containerName = containerName.toLowerCase();
|
|
|
|
//console.log(
|
|
// "container name:",
|
|
// containerName,
|
|
// STORAGE_PATH + "/" + containerName
|
|
// );
|
|
|
|
const containerClient = new ContainerClient(
|
|
`${STORAGE_PATH}/${containerName}`,
|
|
creds
|
|
);
|
|
|
|
const blobServiceClient = new BlobServiceClient(`${STORAGE_PATH}`, creds);
|
|
|
|
const createContainerResponse = await containerClient
|
|
.createIfNotExists()
|
|
.then((data) => {
|
|
return data;
|
|
})
|
|
.catch((error) => {
|
|
consoleLogger(error);
|
|
});
|
|
return createContainerResponse;
|
|
};
|
|
|
|
export const getContainers = async () => {
|
|
const creds = new DefaultAzureCredential();
|
|
const blobServiceClient = new BlobServiceClient(`${STORAGE_PATH}`, creds);
|
|
|
|
//console.log("Containers:");
|
|
for await (const container of blobServiceClient.listContainers()) {
|
|
console.log(`- ${container.name}`);
|
|
}
|
|
};
|
|
|
|
const getDocumentTypeFromFilename = (filename) => {
|
|
var doctypeCode = "000000";
|
|
|
|
if (filename.indexOf("_-_Statement_of_Case") > 0) doctypeCode = "000000";
|
|
else if (filename.indexOf("_-_Application_Form") > 0)
|
|
doctypeCode = "000001";
|
|
else if (filename.indexOf("_-_Site_Ownership_Certificate") > 0)
|
|
doctypeCode = "000002";
|
|
else if (filename.indexOf("_-_Decision_Notice") > 0) doctypeCode = "000003";
|
|
else if (filename.indexOf("_-_Site_Location_Plan") > 0)
|
|
doctypeCode = "000004";
|
|
else if (filename.indexOf("_-_Plans_Drawing_Documents") > 0)
|
|
doctypeCode = "000005";
|
|
else if (filename.indexOf("_-_Additional_Plans_Drawings_Documents") > 0)
|
|
doctypeCode = "000006";
|
|
else if (filename.indexOf("_-_Design_and_Access_Statement") > 0)
|
|
doctypeCode = "000007";
|
|
else if (filename.indexOf("_-_Green_Infrastructure_Statement") > 0)
|
|
doctypeCode = "000008";
|
|
else if (filename.indexOf("_-_LPA_Correspondence") > 0)
|
|
doctypeCode = "000009";
|
|
else if (filename.indexOf("_-_LPA_Original_Permission") > 0)
|
|
doctypeCode = "000010";
|
|
else if (filename.indexOf("_-_LPA's_Registration_Letter") > 0)
|
|
doctypeCode = "000010";
|
|
else if (filename.indexOf(+"_-_Environmental_Statement") > 0)
|
|
doctypeCode = "000012";
|
|
else if (filename.indexOf("_-_Cost_of_Application") > 0)
|
|
doctypeCode = "000013";
|
|
else if (filename.indexOf("_-_Other_Relevant_Material") > 0)
|
|
doctypeCode = "000014";
|
|
else if (
|
|
filename.indexOf("_-_S106_Agreement_or_Unilateral_Undertaking") > 0
|
|
)
|
|
doctypeCode = "000015";
|
|
|
|
return doctypeCode;
|
|
};
|
|
|
|
export const getBlobs = async (containerName, casefolderID) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
//conLog"getBlobs " + sasUrl);
|
|
|
|
const blobObj = [];
|
|
for await (const blob of containerClient.listBlobsFlat({
|
|
prefix: casefolderID + "/files/",
|
|
})) {
|
|
let blobDocumentType = blob.name
|
|
.split("/")[2]
|
|
.slice(0, blob.name.split("/")[2].indexOf("_"));
|
|
|
|
blobObj.push({
|
|
"name": blob.name.split("/")[2],
|
|
"path": blob.name,
|
|
"documentType": getDocumentTypeFromFilename(
|
|
blob.name.split("/")[2]
|
|
),
|
|
"versionId": blob.versionId,
|
|
"caseObj": casefolderID + "/" + casefolderID + "_case.json",
|
|
"isCurrentVersion": blob.isCurrentVersion,
|
|
"contentLength": blob.properties.contentLength,
|
|
"contentType": blob.contentType,
|
|
"lastModified": blob.properties.lastModified,
|
|
"filepath":
|
|
"/api/file/downloadblob?container=" +
|
|
containerName +
|
|
"&casefolderID=" +
|
|
casefolderID +
|
|
"&blobname=" +
|
|
blob.name,
|
|
"hashedfilepath": hashAPIPath(
|
|
"/api/file/downloadblob?container=" +
|
|
containerName +
|
|
"&casefolderID=" +
|
|
casefolderID +
|
|
"&blobname=" +
|
|
blob.name.split("/")[2]
|
|
),
|
|
"deletepath":
|
|
"/api/file/deleteblob?container=" +
|
|
containerName +
|
|
"&casefolderID=" +
|
|
casefolderID +
|
|
"&blobname=" +
|
|
blob.name.split("/")[2],
|
|
"hasheddeletepath": hashAPIPath(
|
|
"/api/file/deleteblob?container=" +
|
|
containerName +
|
|
"&casefolderID=" +
|
|
casefolderID +
|
|
"&blobname=" +
|
|
blob.name.split("/")[2]
|
|
),
|
|
"hashgetblobs": hashAPIPath(
|
|
"/api/file/getbloblist?container=" +
|
|
containerName +
|
|
"&casefolderID=" +
|
|
casefolderID
|
|
),
|
|
});
|
|
}
|
|
//console.log("blobObj:", blobObj);
|
|
|
|
return blobObj;
|
|
};
|
|
|
|
export const createBlob = async (formContent, containerName, caseref) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
formContent = JSON.parse(formContent);
|
|
let caseID = "";
|
|
|
|
caseID = _.has(formContent, "pinswg_name")
|
|
? formContent.pinswg_name
|
|
: caseref;
|
|
|
|
const content = JSON.stringify(formContent);
|
|
|
|
console.log(content);
|
|
const blobName = caseID + "/" + caseID + "_appeal.json";
|
|
|
|
console.log("blobName:", blobName);
|
|
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
|
|
|
|
const uploadBlobResponse = await blockBlobClient.upload(
|
|
content,
|
|
Buffer.byteLength(content)
|
|
);
|
|
|
|
const tags = {
|
|
containerid: containerName,
|
|
caseID: caseID,
|
|
blobType: "Appeal",
|
|
};
|
|
|
|
//console.log("the tags:", tags);
|
|
const withTags = await blockBlobClient.setTags(tags);
|
|
const withMeta = await blockBlobClient.setMetadata(tags);
|
|
|
|
return formContent.pinswg_name;
|
|
};
|
|
|
|
export const createRepBlob = async (formContent, containerName, caseref) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
formContent = JSON.parse(formContent);
|
|
|
|
const content = JSON.stringify(formContent);
|
|
|
|
//console.log(content);
|
|
const blobName = caseref + "/" + formContent.repfile_name + "_rep.json";
|
|
|
|
console.log("blobName:", blobName);
|
|
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
|
|
|
|
const uploadBlobResponse = await blockBlobClient.upload(
|
|
content,
|
|
Buffer.byteLength(content)
|
|
);
|
|
|
|
const tags = {
|
|
containerid: containerName,
|
|
caseID: formContent.caseRef,
|
|
blobType: "Representation",
|
|
};
|
|
|
|
//console.log("the tags:", tags);
|
|
const withTags = await blockBlobClient.setTags(tags);
|
|
const withMeta = await blockBlobClient.setMetadata(tags);
|
|
|
|
return formContent.pinswg_name;
|
|
};
|
|
|
|
export const createAppealPDFBlob = async (
|
|
formContent,
|
|
containerName,
|
|
caseref
|
|
) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
formContent = formContent;
|
|
let caseID = "";
|
|
|
|
caseID = caseref;
|
|
|
|
const content = formContent;
|
|
|
|
const repDate = new Date();
|
|
|
|
let day = repDate.getDate();
|
|
let month = repDate.getMonth() + 1;
|
|
let year = repDate.getFullYear();
|
|
|
|
const pdfFileName = year + "-" + month + "-" + day + "_-_Appeal_Form";
|
|
|
|
//console.log(content);
|
|
const blobName = caseID + "/files/" + pdfFileName + ".pdf";
|
|
|
|
console.log("blobName:", blobName);
|
|
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
|
|
|
|
const uploadBlobResponse = await blockBlobClient.uploadStream(content);
|
|
|
|
console.log(uploadBlobResponse);
|
|
|
|
const tags = {
|
|
containerid: containerName,
|
|
caseID: caseID,
|
|
blobType: "Appeal PDF",
|
|
};
|
|
|
|
//console.log("the tags:", tags);
|
|
const withTags = await blockBlobClient.setTags(tags);
|
|
const withMeta = await blockBlobClient.setMetadata(tags);
|
|
|
|
//return formContent.pinswg_name;
|
|
return uploadBlobResponse;
|
|
};
|
|
|
|
export const createRepPDFBlob = async (
|
|
formContent,
|
|
containerName,
|
|
caseref,
|
|
repName
|
|
) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
formContent = formContent;
|
|
let caseID = "";
|
|
|
|
caseID = caseref;
|
|
|
|
const content = formContent;
|
|
|
|
//console.log(content);
|
|
const blobName = caseID + "/" + repName + "/files/" + repName + ".pdf";
|
|
|
|
console.log("blobName:", blobName);
|
|
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
|
|
|
|
const uploadBlobResponse = await blockBlobClient.uploadStream(content);
|
|
|
|
let whichLocation =
|
|
repName.indexOf("_IP_") > 0
|
|
? "846040005"
|
|
: repName.indexOf("_Statement_") > 0
|
|
? "846040002"
|
|
: repName.indexOf("_Questionnaire_") > 0
|
|
? "846040001"
|
|
: repName.indexOf("_Comments") > 0
|
|
? "846040003"
|
|
: repName.indexOf("_Impact") > 0
|
|
? "846040001"
|
|
: "846040002";
|
|
|
|
const tags = {
|
|
containerid: containerName,
|
|
caseID: caseID,
|
|
blobType: "Representation PDF",
|
|
ishareLocation: whichLocation,
|
|
};
|
|
|
|
//console.log("the tags:", tags);
|
|
const withTags = await blockBlobClient.setTags(tags);
|
|
const withMeta = await blockBlobClient.setMetadata(tags);
|
|
|
|
return uploadBlobResponse;
|
|
};
|
|
|
|
export const deleteBlob = async (containerName, blobName) => {
|
|
const creds = new DefaultAzureCredential();
|
|
|
|
const options = {
|
|
deleteSnapshots: "include", // or 'only'
|
|
};
|
|
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
|
|
|
|
await blockBlobClient.delete(options);
|
|
|
|
console.log(`deleted blob ${blobName}`);
|
|
|
|
return { "deleted": blobName };
|
|
};
|
|
|
|
export const deleteBlobCase = async (containerName, blobName) => {
|
|
const creds = new DefaultAzureCredential();
|
|
|
|
const options = {
|
|
deleteSnapshots: "include", // or 'only'
|
|
};
|
|
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
//conLog"deleteBlobCase ");
|
|
|
|
console.log("blob to delete:", blobName);
|
|
|
|
for await (const blob of containerClient.listBlobsFlat({
|
|
prefix: blobName,
|
|
})) {
|
|
console.log(" ------ :", blob.name);
|
|
containerClient.deleteBlob(blob.name);
|
|
}
|
|
|
|
//containerClient.deleteBlob(blobName);
|
|
console.log(`deleted blob ${blobName}`);
|
|
for await (const blob of containerClient.listBlobsFlat()) {
|
|
console.log(" ------ :", blob.name);
|
|
}
|
|
return { "deleted": blobName };
|
|
};
|
|
|
|
export const deleteBlobRep = async (containerName, blobName) => {
|
|
const creds = new DefaultAzureCredential();
|
|
|
|
const options = {
|
|
deleteSnapshots: "include", // or 'only'
|
|
};
|
|
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
console.log("blob to delete:", blobName);
|
|
|
|
for await (const blob of containerClient.listBlobsFlat({
|
|
prefix: blobName,
|
|
})) {
|
|
console.log("------ :", blob.name);
|
|
const blockBlobClient = containerClient.getBlockBlobClient(blob.name);
|
|
console.log("=======:", await blockBlobClient.exists());
|
|
|
|
(await blockBlobClient.exists()) &&
|
|
containerClient.deleteBlob(blob.name);
|
|
|
|
//containerClient.deleteIfExists();
|
|
//containerClient.deleteBlob(blob.name);
|
|
}
|
|
|
|
//containerClient.deleteBlob(blobName);
|
|
//console.log(`deleted blob ${blobName}`);
|
|
// for await (const blob of containerClient.listBlobsFlat()) {
|
|
// console.log(" ------ :", blob.name);
|
|
// }
|
|
return { "deleted": blobName };
|
|
};
|
|
|
|
export const uploadFile = async (formContent, containerName, foldername) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
const files = formContent;
|
|
|
|
//console.log(...formContent);
|
|
console.log("files...", files, Object.keys(files).length, foldername);
|
|
|
|
for (const prop in files) {
|
|
console.log(`files[${prop}] = ${files[prop][0].size}`);
|
|
const blobName = foldername + "/files/" + files[prop][0].fieldName;
|
|
|
|
console.log(blobName);
|
|
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
|
|
const uploadBlobResponse = await blockBlobClient.uploadFile(
|
|
files[prop][0].path,
|
|
files[prop].size
|
|
);
|
|
|
|
console.log(
|
|
"////////////////////////\nfile name:",
|
|
files[prop][0].fieldName,
|
|
"\n////////////////////////////"
|
|
);
|
|
|
|
let whichLocation =
|
|
files[prop][0].fieldName.indexOf("_Statement_of_Case") > 0 ||
|
|
files[prop][0].fieldName.indexOf("_-_Statement_of_Case") > 0 ||
|
|
files[prop][0].fieldName.indexOf("_-_Application_Form") > 0 ||
|
|
files[prop][0].fieldName.indexOf("_-_Site_Ownership_Certificate") >
|
|
0 ||
|
|
files[prop][0].fieldName.indexOf("_-_Decision_Notice") > 0 ||
|
|
files[prop][0].fieldName.indexOf("_-_Site_Location_Plan") > 0 ||
|
|
files[prop][0].fieldName.indexOf("_-_Plans_Drawing_Documents") >
|
|
0 ||
|
|
files[prop][0].fieldName.indexOf(
|
|
"_-_Additional_Plans_Drawings_Documents"
|
|
) > 0 ||
|
|
files[prop][0].fieldName.indexOf("_-_Design_and_Access_Statement") >
|
|
0 ||
|
|
files[prop][0].fieldName.indexOf(
|
|
"_-_Green_Infrastructure_Statement"
|
|
) > 0 ||
|
|
files[prop][0].fieldName.indexOf("_-_LPA_Correspondence") > 0 ||
|
|
files[prop][0].fieldName.indexOf("_-_LPA_Original_Permission") >
|
|
0 ||
|
|
files[prop][0].fieldName.indexOf("_-_LPA's_Registration_Letter") >
|
|
0 ||
|
|
files[prop][0].fieldName.indexOf(+"_-_Environmental_Statement") >
|
|
0 ||
|
|
files[prop][0].fieldName.indexOf("_-_Cost_of_Application") > 0 ||
|
|
files[prop][0].fieldName.indexOf("_-_Other_Relevant_Material") >
|
|
0 ||
|
|
files[prop][0].fieldName.indexOf(
|
|
"_-_S106_Agreement_or_Unilateral_Undertaking" > 0
|
|
)
|
|
? "846040000"
|
|
: files[prop][0].fieldName.indexOf("_IP_") > 0
|
|
? "846040005"
|
|
: files[prop][0].fieldName.indexOf("_Statement_") > 0
|
|
? "846040002"
|
|
: files[prop][0].fieldName.indexOf("_Questionnaire_") > 0
|
|
? "846040001"
|
|
: files[prop][0].fieldName.indexOf("_Comments_") > 0
|
|
? "846040003"
|
|
: files[prop][0].fieldName.indexOf("_Impact_") > 0
|
|
? "846040001"
|
|
: "846040000";
|
|
|
|
const tags = {
|
|
containerid: containerName,
|
|
caseID: foldername.split("/")[0],
|
|
documentType: files[prop][0].fieldName.split(".")[1],
|
|
blobType: "RepresentationFile",
|
|
ishareLocation: whichLocation,
|
|
};
|
|
const withTags = await blockBlobClient.setTags(tags);
|
|
const withMeta = await blockBlobClient.setMetadata(tags);
|
|
|
|
console.log(
|
|
`Uploaded block blob ${files[prop][0].fieldName} successfully`,
|
|
uploadBlobResponse.requestId
|
|
);
|
|
}
|
|
};
|
|
|
|
export const uploadRepFiles = async (
|
|
formContent,
|
|
containerName,
|
|
foldername
|
|
) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
const files = formContent;
|
|
|
|
console.log(...formContent);
|
|
console.log("rep files...", files, Object.keys(files).length, foldername);
|
|
|
|
const blobName = foldername + "/" + formContent.split("tmp/")[1];
|
|
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
|
|
const uploadBlobResponse = await blockBlobClient.uploadFile(formContent);
|
|
const tags = {
|
|
containerid: containerName,
|
|
caseID: formContent.split("tmp/")[0],
|
|
documentType: "Rep docs",
|
|
};
|
|
console.log(tags);
|
|
const withTags = await blockBlobClient.setTags(tags);
|
|
const withMeta = await blockBlobClient.setMetadata(tags);
|
|
|
|
console.log(
|
|
`Uploaded block blob ${files} successfully`,
|
|
uploadBlobResponse.requestId
|
|
);
|
|
};
|
|
|
|
export const uploadPDFRepFiles = async (
|
|
formContent,
|
|
containerName,
|
|
foldername,
|
|
repType
|
|
) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
const files = formContent;
|
|
|
|
console.log(formContent, containerName, foldername);
|
|
console.log(
|
|
"rep pdf files...",
|
|
files,
|
|
Object.keys(files).length,
|
|
foldername
|
|
);
|
|
|
|
//console.log(`files[${prop}] = ${files[prop][0].size}`);
|
|
console.log(foldername + "/files/" + formContent.split("tmp/")[1]);
|
|
|
|
const blobName = foldername + "/" + formContent.split("tmp/")[1];
|
|
console.log(blobName);
|
|
|
|
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
|
|
const uploadBlobResponse = await blockBlobClient.uploadFile(formContent);
|
|
|
|
const tags = {
|
|
containerid: containerName,
|
|
caseID: foldername.split("/")[0],
|
|
documentType: repType,
|
|
blobType: "RepresentationPDF",
|
|
};
|
|
|
|
//console.log("the tags:", tags);
|
|
const withTags = await blockBlobClient.setTags(tags);
|
|
const withMeta = await blockBlobClient.setMetadata(tags);
|
|
|
|
console.log(
|
|
`Uploaded block blob ${files} successfully`,
|
|
uploadBlobResponse.requestId
|
|
);
|
|
};
|
|
|
|
export const uploadPDFAppealFiles = async (
|
|
formContent,
|
|
containerName,
|
|
foldername,
|
|
repType
|
|
) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
const files = formContent;
|
|
|
|
//console.log(
|
|
// "///////////////////////////// \n",
|
|
// formContent,
|
|
// containerName,
|
|
// foldername,
|
|
// "\n///////////////////////////// \n"
|
|
// );
|
|
//console.log(
|
|
// "///////////////////////////// \n",
|
|
// "appeal pdf files...",
|
|
// files,
|
|
// Object.keys(files).length,
|
|
// foldername,
|
|
// "\n///////////////////////////// \n"
|
|
// );
|
|
|
|
//console.log(`files[${prop}] = ${files[prop][0].size}`);
|
|
console.log(foldername + "/files/" + formContent.split("tmp/")[1]);
|
|
|
|
const blobName = foldername + "/files/" + formContent.split("tmp/")[1];
|
|
console.log(blobName);
|
|
|
|
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
|
|
const uploadBlobResponse = await blockBlobClient.uploadFile(formContent);
|
|
|
|
const tags = {
|
|
containerid: containerName,
|
|
caseID: foldername.split("/")[0],
|
|
blobType: "AppealPDF",
|
|
};
|
|
|
|
//console.log("the tags:", tags);
|
|
const withTags = await blockBlobClient.setTags(tags);
|
|
const withMeta = await blockBlobClient.setMetadata(tags);
|
|
|
|
console.log(
|
|
`Uploaded block blob ${files} successfully`,
|
|
uploadBlobResponse.requestId
|
|
);
|
|
};
|
|
|
|
export const uploadPDFCaseFiles = async (
|
|
formContent,
|
|
containerName,
|
|
foldername
|
|
) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
const files = formContent;
|
|
|
|
console.log(formContent, containerName, foldername);
|
|
console.log(
|
|
"case pdf files...",
|
|
files,
|
|
Object.keys(files).length,
|
|
foldername
|
|
);
|
|
|
|
const blobName = foldername + "/files/" + formContent.split("tmp/")[1];
|
|
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
|
|
const uploadBlobResponse = await blockBlobClient.uploadFile(formContent);
|
|
|
|
const tags = {
|
|
containerid: containerName,
|
|
caseID: foldername.split("/")[0],
|
|
blobType: "AppealPDF",
|
|
};
|
|
|
|
//console.log("the tags:", tags);
|
|
const withTags = await blockBlobClient.setTags(tags);
|
|
const withMeta = await blockBlobClient.setMetadata(tags);
|
|
|
|
console.log(
|
|
`Uploaded block blob ${files} successfully`,
|
|
uploadBlobResponse.requestId
|
|
);
|
|
};
|
|
|
|
export const downloadFile = async (containerName, blobName) => {
|
|
//console.log(containerName, blobName);
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
const blobClient = containerClient.getBlobClient(blobName);
|
|
const downloadedBlob = await blobClient.download(0);
|
|
|
|
const downloaded = await streamToBuffer(downloadedBlob.readableStreamBody);
|
|
return downloaded;
|
|
};
|
|
|
|
export const downloadProgressFile = async (
|
|
containerName,
|
|
blobName,
|
|
casefolderID
|
|
) => {
|
|
console.log(containerName, blobName);
|
|
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
const blobClient = containerClient.getBlobClient(blobName);
|
|
const downloadedBlob = await blobClient.download();
|
|
|
|
const downloaded = await streamToBuffer(downloadedBlob.readableStreamBody);
|
|
|
|
//console.log("Downloaded blob content:", downloaded.toString());
|
|
|
|
return JSON.parse(downloaded.toString());
|
|
};
|
|
|
|
export const downloadAllProgressFiles = async (
|
|
containerName,
|
|
progressBlobObj
|
|
) => {
|
|
//console.log(
|
|
// "/////////////////////////\n downloading files: " +
|
|
// JSON.stringify(progressBlobObj) +
|
|
// "\n/////////////////////////\n"
|
|
// );
|
|
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
let blobClient = {};
|
|
let downloadedBlob = {};
|
|
let downloaded = "";
|
|
let caseBlob = {};
|
|
let caseDownloaded = "";
|
|
let blobCount = 0;
|
|
|
|
for (const prop in progressBlobObj) {
|
|
//console.log(`Progress - ${prop}: ${progressBlobObj[prop].path}`);
|
|
blobClient = containerClient.getBlobClient(progressBlobObj[prop].path);
|
|
downloadedBlob = await blobClient.download(0);
|
|
downloaded =
|
|
downloaded +
|
|
(await streamToBuffer(downloadedBlob.readableStreamBody)) +
|
|
",";
|
|
blobCount++;
|
|
}
|
|
|
|
downloaded = downloaded.substring(0, downloaded.length - 1);
|
|
|
|
for (const prop in progressBlobObj) {
|
|
//console.log(`Cases - ${prop}: ${progressBlobObj[prop].caseObj}`);
|
|
blobClient = containerClient.getBlobClient(
|
|
progressBlobObj[prop].caseObj
|
|
);
|
|
caseBlob = await blobClient.download(0);
|
|
caseDownloaded =
|
|
caseDownloaded +
|
|
(await streamToBuffer(caseBlob.readableStreamBody)) +
|
|
",";
|
|
}
|
|
|
|
caseDownloaded = caseDownloaded.substring(0, caseDownloaded.length - 1);
|
|
|
|
return JSON.parse(
|
|
'{ "@odata.count": ' +
|
|
blobCount +
|
|
',"value": [' +
|
|
downloaded +
|
|
'],"case":[' +
|
|
caseDownloaded +
|
|
"]}"
|
|
);
|
|
};
|
|
|
|
export const downloadRepFile = async (
|
|
containerName,
|
|
blobName,
|
|
casefolderID
|
|
) => {
|
|
console.log(containerName, blobName);
|
|
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
const blobClient = containerClient.getBlobClient(blobName);
|
|
const downloadedBlob = await blobClient.download();
|
|
|
|
const downloaded = await streamToBuffer(downloadedBlob.readableStreamBody);
|
|
|
|
console.log("Downloaded blob content:", downloaded.toString());
|
|
|
|
return JSON.parse(downloaded.toString());
|
|
};
|
|
|
|
export const downloadAllRepsFiles = async (containerName, repsBlobObj) => {
|
|
//console.log(
|
|
// "/////////////////////////\n downloading files: " +
|
|
// JSON.stringify(repsBlobObj) +
|
|
// "\n/////////////////////////\n"
|
|
// );
|
|
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
let blobClient = {};
|
|
let downloadedBlob = {};
|
|
let repArr = [];
|
|
let downloaded = [];
|
|
let caseBlob = {};
|
|
let caseDownloaded = "";
|
|
let blobCount = 0;
|
|
|
|
Array.isArray(repsBlobObj) &&
|
|
!repsBlobObj.length &&
|
|
console.log("is empt and an array");
|
|
|
|
for (const prop in repsBlobObj) {
|
|
//console.log(`Progress - ${prop}: ${repsBlobObj[prop].path}`);
|
|
blobClient = containerClient.getBlobClient(repsBlobObj[prop].path);
|
|
downloadedBlob = await blobClient.download(0);
|
|
let repBlobObj = await streamToBuffer(
|
|
downloadedBlob.readableStreamBody
|
|
);
|
|
|
|
repBlobObj = JSON.parse(repBlobObj);
|
|
|
|
repBlobObj["casereference"] = repsBlobObj[prop].name.split("/")[1];
|
|
|
|
// repBlobObj = JSON.stringify(repBlobObj);
|
|
|
|
downloaded.push(repBlobObj);
|
|
blobCount++;
|
|
}
|
|
|
|
//downloaded = downloaded.substring(0, downloaded.length - 1);
|
|
//console.log(
|
|
// "/////////////////////////\n downloaded : " +
|
|
// JSON.stringify(
|
|
// '{ "@odata.count": ' +
|
|
// blobCount +
|
|
// ',"value": ' +
|
|
// downloaded +
|
|
// "}"
|
|
// ) +
|
|
// "\n/////////////////////////\n"
|
|
// );
|
|
|
|
return {
|
|
"@odata.count": blobCount,
|
|
"value": downloaded,
|
|
};
|
|
};
|
|
|
|
const streamToBuffer = async (readableStream) => {
|
|
return new Promise((resolve, reject) => {
|
|
const chunks = [];
|
|
readableStream.on("data", (data) => {
|
|
chunks.push(data instanceof Buffer ? data : Buffer.from(data));
|
|
});
|
|
readableStream.on("end", () => {
|
|
resolve(Buffer.concat(chunks));
|
|
});
|
|
readableStream.on("error", reject);
|
|
});
|
|
};
|
|
|
|
export const getCaseBlob = async (
|
|
containerName,
|
|
caseReference,
|
|
formContent
|
|
) => {
|
|
const content = JSON.stringify(formContent);
|
|
const blobName = caseReference + "/" + caseReference + "_case.json";
|
|
|
|
const containerBlobToken = await createBlobSas(containerName, blobName);
|
|
|
|
const blobSasUrl = `${STORAGE_PATH}/${containerName}/${blobName}?${containerBlobToken}`;
|
|
|
|
const blockBlobClient = new BlockBlobClient(blobSasUrl);
|
|
|
|
const uploadBlobResponse = await blockBlobClient.upload(
|
|
content,
|
|
Buffer.byteLength(content)
|
|
);
|
|
|
|
const tags = {
|
|
containerid: containerName,
|
|
caseID: caseReference,
|
|
blobType: "Case",
|
|
};
|
|
|
|
//console.log("the tags:", tags);
|
|
const withTags = await blockBlobClient.setTags(tags);
|
|
const withMeta = await blockBlobClient.setMetadata(tags);
|
|
|
|
return blobName;
|
|
};
|
|
|
|
export const getTempCaseBlob = async (containerName, caseReference) => {
|
|
const blobName = caseReference + "/" + caseReference + "_case.json";
|
|
const containerToken = await createContainerSas(containerName);
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
const blobClient = containerClient.getBlobClient(blobName);
|
|
const downloadedBlob = await blobClient.download(0);
|
|
|
|
const downloaded = await streamToBuffer(downloadedBlob.readableStreamBody);
|
|
return JSON.parse(downloaded.toString());
|
|
};
|
|
|
|
export const getProgressBlobs = async (containerName, caseReference) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
let blobCount = 0;
|
|
for await (const blob of containerClient.listBlobsFlat({
|
|
prefix: caseReference,
|
|
})) {
|
|
blobCount++;
|
|
}
|
|
|
|
//console.log(
|
|
// "this is the casefolder and blobcount:",
|
|
// caseReference,
|
|
// blobCount
|
|
// );
|
|
|
|
let blobObj = [];
|
|
for await (const blob of containerClient.listBlobsFlat({
|
|
prefix: caseReference + "/" + caseReference + "_appeal.json",
|
|
})) {
|
|
console.log("getProgressBlobs in here", blob.name.split("/"));
|
|
blobObj.push({
|
|
"name": blob.name.split("/")[1],
|
|
"path": blob.name,
|
|
"versionId": blob.versionId,
|
|
"caseObj": caseReference + "/" + caseReference + "_case.json",
|
|
"isCurrentVersion": blob.isCurrentVersion,
|
|
"contentLength": blob.properties.contentLength,
|
|
"contentType": blob.contentType,
|
|
"lastModified": blob.properties.lastModified,
|
|
"hashedfilepath": hashAPIPath(
|
|
"/api/file/downloadblob?container=" +
|
|
containerName +
|
|
"&casefolderID=" +
|
|
caseReference +
|
|
"&blobname=" +
|
|
blob.name.split("/")[1]
|
|
),
|
|
"hasheddeletepath": hashAPIPath(
|
|
"/api/file/deleteblob?container=" +
|
|
containerName +
|
|
"&casefolderID=" +
|
|
caseReference +
|
|
"&blobname=" +
|
|
blob.name.split("/")[1]
|
|
),
|
|
"hashgetblobs": hashAPIPath(
|
|
"/api/file/getbloblist?container=" +
|
|
containerName +
|
|
"&casefolderID=" +
|
|
caseReference
|
|
),
|
|
});
|
|
}
|
|
|
|
blobObj = _.sortBy(blobObj, [
|
|
function (o) {
|
|
return o.lastModified;
|
|
},
|
|
]).reverse()[0];
|
|
|
|
return blobObj;
|
|
};
|
|
|
|
export const getAllProgressBlobs = async (containerName) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
let blobCount = 0;
|
|
|
|
let blobObj = [];
|
|
for await (const blob of containerClient.findBlobsByTags(
|
|
"blobType='Appeal'"
|
|
)) {
|
|
blob.name.split("/")[1].indexOf("_appeal.json") > 0 &&
|
|
blob.name.split("/")[1].indexOf("undefined") < 0 &&
|
|
blobObj.push({
|
|
"name": blob.name.split("/")[1],
|
|
"path": blob.name,
|
|
//"versionId": blob.versionId,
|
|
"caseObj":
|
|
blob.name.split("/")[0] +
|
|
"/" +
|
|
blob.name.split("/")[0] +
|
|
"_case.json",
|
|
// "isCurrentVersion": blob.isCurrentVersion,
|
|
// "contentLength": blob.properties.contentLength,
|
|
// "contentType": blob.contentType,
|
|
// "lastModified": blob.properties.lastModified,
|
|
});
|
|
}
|
|
|
|
//console.log(
|
|
// "\n////////////////////////////\n",
|
|
// "blobObj:",
|
|
// blobObj,
|
|
// "\n////////////////////////////"
|
|
// );
|
|
|
|
return blobObj;
|
|
};
|
|
|
|
export const getRepsBlobs = async (containerName) => {
|
|
const containerToken = await createContainerSas(containerName);
|
|
|
|
const sasUrl = `${STORAGE_PATH}/${containerName}?${containerToken}`;
|
|
|
|
const containerClient = new ContainerClient(sasUrl);
|
|
|
|
let blobCount = 0;
|
|
for await (const blob of containerClient.findBlobsByTags(
|
|
"blobType='Representation'"
|
|
)) {
|
|
//console.log(`-----Get Rep Blob ${blobCount++}: ${blob.name}`);
|
|
blobCount++;
|
|
}
|
|
|
|
//console.log(
|
|
// "this is the casefolder and blobcount:",
|
|
// //caseReference,
|
|
// blobCount
|
|
// );
|
|
|
|
const listOptions = {
|
|
includeMetadata: true,
|
|
includeSnapshots: false,
|
|
includeTags: true,
|
|
includeVersions: true,
|
|
};
|
|
|
|
let blobObj = [];
|
|
for await (const blob of containerClient.findBlobsByTags(
|
|
"blobType='Representation'",
|
|
listOptions
|
|
)) {
|
|
const blobClient = containerClient.getBlobClient(blob.name);
|
|
//console.log("getreps blob:", blob);
|
|
blob.name.split("/")[2].indexOf("_rep.json") > 0 &&
|
|
blob.name.split("/")[2].indexOf("undefined") < 0 &&
|
|
blobObj.push({
|
|
"name": blob.name.split("/")[2],
|
|
"path": blob.name,
|
|
"size": blobClient.getProperties().contentLength,
|
|
});
|
|
}
|
|
|
|
//console.log("blobObjwwwww:", blobObj);
|
|
|
|
return blobObj;
|
|
};
|
|
|
|
export const createQueueSas = async (queueName) => {
|
|
// Get environment variables
|
|
const account = process.env.AZURE_STORAGE_ACCOUNT_NAME;
|
|
const accountKey = process.env.AZURE_STORAGE_ACCOUNT_KEY;
|
|
|
|
const sharedKeyCredential = new StorageSharedKeyCredential(
|
|
account,
|
|
accountKey
|
|
);
|
|
|
|
// Best practice: create time limits
|
|
const TEN_MINUTES = 10 * 60 * 1000;
|
|
const NOW = new Date();
|
|
|
|
// Best practice: set start time a little before current time to
|
|
// make sure any clock issues are avoided
|
|
const TEN_MINUTES_AFTER_NOW = new Date(NOW.valueOf() + TEN_MINUTES);
|
|
|
|
var resource_types = new AccountSASResourceTypes();
|
|
resource_types.container = true;
|
|
resource_types.object = true;
|
|
resource_types.service = true;
|
|
|
|
var permission = new QueueSASPermissions();
|
|
permission.read = true;
|
|
permission.write = true;
|
|
permission.delete = true;
|
|
permission.list = true;
|
|
permission.add = true;
|
|
permission.update = true;
|
|
permission.process = true;
|
|
|
|
var sas_signature_val = {
|
|
expiresOn: TEN_MINUTES_AFTER_NOW,
|
|
permissions: permission,
|
|
queueName: queueName,
|
|
};
|
|
|
|
const sasToken = generateQueueSASQueryParameters(
|
|
sas_signature_val,
|
|
sharedKeyCredential
|
|
);
|
|
//console.log("sass token:", sasToken);
|
|
|
|
return sasToken.toString();
|
|
};
|
|
|
|
export const createCaseCompleteMessage = async (
|
|
containerName,
|
|
caseReference
|
|
) => {
|
|
const whichQueue = "pedw-submitted-applications";
|
|
const queueToken = await createQueueSas(whichQueue);
|
|
|
|
const sasUrl = `${QUEUE_PATH}?${queueToken}`;
|
|
const queueServiceClient = new QueueServiceClient(sasUrl);
|
|
const endpointURL = process.env.AZURE_PEDW_STORAGE_ENDPOINT;
|
|
|
|
const message = {
|
|
containerName: containerName,
|
|
appealpath:
|
|
endpointURL +
|
|
"/" +
|
|
containerName +
|
|
"/" +
|
|
caseReference +
|
|
"/" +
|
|
caseReference +
|
|
"_appeal.json",
|
|
casepath:
|
|
endpointURL +
|
|
"/" +
|
|
containerName +
|
|
"/" +
|
|
caseReference +
|
|
"/" +
|
|
caseReference +
|
|
"_case.json",
|
|
filespath:
|
|
endpointURL + "/" + containerName + "/" + caseReference + "/files",
|
|
|
|
// uploadUrl: fileRecord.uploadUrl,
|
|
// filename: fileRecord.file.name,
|
|
// fileSize: fileRecord.file.size,
|
|
};
|
|
|
|
console.log(
|
|
"/////////////////////\n",
|
|
JSON.stringify(
|
|
`<QueueMessage><MessageText>${JSON.stringify(
|
|
message
|
|
)}</MessageText></QueueMessage>`
|
|
),
|
|
"/////////////////////\n"
|
|
);
|
|
|
|
const sendMessageResponse = await queueServiceClient
|
|
.getQueueClient(whichQueue)
|
|
.sendMessage(
|
|
JSON.stringify(
|
|
`<QueueMessage><MessageText>${JSON.stringify(
|
|
message
|
|
)}</MessageText></QueueMessage>`
|
|
)
|
|
);
|
|
|
|
return sendMessageResponse;
|
|
};
|
|
|
|
export const createRepCompleteMessage = async (
|
|
containerName,
|
|
caseReference,
|
|
filename
|
|
) => {
|
|
const whichQueue = "pedw-submitted-representations";
|
|
const queueToken = await createQueueSas(whichQueue);
|
|
|
|
const sasUrl = `${QUEUE_PATH}?${queueToken}`;
|
|
const queueServiceClient = new QueueServiceClient(sasUrl);
|
|
const endpointURL = process.env.AZURE_PEDW_STORAGE_ENDPOINT;
|
|
|
|
const message = {
|
|
containerName: containerName,
|
|
caseref: caseReference,
|
|
reppath:
|
|
endpointURL +
|
|
"/" +
|
|
containerName +
|
|
"/" +
|
|
caseReference +
|
|
"/" +
|
|
filename,
|
|
filespath:
|
|
endpointURL +
|
|
"/" +
|
|
containerName +
|
|
"/" +
|
|
caseReference +
|
|
"/" +
|
|
filename +
|
|
"/files",
|
|
};
|
|
|
|
console.log("======================", message, "=====================");
|
|
|
|
const sendMessageResponse = await queueServiceClient
|
|
.getQueueClient(whichQueue)
|
|
.sendMessage(
|
|
JSON.stringify(
|
|
`<QueueMessage><MessageText>${JSON.stringify(
|
|
message
|
|
)}</MessageText></QueueMessage>`
|
|
)
|
|
);
|
|
|
|
return sendMessageResponse;
|
|
};
|