This repository has been archived by the owner on Sep 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcacheGraphCmsAsset.ts
134 lines (123 loc) · 3.43 KB
/
cacheGraphCmsAsset.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import { IGraphCmsAsset, PluginOptions } from "./types";
import { ensureDir, readFile } from "fs-extra";
import { join, extname, basename, dirname } from "path";
import { ISourcingContext } from "gatsby-graphql-source-toolkit/dist/types";
import {
createFileNodeFromBuffer,
createRemoteFileNode,
} from "gatsby-source-filesystem";
import { atomicCopyFile, retry } from "./utils";
import { Reporter } from "gatsby";
export function getLocalFileName(
remoteAsset: IGraphCmsAsset,
reporter: Reporter
): string {
const fileName = remoteAsset.fileName.replace(/[/\s\\?%*:|"<>]/g, "-");
if (fileName !== remoteAsset.fileName) {
reporter.warn(
`Renaming remote filename "${remoteAsset.fileName}" to "${fileName}"`
);
}
return fileName;
}
async function internalCreateLocalFileNode(
context: ISourcingContext,
remoteAsset: IGraphCmsAsset,
reason: string,
pluginOptions: PluginOptions
): Promise<string> {
const { gatsbyApi } = context;
const { actions, reporter, createNodeId, getCache, store, cache } = gatsbyApi;
const { createNode } = actions;
const { localCacheDir } = pluginOptions;
const url = remoteAsset.url;
const fileName = getLocalFileName(remoteAsset, reporter);
const ext = fileName && extname(fileName);
const name = fileName && basename(fileName, ext);
const relativePath = new URL(url).pathname;
const fullPath = join(process.cwd(), localCacheDir, relativePath);
const createFileNodeRequirements = {
createNode,
createNodeId,
getCache,
cache,
store,
reporter,
name,
ext,
};
try {
const buffer = await readFile(fullPath);
const fileNode = await createFileNodeFromBuffer({
buffer,
...createFileNodeRequirements,
});
reporter.verbose(`Using cached asset ${fileName} from ${url} (${reason})`);
return fileNode.id;
} catch {
// ignore this - just download!
}
reporter.verbose(`Downloading asset ${fileName} from ${url} (${reason})`);
const remoteFileNode = await retry(
async () => {
const node = await createRemoteFileNode({
url,
...createFileNodeRequirements,
});
return node;
},
{
retries: 3,
factor: 1.1,
minTimeout: 5000,
onRetry: (error) => {
reporter.warn(
`Error downloading url ${url}: ${
typeof error === "string" ? error : error.message
}`
);
},
}
);
if (!remoteFileNode) {
reporter.panic(`Failed to download url: ${url}`);
throw new Error(`Failed to download`);
}
try {
await ensureDir(dirname(fullPath));
await atomicCopyFile(remoteFileNode.absolutePath, fullPath);
} catch (e) {
reporter.panic(e as any);
}
reporter.verbose(`Downloaded asset ${fileName} from ${url}`);
return remoteFileNode.id;
}
const promiseCache = new Map<string, Promise<string>>();
export async function createLocalFileNode(
context: ISourcingContext,
remoteAsset: IGraphCmsAsset,
reason: string,
pluginOptions: PluginOptions
): Promise<string> {
const {
gatsbyApi: { reporter },
} = context;
const url = remoteAsset.url;
const current = promiseCache.get(url);
if (current) {
reporter.verbose(`Using cached request for ${url}`);
return current;
}
const request = internalCreateLocalFileNode(
context,
remoteAsset,
reason,
pluginOptions
);
promiseCache.set(url, request);
try {
return await request;
} finally {
promiseCache.delete(url);
}
}