pad.libre-service.eu-etherpad/bin/createUserSession.ts

59 lines
2.2 KiB
TypeScript
Raw Permalink Normal View History

'use strict';
/*
* A tool for generating a test user session which can be used for debugging configs
* that require sessions.
*/
// As of v14, Node.js does not exit when there is an unhandled Promise rejection. Convert an
// unhandled rejection into an uncaught exception, which does cause Node.js to exit.
2024-03-15 20:59:28 +01:00
import fs from "node:fs";
2024-03-13 20:31:29 +01:00
2024-03-15 20:59:28 +01:00
import path from "node:path";
2024-03-13 20:31:29 +01:00
2024-03-15 20:59:28 +01:00
import querystring from "node:querystring";
2024-03-13 20:31:29 +01:00
import axios from 'axios'
2024-08-08 21:23:10 +02:00
import process from "node:process";
2024-03-13 20:31:29 +01:00
process.on('unhandledRejection', (err) => { throw err; });
const settings = require('ep_etherpad-lite/node/utils/Settings');
(async () => {
2024-03-13 20:31:29 +01:00
axios.defaults.baseURL = `http://${settings.ip}:${settings.port}`;
const api = axios;
const filePath = path.join(__dirname, '../APIKEY.txt');
const apikey = fs.readFileSync(filePath, {encoding: 'utf-8'});
let res;
res = await api.get('/api/');
2024-03-13 20:31:29 +01:00
const apiVersion = res.data.currentVersion;
if (!apiVersion) throw new Error('No version set in API');
2024-03-13 20:31:29 +01:00
console.log('apiVersion', apiVersion);
const uri = (cmd: string, args: querystring.ParsedUrlQueryInput ) => `/api/${apiVersion}/${cmd}?${querystring.stringify(args)}`;
res = await api.post(uri('createGroup', {apikey}));
2024-03-13 20:31:29 +01:00
if (res.data.code === 1) throw new Error(`Error creating group: ${res.data}`);
const groupID = res.data.data.groupID;
console.log('groupID', groupID);
res = await api.post(uri('createGroupPad', {apikey, groupID}));
2024-03-13 20:31:29 +01:00
if (res.data.code === 1) throw new Error(`Error creating group pad: ${res.data}`);
console.log('Test Pad ID ====> ', res.data.data.padID);
res = await api.post(uri('createAuthor', {apikey}));
2024-03-13 20:31:29 +01:00
if (res.data.code === 1) throw new Error(`Error creating author: ${res.data}`);
const authorID = res.data.data.authorID;
console.log('authorID', authorID);
2024-03-13 20:31:29 +01:00
const validUntil = Math.floor(new Date().getTime() / 1000) + 60000;
console.log('validUntil', validUntil);
res = await api.post(uri('createSession', {apikey, groupID, authorID, validUntil}));
2024-03-13 20:31:29 +01:00
if (res.data.code === 1) throw new Error(`Error creating session: ${JSON.stringify(res.data)}`);
console.log('Session made: ====> create a cookie named sessionID and set the value to',
2024-03-13 20:31:29 +01:00
res.data.data.sessionID);
2024-08-08 21:23:10 +02:00
process.exit(0)
})();