Skip to content

Commit 9e2af33

Browse files
committed
update readme, guzzle 7 support, PMG support
1 parent 661e5b2 commit 9e2af33

File tree

5 files changed

+73
-134
lines changed

5 files changed

+73
-134
lines changed

README.md

+2-130
Original file line numberDiff line numberDiff line change
@@ -1,135 +1,7 @@
1-
ProxmoxVE API Client
1+
Proxmox API Client for Proxmox VE & Proxmox MG
22
====================
33

4-
This **PHP 5.5+** library allows you to interact with your Proxmox server via API.
5-
6-
[![Build Status](https://travis-ci.org/ZzAntares/ProxmoxVE.svg?branch=master)](https://travis-ci.org/ZzAntares/ProxmoxVE)
7-
[![Latest Stable Version](https://poser.pugx.org/zzantares/proxmoxve/v/stable.svg)](https://packagist.org/packages/zzantares/proxmoxve)
8-
[![Total Downloads](https://poser.pugx.org/zzantares/proxmoxve/downloads.svg)](https://packagist.org/packages/zzantares/proxmoxve)
9-
[![Latest Unstable Version](https://poser.pugx.org/zzantares/proxmoxve/v/unstable.svg)](https://packagist.org/packages/zzantares/proxmoxve)
10-
[![License](https://poser.pugx.org/zzantares/proxmoxve/license.svg)](https://packagist.org/packages/zzantares/proxmoxve)
11-
12-
> I'm not actively maintaining this library anymore (I've left PHP behind) but **the API is pretty stable**, if it doesn't suit your needs take a look at the forks or better yet create a PR to add the things you're missing, if you're interested I can transfer the project to you.
13-
14-
**Looking for a PHP 5.3 library version?** Search through the [releases](https://github.com/ZzAntares/ProxmoxVE/releases) one that fits your needs, I recommend using the [2.1.1](https://github.com/ZzAntares/ProxmoxVE/releases/tag/v2.1.1) version.
15-
16-
17-
Installation
18-
------------
19-
20-
Recommended installation is using [Composer], if you do not have [Composer] what are you waiting?
21-
22-
In the root of your project execute the following:
23-
24-
```sh
25-
$ composer require zzantares/proxmoxve ~4.0
26-
```
27-
28-
Or add this to your `composer.json` file:
29-
30-
```json
31-
{
32-
"require": {
33-
"zzantares/proxmoxve": "~4.0"
34-
}
35-
}
36-
```
37-
38-
Then perform the installation:
39-
```sh
40-
$ composer install --no-dev
41-
```
42-
43-
44-
Usage
45-
-----
46-
47-
```php
48-
<?php
49-
50-
// Require the autoloader
51-
require_once 'vendor/autoload.php';
52-
53-
// Use the library namespace
54-
use ProxmoxVE\Proxmox;
55-
56-
// Create your credentials array
57-
$credentials = [
58-
'hostname' => 'proxmox.server.com', // Also can be an IP
59-
'username' => 'root',
60-
'password' => 'secret',
61-
];
62-
63-
// realm and port defaults to 'pam' and '8006' but you can specify them like so
64-
$credentials = [
65-
'hostname' => 'proxmox.server.com',
66-
'username' => 'root',
67-
'password' => 'secret',
68-
'realm' => 'pve',
69-
'port' => '9009',
70-
];
71-
72-
// Then simply pass your credentials when creating the API client object.
73-
$proxmox = new Proxmox($credentials);
74-
75-
$allNodes = $proxmox->get('/nodes');
76-
77-
print_r($allNodes);
78-
```
79-
80-
81-
Sample output:
82-
83-
```php
84-
Array
85-
(
86-
[data] => Array
87-
(
88-
[0] => Array
89-
(
90-
[disk] => 2539465464
91-
[cpu] => 0.031314446882002
92-
[maxdisk] => 30805066770
93-
[maxmem] => 175168446464
94-
[node] => mynode1
95-
[maxcpu] => 24
96-
[level] =>
97-
[uptime] => 139376
98-
[id] => node/mynode1
99-
[type] => node
100-
[mem] => 20601992182
101-
)
102-
103-
)
104-
105-
)
106-
```
107-
108-
109-
Want to know more nifty tricks?
110-
-------------------------------
111-
112-
Checkout our [wiki](https://github.com/ZzAntares/ProxmoxVE/wiki).
113-
114-
115-
Docs
116-
----
117-
118-
On your proxmox client object you can use `get()`, `create()`, `set()` and `delete()` functions for all resources specified at [PVE2 API Documentation], params are passed as the second parameter in an associative array.
119-
120-
**What resources or paths can I interact with and how?**
121-
122-
In your proxmox server you can use the [pvesh CLI Tool](http://pve.proxmox.com/wiki/Proxmox_VE_API#Using_.27pvesh.27_to_access_the_API) to manage all the pve resources, you can use this library in the exact same way you would use the pvesh tool. For instance you could run `pvesh` then, as the screen message should say, you can type `help [path] [--verbose]` to see how you could use a path and what params you should pass to it. Be sure to [read about the pvesh CLI Tool](http://pve.proxmox.com/wiki/Proxmox_VE_API#Using_.27pvesh.27_to_access_the_API) at the [Proxmox wiki].
123-
124-
**How does the Proxmox API works?**
125-
126-
Consult the [ProxmoxVE API] article at the [Proxmox wiki].
127-
128-
**I feel you're hiding some cool tricks! I need more docs!**
129-
130-
See the project's [wiki](https://github.com/ZzAntares/ProxmoxVE/wiki) for a more
131-
detailed documentation, it's all in there I swear it... I think.
132-
4+
Forked from [https://github.com/ZzAntares/ProxmoxVE](ZzAntares)
1335

1346
License
1357
-------

composer.json

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zzantares/proxmoxve",
33
"type": "library",
4-
"description": "A simple PHP 5.5+ Proxmox API client.",
4+
"description": "A simple PHP 7+ Proxmox API client for VE and MG.",
55
"keywords": ["Proxmox", "API", "KVM", "OpenVZ", "Virtualization"],
66
"homepage": "https://github.com/ZzAntares/ProxmoxVE",
77
"license": "MIT",
@@ -11,6 +11,11 @@
1111
"name": "César Muñoz",
1212
"email": "[email protected]",
1313
"role": "Developer"
14+
},
15+
{
16+
"name": "Linus Holtstiege",
17+
"email": "[email protected]",
18+
"role": "Developer"
1419
}
1520
],
1621

@@ -20,9 +25,9 @@
2025
},
2126

2227
"require": {
23-
"php": ">=5.5.0",
28+
"php": ">=7.0.0",
2429
"lib-curl": "*",
25-
"guzzlehttp/guzzle": "~6.0 || ~7.0"
30+
"guzzlehttp/guzzle": "^7.0"
2631
},
2732

2833
"require-dev": {

src/Credentials.php

+30
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ class Credentials
4444
*/
4545
private $port;
4646

47+
/**
48+
* @var string The Proxmox system being used (defaults to "pve" if not provided).
49+
*/
50+
private $system;
51+
4752
/**
4853
* Construct.
4954
*
@@ -65,6 +70,7 @@ public function __construct($credentials)
6570
$this->password = $credentials['password'];
6671
$this->realm = $credentials['realm'];
6772
$this->port = $credentials['port'];
73+
$this->system = $credentials['system'];
6874
}
6975

7076

@@ -150,6 +156,15 @@ public function getPort()
150156
return $this->port;
151157
}
152158

159+
/**
160+
* Gets the system configured in this credentials object.
161+
*
162+
* @return string The port in the credentials.
163+
*/
164+
public function getSystem()
165+
{
166+
return $this->system;
167+
}
153168

154169
/**
155170
* Given the custom credentials object it will try to find the required
@@ -184,6 +199,10 @@ public function parseCustomCredentials($credentials)
184199
$credentials['port'] = '8006';
185200
}
186201

202+
if (!isset($credentials['system'])) {
203+
$credentials['system'] = 'pve';
204+
}
205+
187206
return $credentials;
188207
}
189208

@@ -206,12 +225,17 @@ public function parseCustomCredentials($credentials)
206225
? $credentials->port
207226
: '8006';
208227

228+
$system = in_array('system', $objectProperties)
229+
? $credentials->system
230+
: 'pve';
231+
209232
return [
210233
'hostname' => $credentials->hostname,
211234
'username' => $credentials->username,
212235
'password' => $credentials->password,
213236
'realm' => $realm,
214237
'port' => $port,
238+
'system' => $system,
215239
];
216240
}
217241

@@ -231,12 +255,17 @@ public function parseCustomCredentials($credentials)
231255
? $credentials->getPort()
232256
: '8006';
233257

258+
$system = method_exists($credentials, 'getSystem')
259+
? $credentials->getSystem()
260+
: 'pve';
261+
234262
return [
235263
'hostname' => $credentials->getHostname(),
236264
'username' => $credentials->getUsername(),
237265
'password' => $credentials->getPassword(),
238266
'realm' => $realm,
239267
'port' => $port,
268+
'system' => $system,
240269
];
241270
}
242271

@@ -253,6 +282,7 @@ public function parseCustomCredentials($credentials)
253282
'password' => $credentials->password,
254283
'realm' => $credentials->realm ?: 'pam',
255284
'port' => $credentials->port ?: '8006',
285+
'system' => $credentials->system ?: 'pve',
256286
];
257287
}
258288
}

src/Proxmox.php

+16-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private function requestResource($actionPath, $params = [], $method = 'GET')
109109
$url = $this->getApiUrl() . $actionPath;
110110

111111
$cookies = CookieJar::fromArray([
112-
'PVEAuthCookie' => $this->authToken->getTicket(),
112+
$this->getCookieName() => $this->authToken->getTicket(),
113113
], $this->credentials->getHostname());
114114

115115
switch ($method) {
@@ -166,6 +166,21 @@ private function processHttpResponse($response)
166166
}
167167
}
168168

169+
/**
170+
* Returns the name of the cookie that should be used to authenticate requests.
171+
*
172+
* @return string The required cookie for the system being used
173+
*/
174+
private function getCookieName()
175+
{
176+
switch ($this->credentials->getSystem()) {
177+
default:
178+
case 'pve': $cookiename = 'PVEAuthCookie'; break;
179+
case 'pmg': $cookiename = 'PMGAuthCookie'; break;
180+
}
181+
182+
return $cookiename;
183+
}
169184

170185
/**
171186
* Sets the HTTP client to be used to send requests over the network, for

tests/ProxmoxTest.php

+17
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,23 @@ public function testLoginErrorThrowsException()
138138
new Proxmox($credentials, null, $httpClient);
139139
}
140140

141+
public function testCredentialsWithMailGatewaySystem()
142+
{
143+
$ids = [
144+
'hostname' => 'some.proxmox.tld',
145+
'username' => 'root',
146+
'password' => 'I was here',
147+
'system' => 'pmg',
148+
];
149+
150+
$fakeAuthToken = new AuthToken('csrf', 'ticket', 'username');
151+
$proxmox = $this->getMockProxmox('login', $fakeAuthToken);
152+
$proxmox->setCredentials($ids);
153+
154+
$credentials = $proxmox->getCredentials();
155+
156+
$this->assertEquals($credentials->getSystem(), 'pmg');
157+
}
141158

142159
public function testGetAndSetResponseType()
143160
{

0 commit comments

Comments
 (0)