PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/@open-rpc/client-js/src/transports

Просмотр файла: PostMessageWindowTransport.ts

import { Transport } from "./Transport";
import { JSONRPCRequestData, IJSONRPCData, getNotifications } from "../Request";

const openPopup = (url: string) => {
  const width = 400;
  const height = window.screen.height;
  const left = 0;
  const top = 0;

  return window.open(
    url,
    "inspector:popup",
    `left=${left},top=${top},width=${width},height=${height},resizable,scrollbars=yes,status=1`,
  );
};

class PostMessageTransport extends Transport {
  public uri: string;
  public frame: undefined | null | Window;
  public postMessageID: string;

  constructor(uri: string) {
    super();
    this.uri = uri;
    this.postMessageID = `post-message-transport-${Math.random()}`;
  }

  public createWindow(uri: string): Promise<Window | null> {
    return new Promise((resolve, reject) => {
      let frame: Window | null;
      frame = openPopup(uri);
      setTimeout(() => {
        resolve(frame);
      }, 3000);
    });
  }

  private messageHandler = (ev: MessageEvent) => {
    this.transportRequestManager.resolveResponse(JSON.stringify(ev.data));
  }

  public connect(): Promise<any> {
    const urlRegex = /^(http|https):\/\/.*$/;
    return new Promise(async (resolve, reject) => {
      if (!urlRegex.test(this.uri)) {
        reject(new Error("Bad URI"));
      }
      this.frame = await this.createWindow(this.uri);
      window.addEventListener("message", this.messageHandler);
      resolve();
    });
  }

  public async sendData(data: JSONRPCRequestData, timeout: number | undefined = 5000): Promise<any> {
    const prom = this.transportRequestManager.addRequest(data, null);
    const notifications = getNotifications(data);
    if (this.frame) {
      this.frame.postMessage((data as IJSONRPCData).request, this.uri);
      this.transportRequestManager.settlePendingRequest(notifications);
    }
    return prom;
  }

  public close(): void {
    if (this.frame) {
      window.removeEventListener("message", this.messageHandler);
      (this.frame as Window).close();
    }
  }

}

export default PostMessageTransport;

Выполнить команду


Для локальной разработки. Не используйте в интернете!