Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Latest commit

 

History

History
144 lines (99 loc) · 4.97 KB

httpscripting.rst

File metadata and controls

144 lines (99 loc) · 4.97 KB

Scripting with the Phantom HTTP API

Phantom uses a RESTish HTTP protocol, and we recommend requests for scripting Phantom. On this page we will describe some simple applications that use Python, Requests, and the Phantom HTTP API for interacting with Phantom.

Phantom HTTP API

The first thing you will need in order to use the Phantom HTTP API is your Phantom username and password. You should have these from signing up for Phantom.

You will also need to know the URL of the Phantom API. It is:

https://phantom.nimbusproject.org/api/dev

Installing Requests

We recommend using Requests to interact with the Phantom API.

To get started, create a new virtual environment and install requests into it. The following commands should do this for you:

$ virtualenv phantom
New python executable in phantom/bin/python
Installing distribute...............done.
Installing pip...............done.

$ source phantom/bin/activate

$ pip install requests
Downloading/unpacking requests
  Downloading requests-1.2.3.tar.gz (348kB): 348kB downloaded
  Running setup.py egg_info for package requests

Installing collected packages: requests
  Running setup.py install for requests

Successfully installed requests
Cleaning up...

You now have requests installed and ready to use. Please note the command:

$ source phantom/bin/activate

You will need to run this command in every session where you wish to use your Python requests environment.

Getting a Token

The Phantom API uses tokens and Basic Authentication for authentication. Users must request a token to access most endpoints in the API. All other requests must be authenticated using this token. To use this token with curl, for example:

$ curl -d "username=alice&password=restaurant" http://phantom.nimbusproject.org/api/dev/token
{"token": "xgy-4h324h2i4h32oi4h23", "user": 1, "success": true}

For convenience store those values in the following environment variables:

$ export USER_ID=<user id>
$ export TOKEN=<token>

Then, to use other endpoints, use this user id and token when querying. You can either include the user and token as request parameters in any call to phantom, or you can use the basic access authentication scheme:

  1. Combine user id and token into string "user:token"
  2. Encode resulting string using Base64
  3. Prepend "Basic " (including the trailing space) to the resulting Base64 encoded string

Curl (and most http libraries) do this automatically for you:

none

$ curl -u 1:xgy-4h324h2i4h32oi4h23 http://phantom.nimbusproject.org/api/dev/sites []

The Phantom HTTP API Reference

The Phantom HTTP API Reference </api> is the best resource to learn about using the Phantom API. It describes each method and endpoint of the API. As a learning aid, we have also supplied some sample scripts which show how to use the API.

Sample scripts

The following sample programs can be used to aid in understanding. All of these values can be found in your FutureGrid cloud-client cloud.properties file.

Here is a sample session of using the above scripts. In it we will create a launch configuration. We will then launch a domain that uses that launch configuration. First we create the launch configuration:

$ python lc_create.py testlc1 hello-phantom.gz hotel
$ python lc_list.py
testlc1

The next thing we do is create a domain using that launch configuration:

$ python domain_create.py testDomain1 testlc1 1
using LaunchConfiguration:testlc1
$ python asg_list.py
testDomain1
    testlc1 : 1
    Instances:
    ---------
        hotel : Healthy

The arguments to that program are as follows in order:

  • the new domain name
  • the launch configuration name
  • the size of the domain

Now we clean everything up:

$ python domain_delete.py testDomain1
deleting testDomain1
$ python lc_delete.py testlc1