|
|
|
|
@ -41,14 +41,16 @@ const resourceMap = { |
|
|
|
|
data: "users", |
|
|
|
|
total: json => json.total, |
|
|
|
|
create: data => ({ |
|
|
|
|
endpoint: `/_synapse/admin/v2/users/@${data.id}:${localStorage.getItem( |
|
|
|
|
"home_server" |
|
|
|
|
)}`,
|
|
|
|
|
endpoint: `/_synapse/admin/v2/users/@${encodeURIComponent( |
|
|
|
|
data.id |
|
|
|
|
)}:${localStorage.getItem("home_server")}`,
|
|
|
|
|
body: data, |
|
|
|
|
method: "PUT", |
|
|
|
|
}), |
|
|
|
|
delete: params => ({ |
|
|
|
|
endpoint: `/_synapse/admin/v1/deactivate/${params.id}`, |
|
|
|
|
endpoint: `/_synapse/admin/v1/deactivate/${encodeURIComponent( |
|
|
|
|
params.id |
|
|
|
|
)}`,
|
|
|
|
|
body: { erase: true }, |
|
|
|
|
method: "POST", |
|
|
|
|
}), |
|
|
|
|
@ -92,10 +94,12 @@ const resourceMap = { |
|
|
|
|
return json.total; |
|
|
|
|
}, |
|
|
|
|
reference: id => ({ |
|
|
|
|
endpoint: `/_synapse/admin/v2/users/${id}/devices`, |
|
|
|
|
endpoint: `/_synapse/admin/v2/users/${encodeURIComponent(id)}/devices`, |
|
|
|
|
}), |
|
|
|
|
delete: params => ({ |
|
|
|
|
endpoint: `/_synapse/admin/v2/users/${params.user_id}/devices/${params.id}`, |
|
|
|
|
endpoint: `/_synapse/admin/v2/users/${encodeURIComponent( |
|
|
|
|
params.user_id |
|
|
|
|
)}/devices/${params.id}`,
|
|
|
|
|
}), |
|
|
|
|
}, |
|
|
|
|
connections: { |
|
|
|
|
@ -137,7 +141,7 @@ const resourceMap = { |
|
|
|
|
id: p.pushkey, |
|
|
|
|
}), |
|
|
|
|
reference: id => ({ |
|
|
|
|
endpoint: `/_synapse/admin/v1/users/${id}/pushers`, |
|
|
|
|
endpoint: `/_synapse/admin/v1/users/${encodeURIComponent(id)}/pushers`, |
|
|
|
|
}), |
|
|
|
|
data: "pushers", |
|
|
|
|
total: json => { |
|
|
|
|
@ -149,7 +153,9 @@ const resourceMap = { |
|
|
|
|
id: jr, |
|
|
|
|
}), |
|
|
|
|
reference: id => ({ |
|
|
|
|
endpoint: `/_synapse/admin/v1/users/${id}/joined_rooms`, |
|
|
|
|
endpoint: `/_synapse/admin/v1/users/${encodeURIComponent( |
|
|
|
|
id |
|
|
|
|
)}/joined_rooms`,
|
|
|
|
|
}), |
|
|
|
|
data: "joined_rooms", |
|
|
|
|
total: json => { |
|
|
|
|
@ -162,7 +168,7 @@ const resourceMap = { |
|
|
|
|
id: um.media_id, |
|
|
|
|
}), |
|
|
|
|
reference: id => ({ |
|
|
|
|
endpoint: `/_synapse/admin/v1/users/${id}/media`, |
|
|
|
|
endpoint: `/_synapse/admin/v1/users/${encodeURIComponent(id)}/media`, |
|
|
|
|
}), |
|
|
|
|
data: "media", |
|
|
|
|
total: json => { |
|
|
|
|
@ -354,9 +360,11 @@ const dataProvider = { |
|
|
|
|
const res = resourceMap[resource]; |
|
|
|
|
|
|
|
|
|
const endpoint_url = homeserver + res.path; |
|
|
|
|
return jsonClient(`${endpoint_url}/${params.id}`).then(({ json }) => ({ |
|
|
|
|
data: res.map(json), |
|
|
|
|
})); |
|
|
|
|
return jsonClient(`${endpoint_url}/${encodeURIComponent(params.id)}`).then( |
|
|
|
|
({ json }) => ({ |
|
|
|
|
data: res.map(json), |
|
|
|
|
}) |
|
|
|
|
); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getMany: (resource, params) => { |
|
|
|
|
@ -368,7 +376,9 @@ const dataProvider = { |
|
|
|
|
|
|
|
|
|
const endpoint_url = homeserver + res.path; |
|
|
|
|
return Promise.all( |
|
|
|
|
params.ids.map(id => jsonClient(`${endpoint_url}/${id}`)) |
|
|
|
|
params.ids.map(id => |
|
|
|
|
jsonClient(`${endpoint_url}/${encodeURIComponent(id)}`) |
|
|
|
|
) |
|
|
|
|
).then(responses => ({ |
|
|
|
|
data: responses.map(({ json }) => res.map(json)), |
|
|
|
|
total: responses.length, |
|
|
|
|
@ -409,7 +419,7 @@ const dataProvider = { |
|
|
|
|
const res = resourceMap[resource]; |
|
|
|
|
|
|
|
|
|
const endpoint_url = homeserver + res.path; |
|
|
|
|
return jsonClient(`${endpoint_url}/${params.data.id}`, { |
|
|
|
|
return jsonClient(`${endpoint_url}/${encodeURIComponent(params.data.id)}`, { |
|
|
|
|
method: "PUT", |
|
|
|
|
body: JSON.stringify(params.data, filterNullValues), |
|
|
|
|
}).then(({ json }) => ({ |
|
|
|
|
@ -426,10 +436,13 @@ const dataProvider = { |
|
|
|
|
|
|
|
|
|
const endpoint_url = homeserver + res.path; |
|
|
|
|
return Promise.all( |
|
|
|
|
params.ids.map(id => jsonClient(`${endpoint_url}/${id}`), { |
|
|
|
|
method: "PUT", |
|
|
|
|
body: JSON.stringify(params.data, filterNullValues), |
|
|
|
|
}) |
|
|
|
|
params.ids.map( |
|
|
|
|
id => jsonClient(`${endpoint_url}/${encodeURIComponent(id)}`), |
|
|
|
|
{ |
|
|
|
|
method: "PUT", |
|
|
|
|
body: JSON.stringify(params.data, filterNullValues), |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
).then(responses => ({ |
|
|
|
|
data: responses.map(({ json }) => json), |
|
|
|
|
})); |
|
|
|
|
|