Skip to content

Latest commit

History

13 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Introduction

Library providing basic operations with Fio API.

Installation

$ composer require lightools/fio

Usage

This library doesn't implement all functions of Fio API (e.g. Euro or International payments), it just provides simple interface for the most common use-cases. You can easily work with multiple Fio accounts or you can use FioClient directly.

Initialize

$httpClient = newBitbang\Http\Clients\CurlClient();
$xmlLoader = newLightools\Xml\XmlLoader();
$fio = newLightools\Fio\FioClient($xmlLoader, $httpClient);
$account = newLightools\Fio\FioAccount('12345678', 'token', $fio); // no problem with having more Fio accounts

Retrieving new payments

try {
$transactions = $account->getNewTransactions();
foreach ($transactionsas$transaction) {
echo$transaction->getVariableSymbol();
}
} catch (Lightools\Fio\FioException$e) { // or catch specific exceptions$account->setBreakpointById($lastKnownMoveId);
// further processing
}

Sending transaction orders

try {
$amount = 100;
$currency = 'CZK';
$accountTo = '12345678';
$bankCode = '6100';
$order = newLightools\Fio\TransactionOrder($amount, $currency, $accountTo, $bankCode);
$order->setVariableSymbol('8888');
$account->sendOrders([$order]);
} catch (Lightools\Fio\FioTemporaryUnavailableException$e) {
// Fio is overheated, wait 30 seconds and repeat
} catch (Lightools\Fio\FioWarningException$e) {
// in this case, Fio accepted orders, but detected something suspicious
} catch (Lightools\Fio\FioFailureException$e) {
// e.g. HTTP request failed, Fio is down, ...
}

Logging traffic

It is very useful to store HTTP requests and responses when communicating with Fio API so you can easily determine all possible problems. Library lightools/bitbang-http-logger provides this functionality.

How to run tests

$ vendor/bin/tester -c tests/php.ini -d extension_dir=ext tests

About

Basic operations over Fio API.

Topics

Resources

Stars

3 stars

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages