1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Helpers/Bank/Yodlee/Yodlee.php

148 lines
3.6 KiB
PHP
Raw Normal View History

2022-07-28 06:09:13 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
2022-07-28 07:07:35 +02:00
namespace App\Helpers\Bank\Yodlee;
2022-07-28 06:09:13 +02:00
2022-07-28 07:07:35 +02:00
use Illuminate\Support\Facades\Http;
2022-07-28 06:09:13 +02:00
class Yodlee
{
2022-07-28 07:07:35 +02:00
public bool $test_mode;
private string $api_endpoint = '';
private string $test_api_endpoint = 'https://sandbox.api.yodlee.com/ysl';
2022-07-28 08:29:42 +02:00
public string $fast_track_url = 'https://fl4.sandbox.yodlee.com/authenticate/restserver/fastlink';
2022-07-28 07:07:35 +02:00
protected string $client_id;
protected string $client_secret;
protected string $admin_name;
public function __construct(bool $test_mode = false)
{
$this->test_mode = $test_mode;
if($this->test_mode)
$this->api_endpoint = $this->test_api_endpoint;
$this->client_id = config('ninja.yodlee.client_id');
$this->client_secret = config('ninja.yodlee.client_secret');
$this->admin_name = config('ninja.yodlee.admin_name');
}
2022-07-28 06:09:13 +02:00
public function getAccessToken()
{
2022-07-28 08:29:42 +02:00
$response = $this->bankFormRequest('/auth/token', 'post');
return $response->token->accessToken;
}
public function createUser()
{
// {
// "user": {
// "preferences": {
// "dateFormat": "string",
// "timeZone": "string",
// "currency": "USD",
// "locale": "en_US"
// },
// "address": {
// "zip": "string",
// "country": "string",
// "address3": "string",
// "address2": "string",
// "city": "string",
// "address1": "string",
// "state": "string"
// },
// "loginName": "string",
// "name": {
// "middle": "string",
// "last": "string",
// "fullName": "string",
// "first": "string"
// },
// "email": "string",
// "segmentName": "string"
// }
// }
$user['user'] = [
'loginName' => 'test123',
];
return $this->bankRequest('/user/register', 'post', $user);
2022-07-28 07:07:35 +02:00
}
private function bankRequest(string $uri, string $verb, array $data = [])
{
2022-07-28 08:29:42 +02:00
$response = Http::withHeaders($this->getHeaders(['loginName' => $this->admin_name]))->{$verb}($this->api_endpoint . $uri, $this->buildBody());
if($response->successful())
return $response->object();
if($response->failed())
return $response->body();
}
private function bankFormRequest(string $uri, string $verb, array $data = [])
{
$response = Http::withHeaders($this->getFormHeaders(['loginName' => $this->admin_name]))->asForm()->{$verb}($this->api_endpoint . $uri, $this->buildBody());
2022-07-28 07:07:35 +02:00
if($response->successful())
return $response->object();
if($response->failed())
return $response->body();
}
private function getHeaders($data = [])
{
return array_merge($data, [
'Api-Version' => '1.1',
2022-07-28 08:29:42 +02:00
'ContentType' => 'application/json'
]);
}
private function getFormHeaders($data = [])
{
return array_merge($data, [
'Api-Version' => '1.1',
2022-07-28 07:07:35 +02:00
]);
}
private function buildBody()
{
return [
'clientId' => $this->client_id,
'secret' => $this->client_secret,
];
2022-07-28 06:09:13 +02:00
}
}