//native
type Box = {
token: string;
};
/**
* Update file
* Updates a file. This can be used to rename or move a file,
create a shared link, or lock a file.
*/
export async function main(
auth: Box,
file_id: string,
fields: string | undefined,
if_match: string,
body: {
name?: string;
description?: string;
parent?: { id?: string; user_id?: string } & {};
shared_link?: {
access?: "open" | "company" | "collaborators";
password?: string;
vanity_name?: string;
unshared_at?: string;
permissions?: { can_download?: false | true };
} & {};
lock?: {
access?: "lock";
expires_at?: string;
is_download_prevented?: false | true;
};
disposition_at?: string;
permissions?: { can_download?: "open" | "company" };
collections?: { id?: string; type?: string }[];
tags?: string[];
},
) {
const url = new URL(`https://api.box.com/2.0/files/${file_id}`);
for (const [k, v] of [["fields", fields]]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "PUT",
headers: {
"if-match": if_match,
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago