forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrailway-graphql.ts
More file actions
51 lines (48 loc) · 2.21 KB
/
Copy pathrailway-graphql.ts
File metadata and controls
51 lines (48 loc) · 2.21 KB
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
/**
* railway-graphql.ts — Single source of truth for the Railway GraphQL
* endpoint host for TypeScript importers in this repo. The historic
* `.com` host (`backboard.railway.com`) is unauthenticated for the
* public GraphQL API and silently returns 401/403; the canonical host
* is `backboard.railway.app`.
*
* Note: the Ruby `bin/railway` script and the inline `curl` commands
* embedded in `.github/workflows/*.yml` hold their OWN copies of this
* URL because they cannot import a TypeScript module. Those copies are
* kept in sync by hand and enforced by the regression guard in
* `./__tests__/railway-graphql.scan.test.ts`, which fails the build if
* any source file under `showcase/` or `.github/workflows/` reintroduces
* the `.com` host.
*/
export const RAILWAY_GRAPHQL_ENDPOINT =
"https://backboard.railway.app/graphql/v2" as const;
// Fail-fast at module load if a hand-edit ever breaks the URL literal.
new URL(RAILWAY_GRAPHQL_ENDPOINT);
/** Default cap for sanitizeErrorBody. Multi-KB Cloudflare WAF HTML
* pages would otherwise spam stderr / $GITHUB_STEP_SUMMARY. */
export const RAILWAY_ERROR_BODY_MAX_DEFAULT = 200;
/**
* Sanitize a Railway API error body for inclusion in logs / the
* markdown summary. Railway/Cloudflare error responses can be
* multi-KB HTML pages:
*
* - strip `<` and `>` (would break markdown tables)
* - strip control chars `\n`, `\r`, `\t` (would break single-line
* log records AND newline-bearing markdown rows in redeploy-env)
* - cap at `max` chars (default 200) with an ellipsis on overflow
*
* Shared between redeploy-env.ts and verify-railway-image-refs.ts so
* both consumers strip control chars at the source.
*/
export function sanitizeErrorBody(
body: string,
max: number = RAILWAY_ERROR_BODY_MAX_DEFAULT,
): string {
// Strip angle brackets (markdown-breaking) and control chars
// (newline/carriage-return/tab — break single-line log records
// and the markdown row redeploy-env produces). Original behavior
// removed `<>` without substitution; preserve that for `<>` and
// additionally remove `\n\r\t`.
const stripped = body.replace(/[<>\n\r\t]/g, "");
if (stripped.length <= max) return stripped;
return stripped.slice(0, max) + "…";
}