forked from PipedreamHQ/pipedream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdateMarketplaceReadme.mts
117 lines (100 loc) · 2.82 KB
/
updateMarketplaceReadme.mts
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
import * as path from "node:path";
import * as fs from "node:fs";
import { GraphQLClient, gql } from "graphql-request";
import * as Sentry from "@sentry/node";
Sentry.init({
dsn: process.env.SENTRY_DSN,
tracesSampleRate: 1.0,
environment: process.env.CI ? "production" : "development",
});
const pdClient = new GraphQLClient(
"https://api.pipedream.com/graphql",
{
headers: {
Authorization: `Bearer ${process.env.PD_API_KEY}`,
},
}
);
// This script expects the first argument to be a comma separated list of file paths.
// Example: `ts-node scripts/updateMarketplaceReadme.mts components/slack/README.md,components/slack/actions/add-star/README.md`
const run = async () => {
const fileCsv = process.argv[2] || "";
const filePaths = fileCsv.split(",").filter(Boolean);
const readmePaths = filePaths.filter(
(p) => p.startsWith("components/") && p.endsWith("/README.md")
);
for (const readmePath of readmePaths) {
const fullReadmePath = path.join(process.cwd(), readmePath);
console.log("processing file", fullReadmePath);
const b64 = fs.readFileSync(fullReadmePath).toString("base64");
const pathSegments = readmePath.split("/");
let key: string;
if (pathSegments.length === 3) {
key = pathSegments[1];
} else if (pathSegments.length === 5) {
key = pathSegments[1] + "-" + pathSegments[3];
} else {
Sentry.captureMessage(
"Unable to determine app/component key from file path.",
{
level: "error",
extra: {
readmePath,
fullReadmePath,
},
}
);
console.warn(
`"${readmePath}" is an invalid path. Cannot determine if this is an app or a component. Skipping...`
);
continue;
}
const query = gql`
mutation addNewMarketplaceEntry(
$markdownB64: String!
$path: String!
$key: String!
) {
marketplaceContentSet(
key: $key
markdownB64: $markdownB64
path: $path
) {
marketplaceContent {
id
}
errors
}
}
`;
const variables = {
key,
markdownB64: b64,
path: readmePath,
};
try {
const response = await pdClient.request(query, variables);
if (response?.marketplaceContentSet?.errors?.length > 0) {
Sentry.captureMessage("Set marketplace content error", {
level: "error",
extra: {
errors: response.marketplaceContentSet.errors,
key,
fullReadmePath,
readmePath,
},
});
}
console.log(JSON.stringify(response, null, 2));
} catch (e) {
Sentry.captureException(e, {
extra: {
key,
fullReadmePath,
readmePath,
},
});
}
}
};
run();