Skip to content

dedalus-labs/dedalus-php

Repository files navigation

Dedalus PHP API library

The Dedalus PHP library provides convenient access to the Dedalus REST API from any PHP 8.1.0+ application.

It is generated with Stainless.

Documentation

The REST API documentation can be found on docs.dedaluslabs.ai.

Installation

To use this package, install via Composer by adding the following to your application's composer.json:

{
  "repositories": [
    {
      "type": "vcs",
      "url": "git@github.com:stainless-sdks/dedalus-php.git"
    }
  ],
  "require": {
    "org-placeholder/dedalus": "dev-main"
  }
}

Usage

This library uses named parameters to specify optional arguments. Parameters with a default value must be set by name.

<?php

use Dedalus\Client;

$client = new Client(apiKey: getenv('DEDALUS_API_KEY') ?: 'My API Key');

$machine = $client->machines->create(memoryMiB: 2048, storageGiB: 10, vcpu: 1);

var_dump($machine->machine_id);

Value Objects

It is recommended to use the static with constructor TerminalInputEvent::with(data: 'U3RhaW5sZXNzIHJvY2tz', ...) and named parameters to initialize value objects.

However, builders are also provided (new TerminalInputEvent)->withData('U3RhaW5sZXNzIHJvY2tz').

Streaming

We provide support for streaming responses using Server-Sent Events (SSE).

<?php

use Dedalus\Client;

$client = new Client(apiKey: getenv('DEDALUS_API_KEY') ?: 'My API Key');

$stream = $client->machines->watchStream();

foreach ($stream as $machine) {
  var_dump($machine);
}

Streaming requests are dispatched through a separate streamingTransporter PSR-18 HTTP client. When unset, the SDK uses the configured transporter. Some PSR-18 HTTP clients will by default try to read the entire response, so you may need to specify a streaming capable implementation.

$client = new Dedalus\Client(
    requestOptions: Dedalus\RequestOptions::with(streamingTransporter: $myStreamingClient),
);

Pagination

List methods in the Dedalus API are paginated.

This library provides auto-paginating iterators with each list response, so you do not have to request successive pages manually:

<?php

use Dedalus\Client;

$client = new Client(apiKey: getenv('DEDALUS_API_KEY') ?: 'My API Key');

$page = $client->machines->list();

var_dump($page);

// fetch items from the current page
foreach ($page->getItems() as $item) {
  var_dump($item->machine_id);
}
// make additional network requests to fetch items from all pages, including and after the current page
foreach ($page->pagingEachItem() as $item) {
  var_dump($item->machine_id);
}

Handling errors

When the library is unable to connect to the API, or if the API returns a non-success status code (i.e., 4xx or 5xx response), a subclass of Dedalus\Core\Exceptions\APIException will be thrown:

<?php

use Dedalus\Core\Exceptions\APIConnectionException;
use Dedalus\Core\Exceptions\RateLimitException;
use Dedalus\Core\Exceptions\APIStatusException;

try {
  $machine = $client->machines->create(
    memoryMiB: 2048, storageGiB: 10, vcpu: 1
  );
} catch (APIConnectionException $e) {
  echo "The server could not be reached", PHP_EOL;
  var_dump($e->getPrevious());
} catch (RateLimitException $e) {
  echo "A 429 status code was received; we should back off a bit.", PHP_EOL;
} catch (APIStatusException $e) {
  echo "Another non-200-range status code was received", PHP_EOL;
  echo $e->getMessage();
}

Error codes are as follows:

Cause Error Type
HTTP 400 BadRequestException
HTTP 401 AuthenticationException
HTTP 403 PermissionDeniedException
HTTP 404 NotFoundException
HTTP 409 ConflictException
HTTP 422 UnprocessableEntityException
HTTP 429 RateLimitException
HTTP >= 500 InternalServerException
Other HTTP error APIStatusException
Timeout APITimeoutException
Network error APIConnectionException

Retries

Certain errors will be automatically retried 2 times by default, with a short exponential backoff.

Connection errors (for example, due to a network connectivity problem), 408 Request Timeout, 409 Conflict, 429 Rate Limit, >=500 Internal errors, and timeouts will all be retried by default.

You can use the maxRetries option to configure or disable this:

<?php

use Dedalus\Client;

// Configure the default for all requests:
$client = new Client(requestOptions: ['maxRetries' => 0]);

// Or, configure per-request:
$result = $client->machines->create(
  memoryMiB: 2048, storageGiB: 10, vcpu: 1, requestOptions: ['maxRetries' => 5]
);

Advanced concepts

Making custom or undocumented requests

Undocumented properties

You can send undocumented parameters to any endpoint, and read undocumented response properties, like so:

Note: the extra* parameters of the same name overrides the documented parameters.

<?php

$machine = $client->machines->create(
  memoryMiB: 2048,
  storageGiB: 10,
  vcpu: 1,
  requestOptions: [
    'extraQueryParams' => ['my_query_parameter' => 'value'],
    'extraBodyParams' => ['my_body_parameter' => 'value'],
    'extraHeaders' => ['my-header' => 'value'],
  ],
);

Undocumented request params

If you want to explicitly send an extra param, you can do so with the extra_query, extra_body, and extra_headers under the request_options: parameter when making a request, as seen in the examples above.

Undocumented endpoints

To make requests to undocumented endpoints while retaining the benefit of auth, retries, and so on, you can make requests using client.request, like so:

<?php

$response = $client->request(
  method: "post",
  path: '/undocumented/endpoint',
  query: ['dog' => 'woof'],
  headers: ['useful-header' => 'interesting-value'],
  body: ['hello' => 'world']
);

Versioning

This package follows SemVer conventions. As the library is in initial development and has a major version of 0, APIs may change at any time.

This package considers improvements to the (non-runtime) PHPDoc type definitions to be non-breaking changes.

Requirements

PHP 8.1.0 or higher.

Contributing

See the contributing documentation.

About

Official PHP SDK for the Dedalus platform.

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors