mirror of
https://github.com/lune-org/docs.git
synced 2025-04-04 18:40:59 +01:00
Fix Remodel shim uploads
This commit is contained in:
parent
294f2acd9e
commit
c27e339451
2 changed files with 47 additions and 43 deletions
|
@ -125,38 +125,40 @@ local function uploadAssetId(assetId: number, contents: string)
|
||||||
-- 1. Try to find the auth cookie for the current user
|
-- 1. Try to find the auth cookie for the current user
|
||||||
local cookie = getAuthCookieWithFallbacks()
|
local cookie = getAuthCookieWithFallbacks()
|
||||||
|
|
||||||
-- 2. Create request headers in advance, we might re-use them for CSRF challenges
|
-- 2. Use a different endpoint to fetch a valid CSRF token
|
||||||
local headers = {
|
local csrfHeaders = {
|
||||||
["User-Agent"] = "Roblox/WinInet",
|
["User-Agent"] = "Roblox/WinInet",
|
||||||
["Content-Type"] = "application/octet-stream",
|
|
||||||
Accept = "application/json",
|
Accept = "application/json",
|
||||||
Cookie = cookie,
|
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({
|
local uploadResponse = net.request({
|
||||||
url = `https://data.roblox.com/Data/Upload.ashx?assetid={assetId}`,
|
url = `https://data.roblox.com/Data/Upload.ashx?assetid={assetId}`,
|
||||||
body = contents,
|
body = contents,
|
||||||
method = "POST",
|
method = "POST",
|
||||||
headers = headers,
|
headers = uploadHeaders,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- 4. Check if we got a valid response, we might have gotten a CSRF
|
-- 4. Make sure it uploaded properly
|
||||||
-- 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
|
|
||||||
|
|
||||||
if not uploadResponse.ok then
|
if not uploadResponse.ok then
|
||||||
error(
|
error(
|
||||||
string.format(
|
string.format(
|
||||||
|
|
|
@ -26,9 +26,9 @@ Copy the source below and place it in a file named `remodel.luau`:
|
||||||
|
|
||||||
local fs = require("@lune/fs")
|
local fs = require("@lune/fs")
|
||||||
local net = require("@lune/net")
|
local net = require("@lune/net")
|
||||||
|
local serde = require("@lune/serde")
|
||||||
local process = require("@lune/process")
|
local process = require("@lune/process")
|
||||||
local roblox = require("@lune/roblox")
|
local roblox = require("@lune/roblox")
|
||||||
local serde = require("@lune/serde")
|
|
||||||
|
|
||||||
export type LuneDataModel = roblox.DataModel
|
export type LuneDataModel = roblox.DataModel
|
||||||
export type LuneInstance = roblox.Instance
|
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
|
-- 1. Try to find the auth cookie for the current user
|
||||||
local cookie = getAuthCookieWithFallbacks()
|
local cookie = getAuthCookieWithFallbacks()
|
||||||
|
|
||||||
-- 2. Create request headers in advance, we might re-use them for CSRF challenges
|
-- 2. Use a different endpoint to fetch a valid CSRF token
|
||||||
local headers = {
|
local csrfHeaders = {
|
||||||
["User-Agent"] = "Roblox/WinInet",
|
["User-Agent"] = "Roblox/WinInet",
|
||||||
["Content-Type"] = "application/octet-stream",
|
|
||||||
Accept = "application/json",
|
Accept = "application/json",
|
||||||
Cookie = cookie,
|
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({
|
local uploadResponse = net.request({
|
||||||
url = `https://data.roblox.com/Data/Upload.ashx?assetid={assetId}`,
|
url = `https://data.roblox.com/Data/Upload.ashx?assetid={assetId}`,
|
||||||
body = contents,
|
body = contents,
|
||||||
method = "POST",
|
method = "POST",
|
||||||
headers = headers,
|
headers = uploadHeaders,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- 4. Check if we got a valid response, we might have gotten a CSRF
|
-- 4. Make sure it uploaded properly
|
||||||
-- 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
|
|
||||||
|
|
||||||
if not uploadResponse.ok then
|
if not uploadResponse.ok then
|
||||||
error(
|
error(
|
||||||
string.format(
|
string.format(
|
||||||
|
|
Loading…
Add table
Reference in a new issue