@opengis/fastify-table 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resize.d.ts","sourceRoot":"","sources":["../../../../../server/routes/file/controllers/resize.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"resize.d.ts","sourceRoot":"","sources":["../../../../../server/routes/file/controllers/resize.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAwC5C;;GAEG;AAEH,wBAA8B,MAAM,CAClC,EACE,KAAK,GACN,EAAE;IACD,KAAK,EAAE;QACL,QAAQ,EAAE,MAAM,CAAC;QACjB,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;QAC1B,IAAI,EAAE,MAAM,CAAC;QACb,CAAC,CAAC,EAAE,MAAM,CAAC;QACX,CAAC,CAAC,EAAE,MAAM,CAAC;QACX,OAAO,CAAC,EAAE,GAAG,CAAC;QACd,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,OAAO,CAAC,EAAE,GAAG,CAAC;KACf,CAAC;CACH,EACD,KAAK,EAAE,YAAY,kBA8IpB"}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import path from "node:path";
|
|
2
|
+
import { writeFile } from "node:fs/promises";
|
|
2
3
|
import sharp from "sharp";
|
|
3
4
|
import { imageSize } from "image-size";
|
|
4
|
-
import { config, downloadFile,
|
|
5
|
+
import { config, downloadFile,
|
|
6
|
+
// uploadFile,
|
|
7
|
+
isFileExists, getFolder, } from "../../../../utils.js";
|
|
5
8
|
import grpc from "../../../plugins/grpc/grpc.js";
|
|
6
9
|
import getMimeType from "../../../plugins/file/providers/mime/index.js";
|
|
7
10
|
const defaultWidth = 400;
|
|
8
11
|
const defaultHeight = 240;
|
|
9
12
|
const maxWidth = 2000;
|
|
13
|
+
const rootDir = getFolder(config, "local");
|
|
10
14
|
const getHeight = (width, size, ratio = 1) => {
|
|
11
15
|
if (size && size.toLowerCase().split("x")[1])
|
|
12
16
|
return size.toLowerCase().split("x")[1];
|
|
@@ -102,12 +106,14 @@ export default async function resize({ query, }, reply) {
|
|
|
102
106
|
height: resizeHeight,
|
|
103
107
|
quality: resizeQuality,
|
|
104
108
|
});
|
|
105
|
-
await uploadFile(resizePath, Buffer.from(result, "base64"));
|
|
109
|
+
// await uploadFile(resizePath, Buffer.from(result, "base64"));
|
|
110
|
+
await writeFile(path.join(rootDir, resizePath), Buffer.from(result, "base64"));
|
|
106
111
|
if (format === "webp") {
|
|
107
112
|
const buffer = await sharp(Buffer.from(result, "base64"))
|
|
108
113
|
.webp({ quality: resizeQuality })
|
|
109
114
|
.toBuffer({ resolveWithObject: false });
|
|
110
|
-
await
|
|
115
|
+
await writeFile(path.join(rootDir, resizePath2), buffer);
|
|
116
|
+
// await uploadFile(resizePath2, buffer);
|
|
111
117
|
return reply.headers({ "Content-Type": "image/webp" }).send(buffer);
|
|
112
118
|
}
|
|
113
119
|
return reply
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resizeAll.d.ts","sourceRoot":"","sources":["../../../../../server/routes/file/controllers/resizeAll.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"resizeAll.d.ts","sourceRoot":"","sources":["../../../../../server/routes/file/controllers/resizeAll.ts"],"names":[],"mappings":"AAyHA,wBAA8B,SAAS,CAAC,GAAG,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,gBAsH3D"}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
/* eslint-disable no-console */
|
|
2
|
+
import path from "node:path";
|
|
3
|
+
import { writeFile } from "node:fs/promises";
|
|
2
4
|
import { imageSize } from "image-size";
|
|
3
|
-
import { pgClients, eventStream, logger, isFileExists, downloadFile, uploadFile, } from "../../../../utils.js";
|
|
5
|
+
import { config, pgClients, eventStream, logger, isFileExists, downloadFile, uploadFile, getFolder, } from "../../../../utils.js";
|
|
4
6
|
import grpc from "../../../plugins/grpc/grpc.js";
|
|
5
7
|
import { images } from "../../../plugins/file/utils/allowedExtensions.js";
|
|
6
8
|
const { resizeImage } = grpc();
|
|
9
|
+
const rootDir = getFolder(config, "local");
|
|
7
10
|
async function resizeOne({ relpath: relpath1, resizeQuality = 80, maxWidth = 2048, errors = [], success = [], notfound = [], equalwidth = [], send = () => { }, }) {
|
|
8
11
|
const exists = await isFileExists(relpath1);
|
|
9
12
|
const existsOriginal = await isFileExists(relpath1.replace("files/", "files/original/"));
|
|
@@ -55,7 +58,8 @@ async function resizeOne({ relpath: relpath1, resizeQuality = 80, maxWidth = 204
|
|
|
55
58
|
height: resizeHeight,
|
|
56
59
|
quality: resizeQuality,
|
|
57
60
|
});
|
|
58
|
-
await uploadFile(relpath1, Buffer.from(result, "base64"));
|
|
61
|
+
// await uploadFile(relpath1, Buffer.from(result, "base64"));
|
|
62
|
+
await writeFile(path.join(rootDir, relpath1), Buffer.from(result, "base64"));
|
|
59
63
|
send(`resize ${relpath1} success`);
|
|
60
64
|
success.push(relpath1);
|
|
61
65
|
return null;
|