mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Finish axios migration via shared native HTTP helper
Replace all in-scope axios callsites with a new helpers/http.js wrapper over native fetch, including JSON/text GET, JSON POST, HEAD checks, and transient 5xx retry behavior; update all browser, build, script, and proxy API clients to use it; add focused unit tests; and remove axios from package dependencies. Constraint: Preserve API/build and deployment behavior while lowering transport surface area. Rejected: inline fetch replacements at each callsite | rejected to avoid inconsistent error/retry semantics. Confidence: high Scope-risk: moderate Directive: Keep helper in place as the transport boundary and update tests when changing request semantics. Tested: pnpm run -s typecheck, pnpm -s run test-prebuild, pnpm -s run test, pnpm -s run test:browser, pnpm -s run netlify-build, smoke GETs on /apple-silicon-app-test and /apple-silicon-app-test/?version=2 Not-tested: branch/netlify deployment health in CI pipeline after merge
This commit is contained in:
parent
d39a2a1d6c
commit
d45b587434
25 changed files with 824 additions and 267 deletions
|
|
@ -1,6 +1,5 @@
|
|||
import fs from 'fs-extra'
|
||||
import 'dotenv/config.js'
|
||||
import axios from 'axios'
|
||||
|
||||
import {
|
||||
sitemapLocation,
|
||||
|
|
@ -8,6 +7,7 @@ import {
|
|||
} from '~/helpers/constants.js'
|
||||
|
||||
import { parseSitemapXml } from '~/helpers/api/sitemap/parse.js'
|
||||
import { getText } from '~/helpers/http.js'
|
||||
|
||||
|
||||
;(async () => {
|
||||
|
|
@ -16,7 +16,7 @@ import { parseSitemapXml } from '~/helpers/api/sitemap/parse.js'
|
|||
const sitemapIndexUrl = new URL( `${ sitemapLocation.split('static')[1] }${ sitemapIndexFileName }`, process.env.PUBLIC_API_DOMAIN )
|
||||
|
||||
// Fetch Sitemap Index
|
||||
const sitemapIndexXML = await axios.get( sitemapIndexUrl.href ).then( response => response.data )
|
||||
const sitemapIndexXML = await getText( sitemapIndexUrl.href )
|
||||
|
||||
// Save Sitemap Index
|
||||
const sitemapIndexFilePath = `${ sitemapLocation }${ sitemapIndexFileName }`
|
||||
|
|
@ -35,7 +35,7 @@ import { parseSitemapXml } from '~/helpers/api/sitemap/parse.js'
|
|||
// sitemapUrl.origin = process.env.PUBLIC_API_DOMAIN
|
||||
|
||||
// Fetch Sitemap Index
|
||||
const sitemapXML = await axios.get( apiSitemapUrl.href ).then( response => response.data )
|
||||
const sitemapXML = await getText( apiSitemapUrl.href )
|
||||
|
||||
// const sitemap = parse( sitemapXML )
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue