2022-08-30 16:13:11 +05:00
|
|
|
/* This file is part of the Notesnook project (https://notesnook.com/)
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2022 Streetwriters (Private) Limited
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2022-07-20 09:20:05 +05:00
|
|
|
import {
|
|
|
|
|
initalize,
|
|
|
|
|
logger as _logger,
|
2022-08-26 16:19:39 +05:00
|
|
|
logManager
|
2022-08-29 23:30:48 +05:00
|
|
|
} from "@notesnook/core/logger";
|
2022-08-30 16:13:11 +05:00
|
|
|
import { LogMessage } from "@notesnook/logger";
|
2022-07-20 09:20:05 +05:00
|
|
|
import FileSaver from "file-saver";
|
|
|
|
|
import { DatabasePersistence, NNStorage } from "../interfaces/storage";
|
|
|
|
|
import { zip } from "./zip";
|
|
|
|
|
|
2022-08-30 16:13:11 +05:00
|
|
|
let logger: typeof _logger;
|
2022-07-20 09:20:05 +05:00
|
|
|
function initalizeLogger(persistence: DatabasePersistence = "db") {
|
2022-08-30 16:13:11 +05:00
|
|
|
initalize(new NNStorage("Logs", persistence));
|
2022-07-20 09:20:05 +05:00
|
|
|
logger = _logger.scope("notesnook-web");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function downloadLogs() {
|
|
|
|
|
if (!logManager) return;
|
|
|
|
|
const allLogs = await logManager.get();
|
|
|
|
|
const files = allLogs.map((log) => ({
|
|
|
|
|
filename: log.key,
|
2022-08-30 16:13:11 +05:00
|
|
|
content: (log.logs as LogMessage[])
|
|
|
|
|
.map((line) => JSON.stringify(line))
|
|
|
|
|
.join("\n")
|
2022-07-20 09:20:05 +05:00
|
|
|
}));
|
|
|
|
|
const archive = await zip(files, "log");
|
|
|
|
|
FileSaver.saveAs(new Blob([archive.buffer]), "notesnook-logs.zip");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function clearLogs() {
|
|
|
|
|
if (!logManager) return;
|
|
|
|
|
|
|
|
|
|
await logManager.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export { initalizeLogger, logger, downloadLogs, clearLogs };
|