2022-11-18 13:20:19 +01:00
|
|
|
import { Response } from "../models/response";
|
|
|
|
import { StringResponse } from "../models/response/string.response";
|
2021-12-20 18:04:00 +01:00
|
|
|
import { CliUtils } from "../utils";
|
2018-05-17 04:40:48 +02:00
|
|
|
|
2018-05-14 23:13:57 +02:00
|
|
|
export class EncodeCommand {
|
2021-12-20 18:04:00 +01:00
|
|
|
async run(): Promise<Response> {
|
|
|
|
if (process.stdin.isTTY) {
|
|
|
|
return Response.badRequest("No stdin was piped in.");
|
2018-05-14 23:13:57 +02:00
|
|
|
}
|
2021-12-20 18:04:00 +01:00
|
|
|
const input = await CliUtils.readStdin();
|
|
|
|
const b64 = Buffer.from(input, "utf8").toString("base64");
|
|
|
|
const res = new StringResponse(b64);
|
|
|
|
return Response.success(res);
|
|
|
|
}
|
2018-05-14 23:13:57 +02:00
|
|
|
}
|