Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace App\Traits; use Akaunting\Version\Version; use App\Utilities\Info; use E..
Decoded Output download
<?php
namespace App\Traits;
use Akaunting\Version\Version;
use App\Utilities\Info;
use Exception;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Exception\RequestException;
trait SiteApi
{
public static $base_uri = 'https://api.akaunting.com/';
protected static function siteApiRequest($method, $path, $extra_data = [])
{
$client = new Client(['verify' => false, 'base_uri' => static::$base_uri]);
$headers['headers'] = [
'Authorization' => 'Bearer ' . Info::getApiKey(),
'Accept' => 'application/json',
'Referer' => app()->runningInConsole() ? config('app.url') : url('/'),
'Akaunting' => Version::short(),
'Language' => language()->getShortCode(),
'Information' => json_encode(Info::all()),
];
$data = array_merge([
'timeout' => 30,
'referer' => true,
'http_errors' => false,
], $extra_data);
$options = array_merge_recursive($data, $headers);
try {
$response = $client->request($method, $path, $options);
} catch (ConnectException | Exception | RequestException $e) {
$response = $e;
}
return $response;
}
public static function getResponse($method, $path, $data = [], $status_code = 200)
{
$response = static::siteApiRequest($method, $path, $data);
$is_exception = (($response instanceof ConnectException) || ($response instanceof Exception) || ($response instanceof RequestException));
if (!$response || $is_exception || ($response->getStatusCode() != $status_code)) {
return false;
}
return $response;
}
public static function getResponseBody($method, $path, $data = [], $status_code = 200)
{
if (! $response = static::getResponse($method, $path, $data, $status_code)) {
return [];
}
$body = json_decode($response->getBody());
return $body;
}
public static function getResponseData($method, $path, $data = [], $status_code = 200)
{
if (! $body = static::getResponseBody($method, $path, $data, $status_code)) {
return [];
}
if (! is_object($body)) {
return [];
}
return $body->data;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Traits;
use Akaunting\Version\Version;
use App\Utilities\Info;
use Exception;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Exception\RequestException;
trait SiteApi
{
public static $base_uri = 'https://api.akaunting.com/';
protected static function siteApiRequest($method, $path, $extra_data = [])
{
$client = new Client(['verify' => false, 'base_uri' => static::$base_uri]);
$headers['headers'] = [
'Authorization' => 'Bearer ' . Info::getApiKey(),
'Accept' => 'application/json',
'Referer' => app()->runningInConsole() ? config('app.url') : url('/'),
'Akaunting' => Version::short(),
'Language' => language()->getShortCode(),
'Information' => json_encode(Info::all()),
];
$data = array_merge([
'timeout' => 30,
'referer' => true,
'http_errors' => false,
], $extra_data);
$options = array_merge_recursive($data, $headers);
try {
$response = $client->request($method, $path, $options);
} catch (ConnectException | Exception | RequestException $e) {
$response = $e;
}
return $response;
}
public static function getResponse($method, $path, $data = [], $status_code = 200)
{
$response = static::siteApiRequest($method, $path, $data);
$is_exception = (($response instanceof ConnectException) || ($response instanceof Exception) || ($response instanceof RequestException));
if (!$response || $is_exception || ($response->getStatusCode() != $status_code)) {
return false;
}
return $response;
}
public static function getResponseBody($method, $path, $data = [], $status_code = 200)
{
if (! $response = static::getResponse($method, $path, $data, $status_code)) {
return [];
}
$body = json_decode($response->getBody());
return $body;
}
public static function getResponseData($method, $path, $data = [], $status_code = 200)
{
if (! $body = static::getResponseBody($method, $path, $data, $status_code)) {
return [];
}
if (! is_object($body)) {
return [];
}
return $body->data;
}
}
Function Calls
None |
Stats
MD5 | 08e41a0523a47e92fdd6f1c86eb24dec |
Eval Count | 0 |
Decode Time | 127 ms |