Coder Social home page Coder Social logo

php-ostkit's Introduction

PHPOSTKit (v1.1)

Still a rather uninteresting PHP implementation of OST Kit Alpha. This time updated for API v1.1. API v1.0 will work with this but the ledger & balance calls will not work. The OST_BASE_URL call will have to be updated to reflect the new API version. API v0 info is at the bottom of the page.

Currently supports the full OSTKit v1.1 API.

Again, the usage is fairly straight forward:

require "path/to/config.php"; // this is where I keep my OST_API_KEY, OST_API_SECRET, OST_BASE_URL, and other stuff.
require "path/to/Curl.php"; // uses https://github.com/php-mod/curl/blob/master/src/Curl/Curl.php for curl requests! get it!
require "path/to/OST.class.php"; // or autoload it. whatever. i'm not your mum.

//create a user
$name = 'This was easy';
$create_user = OST::create_user($name);

//list some transactions
$transactions = 'transactionID1,transactionID2,transactionID3';
$list_options = ['id' => $transactions]; //see below for more about list options
$list_transactions = OST::list_transactions($list_options);

When calling the list methods, each one has its own set of options. You can view these options in the comments above the methods themselves. It is important to know you only need to provide the arguments you need. For example you want to list the first 50 actions that are user_to_user:

$list_options = ['limit' => 50, 'kind' => 'user_to_user'];
$list_actions = OST::list_actions($list_options);

If you provide no $list_options then it will return the default list (10 entries, sorted by creation date in descending order).

All calls return an associative array, like so:

/*
Array
(
    [success] => 1
    [data] => Array
        (
            [result_type] => user
            [user] => Array
                (
                    [id] => 56be7062-93a6-40b7-b97c-2802f96a10ed
                    [addresses] => Array
                        (
                            [0] => Array
                                (
                                    [0] => 1337
                                    [1] => 0xc4eD67D4Eb02190ff4dbC32985D14c4Ff4CAe41D
                                )

                        )

                    [name] => This was easy
                    [airdropped_tokens] => 0
                    [token_balance] => 0
                )

        )

)
*/

KNOWN ISSUES

UPDATE 23 MAY 2018: Devs have apparently addressed the latency/timeout issues described below.

There are a few issues I have come across:

  • list_users when you provide the optional filter name it is apparently ignored and returns the list as if the filter was not passed. "Fixed" 27 May 2018 (removed the name filter from docs)
  • list_users v1.1 - probably unintentional, but the documentation for the list users endpoint now includes a name optional filter (which still doesn't work).
  • list_actions has some unexpected (read: not intuitive to me) behaviour when requesting a list that passes the optional filter of arbitrary_commission=true - this will also return user to company, and company to user actions. I'd say this is unexpected because U2C or C2U actions do not have a commission attribute - and even if they do but are simply not visible to us, they should most definitely be set to false. Furthermore, the API description states in the description user_to_user actions where the commission is set during creation or provided at execution.
  • list_transactions seems to stop returning transactions after you set limit to roughly 80 or above. For example, setting the limit to 80 works fine. Setting it to 81 and it fails without error (returns null). I don't know if this is an issue with my server or the API. Fixed 23 May 2018
  • list_transfers when called with no options, doesn't return anything. Not even an error. Again I am unsure if this is an issue with my server or the API. I mean... in fairness, it's probably the API. Fixed 23 May 2018

PHPOSTKit (v0)

A rather uninteresting PHP implementation of OST Kit Alpha.

Currently supports the full OSTKit v0 API:

  • Create user
  • Edit user
  • List users
  • Airdrop users
  • Airdrop status
  • Create transaction type
  • Edit a transaction type
  • List transaction types
  • Execute a transaction type
  • Get status of an executed transaction (or multiple transactions at once)

UPDATE 19 May 2018: Validation may have changed for various endpoints.

Pretty straightforward usage:

require_once "path/to/OSTv0.class.php"; // or autoload it. whatever. i'm not your mum.
$name = 'Foo Bar';
$user_uuid = \OST\OSTv0::create_user($name);


// to check a single tx status, ensure you pass the single uuid as a single element array like:
// $txs = ['a62fb7fe-ded8-4ecb-8489-4cb4c7d981ac'];
$txs = ['a62fb7fe-ded8-4ecb-8489-4cb4c7d981ac','1131d672-8859-42c6-99f0-2002dcaa2f6b'];
$tx_status = OST::tx_status($txs);

Don't forget to add in your API key, API secret, and base URL into your project. I defined them as a constant in a config file in my project.

php-ostkit's People

Contributors

danieldeloretta avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

branislavbaron

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.