feature/IO-2282-VSSTA-Integration:
- Boilerplate in new route - Fix issues with imgproxy - Clean up imgproxy
This commit is contained in:
@@ -1,12 +1,10 @@
|
|||||||
import { Button, Space } from "antd";
|
import { Button, Space } from "antd";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import React, { useState } from "react";
|
import { useState } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { logImEXEvent } from "../../firebase/firebase.utils";
|
import { logImEXEvent } from "../../firebase/firebase.utils";
|
||||||
import cleanAxios from "../../utils/CleanAxios";
|
import cleanAxios from "../../utils/CleanAxios";
|
||||||
import formatBytes from "../../utils/formatbytes";
|
import formatBytes from "../../utils/formatbytes";
|
||||||
//import yauzl from "yauzl";
|
|
||||||
|
|
||||||
import { connect } from "react-redux";
|
import { connect } from "react-redux";
|
||||||
import { createStructuredSelector } from "reselect";
|
import { createStructuredSelector } from "reselect";
|
||||||
import { selectBodyshop } from "../../redux/user/user.selectors";
|
import { selectBodyshop } from "../../redux/user/user.selectors";
|
||||||
@@ -28,7 +26,7 @@ const mapDispatchToProps = (dispatch) => ({
|
|||||||
|
|
||||||
export default connect(mapStateToProps, mapDispatchToProps)(JobsDocumentsImgproxyDownloadButton);
|
export default connect(mapStateToProps, mapDispatchToProps)(JobsDocumentsImgproxyDownloadButton);
|
||||||
|
|
||||||
export function JobsDocumentsImgproxyDownloadButton({ bodyshop, galleryImages, identifier }) {
|
export function JobsDocumentsImgproxyDownloadButton({ bodyshop, galleryImages, identifier, jobId }) {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const [download, setDownload] = useState(null);
|
const [download, setDownload] = useState(null);
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
@@ -46,6 +44,7 @@ export function JobsDocumentsImgproxyDownloadButton({ bodyshop, galleryImages, i
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function standardMediaDownload(bufferData) {
|
function standardMediaDownload(bufferData) {
|
||||||
const a = document.createElement("a");
|
const a = document.createElement("a");
|
||||||
const url = window.URL.createObjectURL(new Blob([bufferData]));
|
const url = window.URL.createObjectURL(new Blob([bufferData]));
|
||||||
@@ -53,13 +52,14 @@ export function JobsDocumentsImgproxyDownloadButton({ bodyshop, galleryImages, i
|
|||||||
a.download = `${identifier || "documents"}.zip`;
|
a.download = `${identifier || "documents"}.zip`;
|
||||||
a.click();
|
a.click();
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleDownload = async () => {
|
const handleDownload = async () => {
|
||||||
logImEXEvent("jobs_documents_download");
|
logImEXEvent("jobs_documents_download");
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
const zipUrl = await axios({
|
const zipUrl = await axios({
|
||||||
url: "/media/imgproxy/download",
|
url: "/media/imgproxy/download",
|
||||||
method: "POST",
|
method: "POST",
|
||||||
data: { documentids: imagesToDownload.map((_) => _.id) }
|
data: { jobId, documentids: imagesToDownload.map((_) => _.id) }
|
||||||
});
|
});
|
||||||
|
|
||||||
const theDownloadedZip = await cleanAxios({
|
const theDownloadedZip = await cleanAxios({
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ function JobsDocumentsImgproxyComponent({
|
|||||||
<SyncOutlined />
|
<SyncOutlined />
|
||||||
</Button>
|
</Button>
|
||||||
<JobsDocumentsGallerySelectAllComponent galleryImages={galleryImages} setGalleryImages={setGalleryImages} />
|
<JobsDocumentsGallerySelectAllComponent galleryImages={galleryImages} setGalleryImages={setGalleryImages} />
|
||||||
<JobsDocumentsDownloadButton galleryImages={galleryImages} identifier={downloadIdentifier} />
|
<JobsDocumentsDownloadButton galleryImages={galleryImages} identifier={downloadIdentifier} jobId={jobId} />
|
||||||
<JobsDocumentsDeleteButton
|
<JobsDocumentsDeleteButton
|
||||||
galleryImages={galleryImages}
|
galleryImages={galleryImages}
|
||||||
deletionCallback={billsCallback || fetchThumbnails || refetch}
|
deletionCallback={billsCallback || fetchThumbnails || refetch}
|
||||||
|
|||||||
@@ -117,6 +117,7 @@ const applyRoutes = ({ app }) => {
|
|||||||
app.use("/cdk", require("./server/routes/cdkRoutes"));
|
app.use("/cdk", require("./server/routes/cdkRoutes"));
|
||||||
app.use("/csi", require("./server/routes/csiRoutes"));
|
app.use("/csi", require("./server/routes/csiRoutes"));
|
||||||
app.use("/payroll", require("./server/routes/payrollRoutes"));
|
app.use("/payroll", require("./server/routes/payrollRoutes"));
|
||||||
|
app.use("/integrations", require("./server/routes/intergrationRoutes"));
|
||||||
|
|
||||||
// Default route for forbidden access
|
// Default route for forbidden access
|
||||||
app.get("/", (req, res) => {
|
app.get("/", (req, res) => {
|
||||||
|
|||||||
@@ -217,7 +217,7 @@ exports.PbsExportAp = async function (socket, { billids, txEnvelope }) {
|
|||||||
|
|
||||||
socket.emit("ap-export-success", billid);
|
socket.emit("ap-export-success", billid);
|
||||||
} else {
|
} else {
|
||||||
CdkBase.createLogEvent(socket, "ERROR", `Export was not succesful.`);
|
CdkBase.createLogEvent(socket, "ERROR", `Export was not successful.`);
|
||||||
socket.emit("ap-export-failure", {
|
socket.emit("ap-export-failure", {
|
||||||
billid,
|
billid,
|
||||||
error: AccountPostingChange.Message
|
error: AccountPostingChange.Message
|
||||||
|
|||||||
@@ -105,14 +105,14 @@ exports.PbsSelectedCustomer = async function PbsSelectedCustomer(socket, selecte
|
|||||||
|
|
||||||
socket.emit("export-success", socket.JobData.id);
|
socket.emit("export-success", socket.JobData.id);
|
||||||
} else {
|
} else {
|
||||||
CdkBase.createLogEvent(socket, "ERROR", `Export was not succesful.`);
|
CdkBase.createLogEvent(socket, "ERROR", `Export was not successful.`);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
CdkBase.createLogEvent(socket, "ERROR", `Error encountered in CdkSelectedCustomer. ${error}`);
|
CdkBase.createLogEvent(socket, "ERROR", `Error encountered in CdkSelectedCustomer. ${error}`);
|
||||||
await InsertFailedExportLog(socket, error);
|
await InsertFailedExportLog(socket, error);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
// Was Successful
|
||||||
async function CheckForErrors(socket, response) {
|
async function CheckForErrors(socket, response) {
|
||||||
if (response.WasSuccessful === undefined || response.WasSuccessful === true) {
|
if (response.WasSuccessful === undefined || response.WasSuccessful === true) {
|
||||||
CdkBase.createLogEvent(socket, "DEBUG", `Successful response from DMS. ${response.Message || ""}`);
|
CdkBase.createLogEvent(socket, "DEBUG", `Successful response from DMS. ${response.Message || ""}`);
|
||||||
|
|||||||
@@ -1,17 +1,19 @@
|
|||||||
const GraphQLClient = require("graphql-request").GraphQLClient;
|
const GraphQLClient = require("graphql-request").GraphQLClient;
|
||||||
const path = require("path");
|
|
||||||
require("dotenv").config({
|
|
||||||
path: path.resolve(process.cwd(), `.env.${process.env.NODE_ENV || "development"}`)
|
|
||||||
});
|
|
||||||
//New bug introduced with Graphql Request.
|
//New bug introduced with Graphql Request.
|
||||||
// https://github.com/prisma-labs/graphql-request/issues/206
|
// https://github.com/prisma-labs/graphql-request/issues/206
|
||||||
// const { Headers } = require("cross-fetch");
|
// const { Headers } = require("cross-fetch");
|
||||||
// global.Headers = global.Headers || Headers;
|
// global.Headers = global.Headers || Headers;
|
||||||
|
|
||||||
exports.client = new GraphQLClient(process.env.GRAPHQL_ENDPOINT, {
|
const client = new GraphQLClient(process.env.GRAPHQL_ENDPOINT, {
|
||||||
headers: {
|
headers: {
|
||||||
"x-hasura-admin-secret": process.env.HASURA_ADMIN_SECRET
|
"x-hasura-admin-secret": process.env.HASURA_ADMIN_SECRET
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
exports.unauthclient = new GraphQLClient(process.env.GRAPHQL_ENDPOINT);
|
const unauthorizedClient = new GraphQLClient(process.env.GRAPHQL_ENDPOINT);
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
client,
|
||||||
|
unauthorizedClient
|
||||||
|
};
|
||||||
|
|||||||
36
server/integrations/VSSTA/vsstaIntegration.js
Normal file
36
server/integrations/VSSTA/vsstaIntegration.js
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
const client = require("../../graphql-client/graphql-client").client;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VSSTA Integration
|
||||||
|
* @param req
|
||||||
|
* @param res
|
||||||
|
* @returns {Promise<void>}
|
||||||
|
*/
|
||||||
|
const vsstaIntegration = async (req, res) => {
|
||||||
|
const { logger } = req;
|
||||||
|
|
||||||
|
// Examplwe req.body
|
||||||
|
//{
|
||||||
|
// "shop_id":"test",
|
||||||
|
// "“ro_nbr“":"71475",
|
||||||
|
// "vin_nbr":"12345678912345678",
|
||||||
|
// "pdf_download_link":"https://portal-staging.vssta.com/invoice_data/1500564",
|
||||||
|
// "“company_api_key“":"xxxxx",
|
||||||
|
// "scan_type":"PRE",
|
||||||
|
// "scan_fee":"119.00",
|
||||||
|
// "scanner_number":"1234",
|
||||||
|
// "scan_time":"2022-08-23 17:53:50",
|
||||||
|
// "technician":"Frank Jones",
|
||||||
|
// "year":"2021",
|
||||||
|
// "make":"TOYOTA",
|
||||||
|
// "model":"Tacoma SR5 grade"
|
||||||
|
//
|
||||||
|
// }
|
||||||
|
// 1 - We would want to get the Job by searching the ro_nbr and shop_id (The assumption)
|
||||||
|
|
||||||
|
// 2 - We want to download the file provided from the pdf_download_link and associate (upload) it
|
||||||
|
// to S3 bucket for media, and insert a document record in the database, the file is base64 encoded (pdf), we will want to unencode it when storing it as a pdf
|
||||||
|
// We might not have to un-encode it, ultimately we want to send the base64 and the end is a pdf file the user can view from the documents section.
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = vsstaIntegration;
|
||||||
5
server/integrations/VSSTA/vsstaMiddleware.js
Normal file
5
server/integrations/VSSTA/vsstaMiddleware.js
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
const vsstaMiddleware = (req, res, next) => {
|
||||||
|
next();
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = vsstaMiddleware;
|
||||||
@@ -1,8 +1,12 @@
|
|||||||
const path = require("path");
|
const path = require("path");
|
||||||
require("dotenv").config({
|
|
||||||
path: path.resolve(process.cwd(), `.env.${process.env.NODE_ENV || "development"}`)
|
|
||||||
});
|
|
||||||
const logger = require("../utils/logger");
|
const logger = require("../utils/logger");
|
||||||
|
const { Upload } = require("@aws-sdk/lib-storage");
|
||||||
|
const { getSignedUrl } = require("@aws-sdk/s3-request-presigner");
|
||||||
|
const { InstanceRegion } = require("../utils/instanceMgr");
|
||||||
|
const archiver = require("archiver");
|
||||||
|
const stream = require("node:stream");
|
||||||
|
const base64UrlEncode = require("./util/base64UrlEncode");
|
||||||
|
const createHmacSha256 = require("./util/createHmacSha256");
|
||||||
const {
|
const {
|
||||||
S3Client,
|
S3Client,
|
||||||
PutObjectCommand,
|
PutObjectCommand,
|
||||||
@@ -10,35 +14,31 @@ const {
|
|||||||
CopyObjectCommand,
|
CopyObjectCommand,
|
||||||
DeleteObjectCommand
|
DeleteObjectCommand
|
||||||
} = require("@aws-sdk/client-s3");
|
} = require("@aws-sdk/client-s3");
|
||||||
const { Upload } = require("@aws-sdk/lib-storage");
|
|
||||||
|
|
||||||
const { getSignedUrl } = require("@aws-sdk/s3-request-presigner");
|
|
||||||
const crypto = require("crypto");
|
|
||||||
const { InstanceRegion } = require("../utils/instanceMgr");
|
|
||||||
const {
|
const {
|
||||||
GET_DOCUMENTS_BY_JOB,
|
GET_DOCUMENTS_BY_JOB,
|
||||||
QUERY_TEMPORARY_DOCS,
|
QUERY_TEMPORARY_DOCS,
|
||||||
GET_DOCUMENTS_BY_IDS,
|
GET_DOCUMENTS_BY_IDS,
|
||||||
DELETE_MEDIA_DOCUMENTS
|
DELETE_MEDIA_DOCUMENTS
|
||||||
} = require("../graphql-client/queries");
|
} = require("../graphql-client/queries");
|
||||||
const archiver = require("archiver");
|
|
||||||
const stream = require("node:stream");
|
|
||||||
|
|
||||||
const imgproxyBaseUrl = process.env.IMGPROXY_BASE_URL; // `https://u4gzpp5wm437dnm75qa42tvza40fguqr.lambda-url.ca-central-1.on.aws` //Direct Lambda function access to bypass CDN.
|
const imgproxyBaseUrl = process.env.IMGPROXY_BASE_URL; // `https://u4gzpp5wm437dnm75qa42tvza40fguqr.lambda-url.ca-central-1.on.aws` //Direct Lambda function access to bypass CDN.
|
||||||
const imgproxyKey = process.env.IMGPROXY_KEY;
|
|
||||||
const imgproxySalt = process.env.IMGPROXY_SALT;
|
const imgproxySalt = process.env.IMGPROXY_SALT;
|
||||||
const imgproxyDestinationBucket = process.env.IMGPROXY_DESTINATION_BUCKET;
|
const imgproxyDestinationBucket = process.env.IMGPROXY_DESTINATION_BUCKET;
|
||||||
|
|
||||||
//Generate a signed upload link for the S3 bucket.
|
//Generate a signed upload link for the S3 bucket.
|
||||||
//All uploads must be going to the same shop and jobid.
|
//All uploads must be going to the same shop and jobid.
|
||||||
exports.generateSignedUploadUrls = async (req, res) => {
|
const generateSignedUploadUrls = async (req, res) => {
|
||||||
const { filenames, bodyshopid, jobid } = req.body;
|
const { filenames, bodyshopid, jobid } = req.body;
|
||||||
try {
|
try {
|
||||||
logger.log("imgproxy-upload-start", "DEBUG", req.user?.email, jobid, { filenames, bodyshopid, jobid });
|
logger.log("imgproxy-upload-start", "DEBUG", req.user?.email, jobid, {
|
||||||
|
filenames,
|
||||||
|
bodyshopid,
|
||||||
|
jobid
|
||||||
|
});
|
||||||
|
|
||||||
const signedUrls = [];
|
const signedUrls = [];
|
||||||
for (const filename of filenames) {
|
for (const filename of filenames) {
|
||||||
const key = filename;
|
const key = filename;
|
||||||
const client = new S3Client({ region: InstanceRegion() });
|
const client = new S3Client({ region: InstanceRegion() });
|
||||||
const command = new PutObjectCommand({
|
const command = new PutObjectCommand({
|
||||||
Bucket: imgproxyDestinationBucket,
|
Bucket: imgproxyDestinationBucket,
|
||||||
@@ -67,7 +67,7 @@ exports.generateSignedUploadUrls = async (req, res) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.getThumbnailUrls = async (req, res) => {
|
const getThumbnailUrls = async (req, res) => {
|
||||||
const { jobid, billid } = req.body;
|
const { jobid, billid } = req.body;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -86,10 +86,11 @@ exports.getThumbnailUrls = async (req, res) => {
|
|||||||
|
|
||||||
for (const document of data.documents) {
|
for (const document of data.documents) {
|
||||||
//Format to follow:
|
//Format to follow:
|
||||||
//<Cloudfront_to_lambda>/<hmac with SHA of entire request URI path (with base64 encoded URL if needed), beginning with unencoded/unhashed Salt>/<remainder of url - resize params >/< base 64 URL encoded to image path>
|
//<Cloudfront_to_lambda>/<hmac with SHA of entire request URI path (with base64 encoded URL if needed), beginning with un-encoded/un-hashed Salt>/<remainder of url - resize params >/< base 64 URL encoded to image path>
|
||||||
|
|
||||||
//When working with documents from Cloudinary, the URL does not include the extension.
|
//When working with documents from Cloudinary, the URL does not include the extension.
|
||||||
|
|
||||||
let key;
|
let key;
|
||||||
|
|
||||||
if (/\.[^/.]+$/.test(document.key)) {
|
if (/\.[^/.]+$/.test(document.key)) {
|
||||||
key = document.key;
|
key = document.key;
|
||||||
} else {
|
} else {
|
||||||
@@ -98,12 +99,12 @@ exports.getThumbnailUrls = async (req, res) => {
|
|||||||
// Build the S3 path to the object.
|
// Build the S3 path to the object.
|
||||||
const fullS3Path = `s3://${imgproxyDestinationBucket}/${key}`;
|
const fullS3Path = `s3://${imgproxyDestinationBucket}/${key}`;
|
||||||
const base64UrlEncodedKeyString = base64UrlEncode(fullS3Path);
|
const base64UrlEncodedKeyString = base64UrlEncode(fullS3Path);
|
||||||
|
|
||||||
//Thumbnail Generation Block
|
//Thumbnail Generation Block
|
||||||
const thumbProxyPath = `${thumbResizeParams}/${base64UrlEncodedKeyString}`;
|
const thumbProxyPath = `${thumbResizeParams}/${base64UrlEncodedKeyString}`;
|
||||||
const thumbHmacSalt = createHmacSha256(`${imgproxySalt}/${thumbProxyPath}`);
|
const thumbHmacSalt = createHmacSha256(`${imgproxySalt}/${thumbProxyPath}`);
|
||||||
|
|
||||||
//Full Size URL block
|
//Full Size URL block
|
||||||
|
|
||||||
const fullSizeProxyPath = `${base64UrlEncodedKeyString}`;
|
const fullSizeProxyPath = `${base64UrlEncodedKeyString}`;
|
||||||
const fullSizeHmacSalt = createHmacSha256(`${imgproxySalt}/${fullSizeProxyPath}`);
|
const fullSizeHmacSalt = createHmacSha256(`${imgproxySalt}/${fullSizeProxyPath}`);
|
||||||
|
|
||||||
@@ -114,8 +115,8 @@ exports.getThumbnailUrls = async (req, res) => {
|
|||||||
Bucket: imgproxyDestinationBucket,
|
Bucket: imgproxyDestinationBucket,
|
||||||
Key: key
|
Key: key
|
||||||
});
|
});
|
||||||
const presignedGetUrl = await getSignedUrl(s3client, command, { expiresIn: 360 });
|
|
||||||
s3Props.presignedGetUrl = presignedGetUrl;
|
s3Props.presignedGetUrl = await getSignedUrl(s3client, command, { expiresIn: 360 });
|
||||||
|
|
||||||
const originalProxyPath = `raw:1/${base64UrlEncodedKeyString}`;
|
const originalProxyPath = `raw:1/${base64UrlEncodedKeyString}`;
|
||||||
const originalHmacSalt = createHmacSha256(`${imgproxySalt}/${originalProxyPath}`);
|
const originalHmacSalt = createHmacSha256(`${imgproxySalt}/${originalProxyPath}`);
|
||||||
@@ -146,40 +147,46 @@ exports.getThumbnailUrls = async (req, res) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.getBillFiles = async (req, res) => {
|
const downloadFiles = async (req, res) => {
|
||||||
//Givena bill ID, get the documents associated to it.
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.downloadFiles = async (req, res) => {
|
|
||||||
//Given a series of document IDs or keys, generate a file (or a link) to download all images in bulk
|
//Given a series of document IDs or keys, generate a file (or a link) to download all images in bulk
|
||||||
const { jobid, billid, documentids } = req.body;
|
const { jobId, billid, documentids } = req.body;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
logger.log("imgproxy-download", "DEBUG", req.user?.email, jobid, { billid, jobid, documentids });
|
logger.log("imgproxy-download", "DEBUG", req.user?.email, jobId, { billid, jobId, documentids });
|
||||||
|
|
||||||
//Delayed as the key structure may change slightly from what it is currently and will require evaluating mobile components.
|
//Delayed as the key structure may change slightly from what it is currently and will require evaluating mobile components.
|
||||||
const client = req.userGraphQLClient;
|
const client = req.userGraphQLClient;
|
||||||
|
|
||||||
//Query for the keys of the document IDs
|
//Query for the keys of the document IDs
|
||||||
const data = await client.request(GET_DOCUMENTS_BY_IDS, { documentIds: documentids });
|
const data = await client.request(GET_DOCUMENTS_BY_IDS, { documentIds: documentids });
|
||||||
//Using the Keys, get all of the S3 links, zip them, and send back to the client.
|
|
||||||
|
//Using the Keys, get all the S3 links, zip them, and send back to the client.
|
||||||
const s3client = new S3Client({ region: InstanceRegion() });
|
const s3client = new S3Client({ region: InstanceRegion() });
|
||||||
const archiveStream = archiver("zip");
|
const archiveStream = archiver("zip");
|
||||||
|
|
||||||
archiveStream.on("error", (error) => {
|
archiveStream.on("error", (error) => {
|
||||||
console.error("Archival encountered an error:", error);
|
console.error("Archival encountered an error:", error);
|
||||||
throw new Error(error);
|
throw new Error(error);
|
||||||
});
|
});
|
||||||
|
|
||||||
const passthrough = new stream.PassThrough();
|
const passthrough = new stream.PassThrough();
|
||||||
|
|
||||||
archiveStream.pipe(passthrough);
|
archiveStream.pipe(passthrough);
|
||||||
|
|
||||||
for (const key of data.documents.map((d) => d.key)) {
|
for (const key of data.documents.map((d) => d.key)) {
|
||||||
const response = await s3client.send(new GetObjectCommand({ Bucket: imgproxyDestinationBucket, Key: key }));
|
const response = await s3client.send(
|
||||||
// :: `response.Body` is a Buffer
|
new GetObjectCommand({
|
||||||
console.log(path.basename(key));
|
Bucket: imgproxyDestinationBucket,
|
||||||
|
Key: key
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
archiveStream.append(response.Body, { name: path.basename(key) });
|
archiveStream.append(response.Body, { name: path.basename(key) });
|
||||||
}
|
}
|
||||||
|
|
||||||
archiveStream.finalize();
|
await archiveStream.finalize();
|
||||||
|
|
||||||
const archiveKey = `archives/${jobid}/archive-${new Date().toISOString()}.zip`;
|
const archiveKey = `archives/${jobId || "na"}/archive-${new Date().toISOString()}.zip`;
|
||||||
|
|
||||||
const parallelUploads3 = new Upload({
|
const parallelUploads3 = new Upload({
|
||||||
client: s3client,
|
client: s3client,
|
||||||
@@ -192,7 +199,7 @@ exports.downloadFiles = async (req, res) => {
|
|||||||
console.log(progress);
|
console.log(progress);
|
||||||
});
|
});
|
||||||
|
|
||||||
const uploadResult = await parallelUploads3.done();
|
await parallelUploads3.done();
|
||||||
//Generate the presigned URL to download it.
|
//Generate the presigned URL to download it.
|
||||||
const presignedUrl = await getSignedUrl(
|
const presignedUrl = await getSignedUrl(
|
||||||
s3client,
|
s3client,
|
||||||
@@ -203,8 +210,8 @@ exports.downloadFiles = async (req, res) => {
|
|||||||
res.json({ success: true, url: presignedUrl });
|
res.json({ success: true, url: presignedUrl });
|
||||||
//Iterate over them, build the link based on the media type, and return the array.
|
//Iterate over them, build the link based on the media type, and return the array.
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
logger.log("imgproxy-thumbnails-error", "ERROR", req.user?.email, jobid, {
|
logger.log("imgproxy-thumbnails-error", "ERROR", req.user?.email, jobId, {
|
||||||
jobid,
|
jobId,
|
||||||
billid,
|
billid,
|
||||||
message: error.message,
|
message: error.message,
|
||||||
stack: error.stack
|
stack: error.stack
|
||||||
@@ -213,7 +220,7 @@ exports.downloadFiles = async (req, res) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.deleteFiles = async (req, res) => {
|
const deleteFiles = async (req, res) => {
|
||||||
//Mark a file for deletion in s3. Lifecycle deletion will actually delete the copy in the future.
|
//Mark a file for deletion in s3. Lifecycle deletion will actually delete the copy in the future.
|
||||||
//Mark as deleted from the documents section of the database.
|
//Mark as deleted from the documents section of the database.
|
||||||
const { ids } = req.body;
|
const { ids } = req.body;
|
||||||
@@ -232,7 +239,7 @@ exports.deleteFiles = async (req, res) => {
|
|||||||
(async () => {
|
(async () => {
|
||||||
try {
|
try {
|
||||||
// Delete the original object
|
// Delete the original object
|
||||||
const deleteResult = await s3client.send(
|
await s3client.send(
|
||||||
new DeleteObjectCommand({
|
new DeleteObjectCommand({
|
||||||
Bucket: imgproxyDestinationBucket,
|
Bucket: imgproxyDestinationBucket,
|
||||||
Key: document.key
|
Key: document.key
|
||||||
@@ -250,7 +257,7 @@ exports.deleteFiles = async (req, res) => {
|
|||||||
const result = await Promise.all(deleteTransactions);
|
const result = await Promise.all(deleteTransactions);
|
||||||
const errors = result.filter((d) => d.error);
|
const errors = result.filter((d) => d.error);
|
||||||
|
|
||||||
//Delete only the succesful deletes.
|
//Delete only the successful deletes.
|
||||||
const deleteMutationResult = await client.request(DELETE_MEDIA_DOCUMENTS, {
|
const deleteMutationResult = await client.request(DELETE_MEDIA_DOCUMENTS, {
|
||||||
ids: result.filter((t) => !t.error).map((d) => d.id)
|
ids: result.filter((t) => !t.error).map((d) => d.id)
|
||||||
});
|
});
|
||||||
@@ -266,7 +273,7 @@ exports.deleteFiles = async (req, res) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.moveFiles = async (req, res) => {
|
const moveFiles = async (req, res) => {
|
||||||
const { documents, tojobid } = req.body;
|
const { documents, tojobid } = req.body;
|
||||||
try {
|
try {
|
||||||
logger.log("imgproxy-move-files", "DEBUG", req.user.email, null, { documents, tojobid });
|
logger.log("imgproxy-move-files", "DEBUG", req.user.email, null, { documents, tojobid });
|
||||||
@@ -278,7 +285,7 @@ exports.moveFiles = async (req, res) => {
|
|||||||
(async () => {
|
(async () => {
|
||||||
try {
|
try {
|
||||||
// Copy the object to the new key
|
// Copy the object to the new key
|
||||||
const copyresult = await s3client.send(
|
await s3client.send(
|
||||||
new CopyObjectCommand({
|
new CopyObjectCommand({
|
||||||
Bucket: imgproxyDestinationBucket,
|
Bucket: imgproxyDestinationBucket,
|
||||||
CopySource: `${imgproxyDestinationBucket}/${document.from}`,
|
CopySource: `${imgproxyDestinationBucket}/${document.from}`,
|
||||||
@@ -288,7 +295,7 @@ exports.moveFiles = async (req, res) => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Delete the original object
|
// Delete the original object
|
||||||
const deleteResult = await s3client.send(
|
await s3client.send(
|
||||||
new DeleteObjectCommand({
|
new DeleteObjectCommand({
|
||||||
Bucket: imgproxyDestinationBucket,
|
Bucket: imgproxyDestinationBucket,
|
||||||
Key: document.from
|
Key: document.from
|
||||||
@@ -297,7 +304,12 @@ exports.moveFiles = async (req, res) => {
|
|||||||
|
|
||||||
return document;
|
return document;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return { id: document.id, from: document.from, error: error, bucket: imgproxyDestinationBucket };
|
return {
|
||||||
|
id: document.id,
|
||||||
|
from: document.from,
|
||||||
|
error: error,
|
||||||
|
bucket: imgproxyDestinationBucket
|
||||||
|
};
|
||||||
}
|
}
|
||||||
})()
|
})()
|
||||||
);
|
);
|
||||||
@@ -307,6 +319,7 @@ exports.moveFiles = async (req, res) => {
|
|||||||
const errors = result.filter((d) => d.error);
|
const errors = result.filter((d) => d.error);
|
||||||
|
|
||||||
let mutations = "";
|
let mutations = "";
|
||||||
|
|
||||||
result
|
result
|
||||||
.filter((d) => !d.error)
|
.filter((d) => !d.error)
|
||||||
.forEach((d, idx) => {
|
.forEach((d, idx) => {
|
||||||
@@ -327,7 +340,7 @@ exports.moveFiles = async (req, res) => {
|
|||||||
}`);
|
}`);
|
||||||
res.json({ errors, mutationResult });
|
res.json({ errors, mutationResult });
|
||||||
} else {
|
} else {
|
||||||
res.json({ errors: "No images were succesfully moved on remote server. " });
|
res.json({ errors: "No images were successfully moved on remote server. " });
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
logger.log("imgproxy-move-files-error", "ERROR", req.user.email, null, {
|
logger.log("imgproxy-move-files-error", "ERROR", req.user.email, null, {
|
||||||
@@ -340,9 +353,10 @@ exports.moveFiles = async (req, res) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function base64UrlEncode(str) {
|
module.exports = {
|
||||||
return Buffer.from(str).toString("base64").replace(/\+/g, "-").replace(/\//g, "_").replace(/=+$/, "");
|
generateSignedUploadUrls,
|
||||||
}
|
getThumbnailUrls,
|
||||||
function createHmacSha256(data) {
|
downloadFiles,
|
||||||
return crypto.createHmac("sha256", imgproxyKey).update(data).digest("base64url");
|
deleteFiles,
|
||||||
}
|
moveFiles
|
||||||
|
};
|
||||||
|
|||||||
@@ -1,14 +1,9 @@
|
|||||||
const path = require("path");
|
|
||||||
const _ = require("lodash");
|
const _ = require("lodash");
|
||||||
const logger = require("../utils/logger");
|
const logger = require("../utils/logger");
|
||||||
const client = require("../graphql-client/graphql-client").client;
|
const client = require("../graphql-client/graphql-client").client;
|
||||||
const queries = require("../graphql-client/queries");
|
const queries = require("../graphql-client/queries");
|
||||||
|
|
||||||
require("dotenv").config({
|
const cloudinary = require("cloudinary").v2;
|
||||||
path: path.resolve(process.cwd(), `.env.${process.env.NODE_ENV || "development"}`)
|
|
||||||
});
|
|
||||||
|
|
||||||
var cloudinary = require("cloudinary").v2;
|
|
||||||
cloudinary.config(process.env.CLOUDINARY_URL);
|
cloudinary.config(process.env.CLOUDINARY_URL);
|
||||||
|
|
||||||
const createSignedUploadURL = (req, res) => {
|
const createSignedUploadURL = (req, res) => {
|
||||||
@@ -16,8 +11,6 @@ const createSignedUploadURL = (req, res) => {
|
|||||||
res.send(cloudinary.utils.api_sign_request(req.body, process.env.CLOUDINARY_API_SECRET));
|
res.send(cloudinary.utils.api_sign_request(req.body, process.env.CLOUDINARY_API_SECRET));
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.createSignedUploadURL = createSignedUploadURL;
|
|
||||||
|
|
||||||
const downloadFiles = (req, res) => {
|
const downloadFiles = (req, res) => {
|
||||||
const { ids } = req.body;
|
const { ids } = req.body;
|
||||||
logger.log("media-bulk-download", "DEBUG", req.user.email, ids, null);
|
logger.log("media-bulk-download", "DEBUG", req.user.email, ids, null);
|
||||||
@@ -28,7 +21,6 @@ const downloadFiles = (req, res) => {
|
|||||||
});
|
});
|
||||||
res.send(url);
|
res.send(url);
|
||||||
};
|
};
|
||||||
exports.downloadFiles = downloadFiles;
|
|
||||||
|
|
||||||
const deleteFiles = async (req, res) => {
|
const deleteFiles = async (req, res) => {
|
||||||
const { ids } = req.body;
|
const { ids } = req.body;
|
||||||
@@ -91,8 +83,6 @@ const deleteFiles = async (req, res) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.deleteFiles = deleteFiles;
|
|
||||||
|
|
||||||
const renameKeys = async (req, res) => {
|
const renameKeys = async (req, res) => {
|
||||||
const { documents, tojobid } = req.body;
|
const { documents, tojobid } = req.body;
|
||||||
logger.log("media-bulk-rename", "DEBUG", req.user.email, null, documents);
|
logger.log("media-bulk-rename", "DEBUG", req.user.email, null, documents);
|
||||||
@@ -102,13 +92,12 @@ const renameKeys = async (req, res) => {
|
|||||||
proms.push(
|
proms.push(
|
||||||
(async () => {
|
(async () => {
|
||||||
try {
|
try {
|
||||||
const res = {
|
return {
|
||||||
id: d.id,
|
id: d.id,
|
||||||
...(await cloudinary.uploader.rename(d.from, d.to, {
|
...(await cloudinary.uploader.rename(d.from, d.to, {
|
||||||
resource_type: DetermineFileType(d.type)
|
resource_type: DetermineFileType(d.type)
|
||||||
}))
|
}))
|
||||||
};
|
};
|
||||||
return res;
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return { id: d.id, from: d.from, error: error };
|
return { id: d.id, from: d.from, error: error };
|
||||||
}
|
}
|
||||||
@@ -148,10 +137,9 @@ const renameKeys = async (req, res) => {
|
|||||||
}`);
|
}`);
|
||||||
res.json({ errors, mutationResult });
|
res.json({ errors, mutationResult });
|
||||||
} else {
|
} else {
|
||||||
res.json({ errors: "No images were succesfully moved on remote server. " });
|
res.json({ errors: "No images were successfully moved on remote server. " });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
exports.renameKeys = renameKeys;
|
|
||||||
|
|
||||||
//Also needs to be updated in upload utility and mobile app.
|
//Also needs to be updated in upload utility and mobile app.
|
||||||
function DetermineFileType(filetype) {
|
function DetermineFileType(filetype) {
|
||||||
@@ -163,3 +151,10 @@ function DetermineFileType(filetype) {
|
|||||||
|
|
||||||
return "auto";
|
return "auto";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
createSignedUploadURL,
|
||||||
|
downloadFiles,
|
||||||
|
deleteFiles,
|
||||||
|
renameKeys
|
||||||
|
};
|
||||||
|
|||||||
4
server/media/util/base64UrlEncode.js
Normal file
4
server/media/util/base64UrlEncode.js
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
const base64UrlEncode = (str) =>
|
||||||
|
Buffer.from(str).toString("base64").replace(/\+/g, "-").replace(/\//g, "_").replace(/=+$/, "");
|
||||||
|
|
||||||
|
module.exports = base64UrlEncode;
|
||||||
7
server/media/util/createHmacSha256.js
Normal file
7
server/media/util/createHmacSha256.js
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
const crypto = require("crypto");
|
||||||
|
|
||||||
|
const imgproxyKey = process.env.IMGPROXY_KEY;
|
||||||
|
|
||||||
|
const createHmacSha256 = (data) => crypto.createHmac("sha256", imgproxyKey).update(data).digest("base64url");
|
||||||
|
|
||||||
|
module.exports = createHmacSha256;
|
||||||
8
server/routes/intergrationRoutes.js
Normal file
8
server/routes/intergrationRoutes.js
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
const express = require("express");
|
||||||
|
const vsstaIntegration = require("../integrations/VSSTA/vsstaIntegration");
|
||||||
|
const vsstaMiddleware = require("../integrations/VSSTA/vsstaMiddleware");
|
||||||
|
const router = express.Router();
|
||||||
|
|
||||||
|
router.post("/vssta", vsstaMiddleware, vsstaIntegration);
|
||||||
|
|
||||||
|
module.exports = router;
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
const express = require("express");
|
const express = require("express");
|
||||||
const router = express.Router();
|
const router = express.Router();
|
||||||
const job = require("../job/job");
|
|
||||||
const ppc = require("../ccc/partspricechange");
|
const ppc = require("../ccc/partspricechange");
|
||||||
const { partsScan } = require("../parts-scan/parts-scan");
|
const { partsScan } = require("../parts-scan/parts-scan");
|
||||||
const eventAuthorizationMiddleware = require("../middleware/eventAuthorizationMIddleware");
|
const eventAuthorizationMiddleware = require("../middleware/eventAuthorizationMIddleware");
|
||||||
|
|||||||
Reference in New Issue
Block a user