PHP WebShell

Текущая директория: /var/www/bitcardoApp/node_modules/tronweb/lib/esm/lib/providers

Просмотр файла: HttpProvider.js

import axios from 'axios';
import { hasProperties, isObject, isValidURL } from '../../utils/validations.js';
export default class HttpProvider {
    host;
    timeout;
    user;
    password;
    headers;
    statusPage;
    instance;
    constructor(host, timeout = 30000, user = '', password = '', headers = {}, statusPage = '/') {
        if (!isValidURL(host))
            throw new Error('Invalid URL provided to HttpProvider');
        if (isNaN(timeout) || timeout < 0)
            throw new Error('Invalid timeout duration provided');
        if (!isObject(headers))
            throw new Error('Invalid headers object provided');
        host = host.replace(/\/+$/, '');
        this.host = host;
        this.timeout = timeout;
        this.user = user;
        this.password = password;
        this.headers = headers;
        this.statusPage = statusPage;
        this.instance = axios.create({
            baseURL: host,
            timeout: timeout,
            headers: headers,
            auth: user
                ? {
                    username: user,
                    password,
                }
                : undefined,
        });
    }
    setStatusPage(statusPage = '/') {
        this.statusPage = statusPage;
    }
    async isConnected(statusPage = this.statusPage) {
        return this.request(statusPage)
            .then((data) => {
            return hasProperties(data, 'blockID', 'block_header');
        })
            .catch(() => false);
    }
    request(url, payload = {}, method = 'get') {
        method = method.toLowerCase();
        return this.instance
            .request({
            data: method == 'post' && Object.keys(payload).length ? payload : null,
            params: method == 'get' && payload,
            url,
            method,
        })
            .then(({ data }) => data);
    }
}
//# sourceMappingURL=HttpProvider.js.map

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


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