Set origin based on browser origin header

This commit is contained in:
2023-10-19 16:50:17 -04:00
parent 45e05d78c7
commit e0f2a79d70
2 changed files with 6 additions and 4 deletions

View File

@ -17,6 +17,7 @@ export async function GenerateUploadURL(
path: string,
size: number,
fileExt: string,
origin: string,
): Promise<string> {
const accessToken = await GetAccessToken(env);
const contentTypes: { [k: string]: string } = {
@ -43,10 +44,7 @@ export async function GenerateUploadURL(
{
headers: {
authorization: `Bearer ${accessToken}`,
origin:
typeof env.LOCAL === "undefined"
? "https://carcrushers.cc"
: "http://localhost:8788",
origin,
"x-upload-content-type": contentTypes[fileExt],
"x-upload-content-length": size.toString(),
},