type Matrix = {
baseUrl: string;
token: string;
};
export async function main(
matrix_res: Matrix,
room_id: string,
type: string,
state_key?: string,
) {
let url = `${matrix_res.baseUrl}/_matrix/client/v3/rooms/${encodeURIComponent(
room_id,
)}/state/${encodeURIComponent(type)}/`;
if (state_key) {
url += encodeURIComponent(state_key);
}
const resp = await fetch(url, {
headers: {
Authorization: `Bearer ${matrix_res.token}`,
},
});
if (!resp.ok) {
throw Error(`Failed to read room state: Error HTTP${resp.status}`);
}
return {
content: await resp.json(),
};
}
Submitted by admin 497 days ago
type Matrix = {
baseUrl: string;
token: string;
};
export async function main(
matrix_res: Matrix,
room_id: string,
type: string,
state_key?: string,
) {
let url = `${matrix_res.baseUrl}/_matrix/client/v3/rooms/${encodeURIComponent(room_id)}/state/${encodeURIComponent(type)}/`;
if (state_key) {
url += encodeURIComponent(state_key);
}
const resp = await fetch(url, {
headers: {
"Authorization": `Bearer ${matrix_res.token}`,
},
});
if (!resp.ok) {
throw Error(`Failed to read room state: Error HTTP${resp.status}`);
}
return {
content: await resp.json(),
};
}
Submitted by admin 500 days ago
import * as wmill from "https://deno.land/x/windmill@v1.85.0/mod.ts";
export async function main(
matrix_res: wmill.Resource<"matrix">,
room_id: string,
type: string,
state_key?: string,
) {
let url = `${matrix_res.baseUrl}/_matrix/client/v3/rooms/${encodeURIComponent(room_id)}/state/${encodeURIComponent(type)}/`;
if (state_key) {
url += encodeURIComponent(state_key);
}
const resp = await fetch(url, {
headers: {
"Authorization": `Bearer ${matrix_res.token}`,
},
});
if (!resp.ok) {
throw Error(`Failed to read room state: Error HTTP${resp.status}`);
}
return {
content: await resp.json(),
};
}
Submitted by adam186 628 days ago
import * as wmill from "https://deno.land/x/windmill@v1.70.1/mod.ts";
export async function main(
matrix_res: wmill.Resource<"matrix">,
room_id: string,
type: string,
state_key?: string,
) {
let url = `${matrix_res.baseUrl}/_matrix/client/v3/rooms/${encodeURIComponent(room_id)}/state/${encodeURIComponent(type)}/`;
if (state_key) {
url += encodeURIComponent(state_key);
}
const resp = await fetch(url, {
headers: {
"Authorization": `Bearer ${matrix_res.token}`,
},
});
if (!resp.ok) {
throw Error(`Failed to read room state: Error HTTP${resp.status}`);
}
return {
content: await resp.json(),
};
}
Submitted by adam186 663 days ago
import * as wmill from "https://deno.land/x/windmill@v1.35.0/mod.ts";
export async function main(
matrix_res: wmill.Resource<"matrix">,
room_id: string,
type: string,
state_key?: string,
) {
let url = `${matrix_res.baseUrl}/_matrix/client/v3/rooms/${encodeURIComponent(room_id)}/state/${encodeURIComponent(type)}/`;
if (state_key) {
url += encodeURIComponent(state_key);
}
const resp = await fetch(url, {
headers: {
"Authorization": `Bearer ${matrix_res.token}`,
},
});
if (!resp.ok) {
throw Error(`Failed to read room state: Error HTTP${resp.status}`);
}
return {
content: await resp.json(),
};
}
Submitted by jaller94 813 days ago
import * as wmill from "https://deno.land/x/windmill@v1.35.0/mod.ts";
export async function main(
matrix_res: wmill.Resource<"matrix">,
room_id: string,
type: string,
state_key?: string,
) {
let url = `${matrix_res.homeserverUrl}/_matrix/client/v3/rooms/${encodeURIComponent(room_id)}/state/${encodeURIComponent(type)}/`;
if (state_key) {
url += encodeURIComponent(state_key);
}
const resp = await fetch(url, {
headers: {
"Authorization": `Bearer ${matrix_res.accessToken}`,
},
});
if (!resp.ok) {
throw Error(`Failed to read room state: Error HTTP${resp.status}`);
}
return {
content: await resp.json(),
};
}
Submitted by jaller94 815 days ago