Fix Remodel shim uploads (#5)

This commit is contained in:
Wingy 2023-08-07 16:33:57 -04:00 committed by GitHub
parent 294f2acd9e
commit e756c89041
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 47 additions and 43 deletions

View file

@ -125,38 +125,40 @@ local function uploadAssetId(assetId: number, contents: string)
-- 1. Try to find the auth cookie for the current user
local cookie = getAuthCookieWithFallbacks()
-- 2. Create request headers in advance, we might re-use them for CSRF challenges
local headers = {
-- 2. Use a different endpoint to fetch a valid CSRF token
local csrfHeaders = {
["User-Agent"] = "Roblox/WinInet",
["Content-Type"] = "application/octet-stream",
Accept = "application/json",
Cookie = cookie,
}
-- 3. Create and send a request to the upload url
local csrfResponse = net.request({
url = `https://auth.roblox.com/`,
body = contents,
method = "POST",
headers = csrfHeaders,
})
local csrfToken = csrfResponse.headers["x-csrf-token"]
if csrfToken == nil then error('Failed to fetch CSRF token.') end
-- 3. Upload the asset to Roblox
local uploadHeaders = {
["User-Agent"] = "Roblox/WinInet",
["Content-Type"] = "application/octet-stream",
['X-CSRF-Token'] = csrfToken,
Accept = "application/json",
Cookie = cookie,
}
local uploadResponse = net.request({
url = `https://data.roblox.com/Data/Upload.ashx?assetid={assetId}`,
body = contents,
method = "POST",
headers = headers,
headers = uploadHeaders,
})
-- 4. Check if we got a valid response, we might have gotten a CSRF
-- challenge and need to send the request with a token included
if
not uploadResponse.ok
and uploadResponse.statusCode == 403
and uploadResponse.headers["x-csrf-token"] ~= nil
then
headers["X-CSRF-Token"] = uploadResponse.headers["x-csrf-token"]
uploadResponse = net.request({
url = `https://data.roblox.com/Data/Upload.ashx?assetid={assetId}`,
body = contents,
method = "POST",
headers = headers,
})
end
-- 4. Make sure it uploaded properly
if not uploadResponse.ok then
error(
string.format(

View file

@ -26,9 +26,9 @@ Copy the source below and place it in a file named `remodel.luau`:
local fs = require("@lune/fs")
local net = require("@lune/net")
local serde = require("@lune/serde")
local process = require("@lune/process")
local roblox = require("@lune/roblox")
local serde = require("@lune/serde")
export type LuneDataModel = roblox.DataModel
export type LuneInstance = roblox.Instance
@ -149,38 +149,40 @@ local function uploadAssetId(assetId: number, contents: string)
-- 1. Try to find the auth cookie for the current user
local cookie = getAuthCookieWithFallbacks()
-- 2. Create request headers in advance, we might re-use them for CSRF challenges
local headers = {
-- 2. Use a different endpoint to fetch a valid CSRF token
local csrfHeaders = {
["User-Agent"] = "Roblox/WinInet",
["Content-Type"] = "application/octet-stream",
Accept = "application/json",
Cookie = cookie,
}
-- 3. Create and send a request to the upload url
local csrfResponse = net.request({
url = `https://auth.roblox.com/`,
body = contents,
method = "POST",
headers = csrfHeaders,
})
local csrfToken = csrfResponse.headers["x-csrf-token"]
if csrfToken == nil then error('Failed to fetch CSRF token.') end
-- 3. Upload the asset to Roblox
local uploadHeaders = {
["User-Agent"] = "Roblox/WinInet",
["Content-Type"] = "application/octet-stream",
['X-CSRF-Token'] = csrfToken,
Accept = "application/json",
Cookie = cookie,
}
local uploadResponse = net.request({
url = `https://data.roblox.com/Data/Upload.ashx?assetid={assetId}`,
body = contents,
method = "POST",
headers = headers,
headers = uploadHeaders,
})
-- 4. Check if we got a valid response, we might have gotten a CSRF
-- challenge and need to send the request with a token included
if
not uploadResponse.ok
and uploadResponse.statusCode == 403
and uploadResponse.headers["x-csrf-token"] ~= nil
then
headers["X-CSRF-Token"] = uploadResponse.headers["x-csrf-token"]
uploadResponse = net.request({
url = `https://data.roblox.com/Data/Upload.ashx?assetid={assetId}`,
body = contents,
method = "POST",
headers = headers,
})
end
-- 4. Make sure it uploaded properly
if not uploadResponse.ok then
error(
string.format(