Compare commits
25 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f4744d10fd | ||
![]() |
1171642992 | ||
![]() |
c9d8e4ad61 | ||
![]() |
674be0f7fc | ||
![]() |
6128e82393 | ||
![]() |
17c53f7e7b | ||
![]() |
9bd1144042 | ||
![]() |
bfdab54f92 | ||
![]() |
a65579ee42 | ||
![]() |
3e8ab8ed1b | ||
![]() |
3c5b7d4bc3 | ||
![]() |
a251147362 | ||
![]() |
398e96c475 | ||
![]() |
98fa8b4c50 | ||
![]() |
d7d25e7a2e | ||
![]() |
2f7b1a7e57 | ||
![]() |
c136026ef8 | ||
![]() |
92e696cbe9 | ||
![]() |
6e34fe92ff | ||
![]() |
392e17d6f9 | ||
![]() |
c6728e4148 | ||
![]() |
203c6b01bb | ||
![]() |
e61399564d | ||
![]() |
687ad9c2e3 | ||
![]() |
e4b45c9365 |
5 changed files with 173 additions and 27 deletions
7
.github/dependabot.yml
vendored
Normal file
7
.github/dependabot.yml
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: composer
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
open-pull-requests-limit: 10
|
14
.github/workflows/automerge.yml
vendored
Normal file
14
.github/workflows/automerge.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
name: Dependabot auto-merge minor/patch
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
repository-projects: write
|
||||
|
||||
jobs:
|
||||
dependabot:
|
||||
uses: ShaneMcC/.github/.github/workflows/automergeMinorOrPatch.yml@master
|
||||
secrets: inherit
|
|
@ -12,7 +12,7 @@
|
|||
],
|
||||
"require": {
|
||||
"php": ">=7.1",
|
||||
"rmccue/requests": "^1.7"
|
||||
"rmccue/requests": "^2.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-0": {
|
||||
|
|
72
composer.lock
generated
72
composer.lock
generated
|
@ -1,37 +1,57 @@
|
|||
{
|
||||
"_readme": [
|
||||
"This file locks the dependencies of your project to a known state",
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"hash": "cb150c262c5789b25121c563653566ff",
|
||||
"content-hash": "0e9868a816da68c50ceb0f080e96fe30",
|
||||
"content-hash": "55d65ecd209ff9bb30f393746ff9b81d",
|
||||
"packages": [
|
||||
{
|
||||
"name": "rmccue/requests",
|
||||
"version": "v1.7.0",
|
||||
"version": "v2.0.14",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/rmccue/Requests.git",
|
||||
"reference": "87932f52ffad70504d93f04f15690cf16a089546"
|
||||
"url": "https://github.com/WordPress/Requests.git",
|
||||
"reference": "9b228eef149e1752b037bf79cef4ca73a7b1fea1"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/rmccue/Requests/zipball/87932f52ffad70504d93f04f15690cf16a089546",
|
||||
"reference": "87932f52ffad70504d93f04f15690cf16a089546",
|
||||
"url": "https://api.github.com/repos/WordPress/Requests/zipball/9b228eef149e1752b037bf79cef4ca73a7b1fea1",
|
||||
"reference": "9b228eef149e1752b037bf79cef4ca73a7b1fea1",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.2"
|
||||
"ext-json": "*",
|
||||
"php": ">=5.6"
|
||||
},
|
||||
"require-dev": {
|
||||
"requests/test-server": "dev-master"
|
||||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
|
||||
"php-parallel-lint/php-console-highlighter": "^0.5.0",
|
||||
"php-parallel-lint/php-parallel-lint": "^1.3.1",
|
||||
"phpcompatibility/php-compatibility": "^9.0",
|
||||
"requests/test-server": "dev-main",
|
||||
"roave/security-advisories": "dev-latest",
|
||||
"squizlabs/php_codesniffer": "^3.6",
|
||||
"wp-coding-standards/wpcs": "^2.0",
|
||||
"yoast/phpunit-polyfills": "^1.0.0"
|
||||
},
|
||||
"suggest": {
|
||||
"art4/requests-psr18-adapter": "For using Requests as a PSR-18 HTTP Client",
|
||||
"ext-curl": "For improved performance",
|
||||
"ext-openssl": "For secure transport support",
|
||||
"ext-zlib": "For improved performance when decompressing encoded streams"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-0": {
|
||||
"Requests": "library/"
|
||||
}
|
||||
"files": [
|
||||
"library/Deprecated.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"WpOrg\\Requests\\": "src/"
|
||||
},
|
||||
"classmap": [
|
||||
"library/Requests.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
|
@ -40,11 +60,23 @@
|
|||
"authors": [
|
||||
{
|
||||
"name": "Ryan McCue",
|
||||
"homepage": "http://ryanmccue.info"
|
||||
"homepage": "https://rmccue.io/"
|
||||
},
|
||||
{
|
||||
"name": "Alain Schlesser",
|
||||
"homepage": "https://github.com/schlessera"
|
||||
},
|
||||
{
|
||||
"name": "Juliette Reinders Folmer",
|
||||
"homepage": "https://github.com/jrfnl"
|
||||
},
|
||||
{
|
||||
"name": "Contributors",
|
||||
"homepage": "https://github.com/WordPress/Requests/graphs/contributors"
|
||||
}
|
||||
],
|
||||
"description": "A HTTP library written in PHP, for human beings.",
|
||||
"homepage": "http://github.com/rmccue/Requests",
|
||||
"homepage": "https://requests.ryanmccue.info/",
|
||||
"keywords": [
|
||||
"curl",
|
||||
"fsockopen",
|
||||
|
@ -54,7 +86,12 @@
|
|||
"iri",
|
||||
"sockets"
|
||||
],
|
||||
"time": "2016-10-13 00:11:37"
|
||||
"support": {
|
||||
"docs": "https://requests.ryanmccue.info/",
|
||||
"issues": "https://github.com/WordPress/Requests/issues",
|
||||
"source": "https://github.com/WordPress/Requests"
|
||||
},
|
||||
"time": "2024-12-11T09:46:32+00:00"
|
||||
}
|
||||
],
|
||||
"packages-dev": [],
|
||||
|
@ -66,5 +103,6 @@
|
|||
"platform": {
|
||||
"php": ">=7.1"
|
||||
},
|
||||
"platform-dev": []
|
||||
"platform-dev": [],
|
||||
"plugin-api-version": "2.6.0"
|
||||
}
|
||||
|
|
|
@ -305,11 +305,17 @@
|
|||
*
|
||||
* @return Result from the API.
|
||||
*/
|
||||
public function getSystemDataValue($key) {
|
||||
public function getSystemDataValue($key, $all = false) {
|
||||
if (empty($key)) { return NULL; }
|
||||
|
||||
$result = $this->api('/system/datavalue/' . $key);
|
||||
return isset($result['response'][$key]) ? $result['response'][$key] : NULL;
|
||||
if ($all && isset($result['response'])) {
|
||||
return $result['response'];
|
||||
} else if (!$all && isset($result['response'][$key])) {
|
||||
return $result['response'][$key];
|
||||
} else {
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -645,7 +651,7 @@
|
|||
* @param $value (Default: true) Set value for domain admin override.
|
||||
*/
|
||||
public function domainAdmin($value = true) {
|
||||
$this->domainAdmin = true;
|
||||
$this->domainAdmin = $value;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
@ -779,8 +785,8 @@
|
|||
/**
|
||||
* Attempt to sync the domain to the backends.
|
||||
*
|
||||
* @param $domain Domain to export.
|
||||
* @return Array of records or an empty array.
|
||||
* @param $domain Domain to sync.
|
||||
* @return API Result
|
||||
*/
|
||||
public function syncDomain($domain) {
|
||||
if ($this->auth === FALSE) { return []; }
|
||||
|
@ -788,16 +794,29 @@
|
|||
return $this->api(($this->domainAdmin ? '/admin' : '') . '/domains/' . $domain . '/sync');
|
||||
}
|
||||
|
||||
/**
|
||||
* Attempt to verify a domain.
|
||||
*
|
||||
* @param $domain Domain to verify
|
||||
* @return API Result
|
||||
*/
|
||||
public function verifyDomain($domain) {
|
||||
if ($this->auth === FALSE) { return []; }
|
||||
|
||||
return $this->api(($this->domainAdmin ? '/admin' : '') . '/domains/' . $domain . '/verify');
|
||||
}
|
||||
|
||||
/**
|
||||
* Export domain as bind zone file.
|
||||
*
|
||||
* @param $domain Domain to export.
|
||||
* @param $type (Optional) Format to export as
|
||||
* @return Array of records or an empty array.
|
||||
*/
|
||||
public function exportZone($domain) {
|
||||
public function exportZone($domain, $type = NULL) {
|
||||
if ($this->auth === FALSE) { return []; }
|
||||
|
||||
$result = $this->api(($this->domainAdmin ? '/admin' : '') . '/domains/' . $domain . '/export');
|
||||
$result = $this->api(($this->domainAdmin ? '/admin' : '') . '/domains/' . $domain . '/export' . ($type !== NULL ? '/' . $type : ''));
|
||||
return isset($result['response']['zone']) ? $result['response']['zone'] : [];
|
||||
}
|
||||
|
||||
|
@ -806,12 +825,13 @@
|
|||
*
|
||||
* @param $domain Domain to import.
|
||||
* @param $zone Zonefile data
|
||||
* @param $type (Optional) Format to import from as
|
||||
* @return Array of records or an empty array.
|
||||
*/
|
||||
public function importZone($domain, $zone) {
|
||||
public function importZone($domain, $zone, $type = NULL) {
|
||||
if ($this->auth === FALSE) { return []; }
|
||||
|
||||
return $this->api(($this->domainAdmin ? '/admin' : '') . '/domains/' . $domain . '/import', 'POST', ['zone' => $zone]);
|
||||
return $this->api(($this->domainAdmin ? '/admin' : '') . '/domains/' . $domain . '/import' . ($type !== NULL ? '/' . $type : ''), 'POST', ['zone' => $zone]);
|
||||
}
|
||||
|
||||
|
||||
|
@ -1104,6 +1124,69 @@
|
|||
return $this->api('/admin/articles/' . $articleid, 'DELETE');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all blockregexes.
|
||||
*
|
||||
* @return Result from the API.
|
||||
*/
|
||||
public function getAllBlockRegexes() {
|
||||
if ($this->auth === FALSE) { return []; }
|
||||
|
||||
$result = $this->api('/admin/blockregexes');
|
||||
return isset($result['response']) ? $result['response'] : [];
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new blockregex.
|
||||
*
|
||||
* @param $data Data for create
|
||||
* @return Result from the API.
|
||||
*/
|
||||
public function createBlockRegex($data) {
|
||||
if ($this->auth === FALSE) { return []; }
|
||||
|
||||
return $this->api('/admin/blockregexes', 'POST', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a specific blockregex.
|
||||
*
|
||||
* @param $blockregexid BlockRegex to get
|
||||
* @return Result from the API.
|
||||
*/
|
||||
public function getBlockRegex($blockregexid) {
|
||||
if ($this->auth === FALSE) { return []; }
|
||||
|
||||
$result = $this->api('/admin/blockregexes/' . $blockregexid);
|
||||
return isset($result['response']) ? $result['response'] : [];
|
||||
}
|
||||
|
||||
/**
|
||||
* Update a specific blockregex.
|
||||
*
|
||||
* @param $blockregexid BlockRegex to update
|
||||
* @param $data Data for update
|
||||
* @return Result from the API.
|
||||
*/
|
||||
public function updateBlockRegex($blockregexid, $data) {
|
||||
if ($this->auth === FALSE) { return []; }
|
||||
|
||||
return $this->api('/admin/blockregexes/' . $blockregexid, 'POST', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete a specific blockregex.
|
||||
*
|
||||
* @param $blockregexid BlockRegex to delete
|
||||
* @return Result from the API.
|
||||
*/
|
||||
public function deleteBlockRegex($blockregexid) {
|
||||
if ($this->auth === FALSE) { return []; }
|
||||
|
||||
return $this->api('/admin/blockregexes/' . $blockregexid, 'DELETE');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the last response from the API
|
||||
*
|
||||
|
@ -1164,6 +1247,10 @@
|
|||
|
||||
try {
|
||||
if ($method == 'GET') {
|
||||
if (!is_array($data)) {
|
||||
$data = empty($data) ? [] : ['data' => $data];
|
||||
}
|
||||
|
||||
if (count($data) > 0) {
|
||||
$url = parse_url($url);
|
||||
if (isset($url['query'])) {
|
||||
|
|
Loading…
Add table
Reference in a new issue