mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-24 12:04:57 +01:00
70 lines
2.7 KiB
TypeScript
70 lines
2.7 KiB
TypeScript
|
/*
|
||
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
import {encodeBody} from "../matrix/net/common";
|
||
|
|
||
|
import type {BlobHandle} from "../platform/web/dom/BlobHandle";
|
||
|
import type {RequestFunction} from "../platform/types/types";
|
||
|
|
||
|
// see https://github.com/matrix-org/rageshake#readme
|
||
|
type RageshakeData = {
|
||
|
// A textual description of the problem. Included in the details.log.gz file.
|
||
|
text: string | undefined;
|
||
|
// Application user-agent. Included in the details.log.gz file.
|
||
|
userAgent: string;
|
||
|
// Identifier for the application (eg 'riot-web'). Should correspond to a mapping configured in the configuration file for github issue reporting to work.
|
||
|
app: string;
|
||
|
// Application version. Included in the details.log.gz file.
|
||
|
version: string;
|
||
|
// Label to attach to the github issue, and include in the details file.
|
||
|
label: string | undefined;
|
||
|
};
|
||
|
|
||
|
export async function submitLogsToRageshakeServer(data: RageshakeData, logsBlob: BlobHandle, submitUrl: string, request: RequestFunction): Promise<string> {
|
||
|
const formData = new Map<string, string | {name: string, blob: BlobHandle}>();
|
||
|
if (data.text) {
|
||
|
formData.set("text", data.text);
|
||
|
}
|
||
|
formData.set("user_agent", data.userAgent);
|
||
|
formData.set("app", data.app);
|
||
|
formData.set("version", data.version);
|
||
|
if (data.label) {
|
||
|
formData.set("label", data.label);
|
||
|
}
|
||
|
formData.set("file", {name: "logs.json", blob: logsBlob});
|
||
|
const encoded = encodeBody(formData);
|
||
|
const headers: Map<string, string> = new Map();
|
||
|
headers.set("Accept", "application/json");
|
||
|
//headers.set("Content-Type", encoded.mimeType);
|
||
|
const result = request(submitUrl, {
|
||
|
method: "POST",
|
||
|
body: encoded.body,
|
||
|
headers
|
||
|
});
|
||
|
let response;
|
||
|
try {
|
||
|
response = await result.response();
|
||
|
} catch (err) {
|
||
|
throw new Error(`Could not submit logs to ${submitUrl}, got error ${err.message}`);
|
||
|
}
|
||
|
const {status, body} = response;
|
||
|
if (status >= 200 && status < 300) {
|
||
|
return body.report_url;
|
||
|
} else {
|
||
|
throw new Error(`Could not submit logs to ${submitUrl}, got status code ${status} with body ${body}`);
|
||
|
}
|
||
|
}
|