PHP 8.2.31
Preview: wp_api.php Size: 1.04 KB
//proc/self/root/home/nshryvcy/blissfulnepal.com/wp-content/plugins/airlift/wp_api.php

<?php

if (!defined('ABSPATH')) exit;
if (!class_exists('ALWPAPI')) :
	class ALWPAPI {
		public $settings;

		public function __construct($settings) {
			$this->settings = $settings;
		}

		public function pingbv($method, $body, $public = false) {
			if ($public) {
				return $this->do_request($method, $body, $public);
			} else {
				$api_public_key = $this->settings->getOption('bvApiPublic');
				if (!empty($api_public_key) && (strlen($api_public_key) >= 32)) {
					return $this->do_request($method, $body, $api_public_key);
				}
			}
		}

		public function do_request($method, $body, $pubkey) {
			$account = ALAccount::find($this->settings, $pubkey);
			if (isset($account)) {
				$url = $account->authenticatedUrl($method);
				return $this->http_request($url, $body);
			}
		}

		public function http_request($url, $body, $headers = array()) {
			$_body = array(
				'method' => 'POST',
				'timeout' => 15,
				'body' => $body
			);
			if (!empty($headers)) {
				$_body['headers'] = $headers;
			}
			return wp_remote_post($url, $_body);
		}
	}
endif;

Directory Contents

Dirs: 7 × Files: 17

Name Size Perms Modified Actions
admin DIR
- drwxr-xr-x 2026-04-02 01:31:44
Edit Download
buffer DIR
- drwxr-xr-x 2026-04-02 01:31:44
Edit Download
callback DIR
- drwxr-xr-x 2026-04-02 01:31:45
Edit Download
css DIR
- drwxr-xr-x 2026-04-02 01:31:45
Edit Download
img DIR
- drwxr-xr-x 2026-04-02 01:31:44
Edit Download
js DIR
- drwxr-xr-x 2026-04-02 01:31:45
Edit Download
- drwxr-xr-x 2026-04-02 01:31:44
Edit Download
7.14 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
8.93 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
10.68 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
7.07 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
19.46 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
5.19 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
1.71 KB lrw-r--r-- 2026-04-02 01:31:45
Edit Download
2.56 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
16.15 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
1.04 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
2.91 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
6.10 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
34.64 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
2.29 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
1.57 KB lrw-r--r-- 2026-04-02 01:31:44
Edit Download
2.06 KB lrw-r--r-- 2026-04-02 01:31:45
Edit Download
2.32 KB lrw-r--r-- 2026-04-02 01:31:45
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).