Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Partners Resource to PHP-SDK #58

Merged
merged 3 commits into from
Nov 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Changelog

## [1.1.5](https://github.com/Open-Pix/php-sdk/compare/v1.1.4...v1.1.5) (2024-11-25)
## [1.1.5](https://github.com/Open-Pix/php-sdk/compare/v1.1.4...v1.1.5) (2024-11-26)

### Partners Resource

* Partners Resource has been added...
* Partners Resource has been added.


## [1.1.4](https://github.com/Open-Pix/php-sdk/compare/v1.1.3...v1.1.4) (2024-11-19)

9 changes: 9 additions & 0 deletions src/Client.php
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@
use OpenPix\PhpSdk\RequestTransport;
use OpenPix\PhpSdk\Resources\Charges;
use OpenPix\PhpSdk\Resources\Customers;
use OpenPix\PhpSdk\Resources\Partners;
use OpenPix\PhpSdk\Resources\Transactions;
use OpenPix\PhpSdk\Resources\Subscriptions;
use OpenPix\PhpSdk\Resources\Webhooks;
@@ -113,4 +114,12 @@ public function webhooks(): Webhooks
{
return new Webhooks($this->requestTransport);
}

/**
* Returns operations for the `Partners` resource.
*/
public function partners(): Partners
{
return new Partners($this->requestTransport);
}
}
183 changes: 183 additions & 0 deletions src/Resources/Partners.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
<?php

namespace OpenPix\PhpSdk\Resources;

use OpenPix\PhpSdk\Paginator;
use OpenPix\PhpSdk\Request;
use OpenPix\PhpSdk\RequestTransport;

/**
* Operations on partners. To use this section of the SDK you need to request access to OpenPix.
*
* @link https://developers.openpix.com.br/api#tag/partner-(request-access)
*/
class Partners
{
/**
* Used to send HTTP requests to partners API.
*
* @var RequestTransport
*/
private $requestTransport;

/**
* Create a new Partners instance.
*
* @param RequestTransport $requestTransport Used to send HTTP requests to partners API.
*/
public function __construct(RequestTransport $requestTransport)
{
$this->requestTransport = $requestTransport;
}

/**
* Get every preregistration that is managed by you. {@see Paginator}.
*
* ## Usage
* ```php
* $paginator = $client->partners()->list();
*
* foreach ($paginator as $result) {
* foreach ($result["preRegistrations"] as $partner) {
* $partner["preRegistration"]; // array
* $partner["preRegistration"]["name"]; // string
* $partner["user"]; // array
* $partner["user"]["firstName"]; // string
* $partner["user"]["email"]; // string
* $partner["company"]["name"]; // string
* // and more fields...
* }
* }
* ```
*
* @link https://developers.openpix.com.br/api#tag/partner-(request-access)/paths/~1api~1v1~1partner~1company/get
*
* @return Paginator with results from API.
*/
public function list(): Paginator
{
$request = (new Request())
->method("GET")
->path("/api/v1/partner/company");

return new Paginator($this->requestTransport, $request);
}

/**
* Get a specific preregistration via taxID param.
*
* ```php
* $result = $client->partners()->getOne("taxID");
*
* $result["preRegistration"]["preRegistration"]["name"]; // string
* $result["preRegistration"]["user"]["firstName"]; // string
* $result["preRegistration"]["company"]["name"]; // string
* $result["preRegistration"]["account"]["clientId"]; // string
* // and more fields...
* ```
*
* @link https://developers.openpix.com.br/api#tag/partner-(request-access)/paths/~1api~1v1~1partner~1company~1%7BtaxID%7D/get
*
* @param string $taxID Tax ID.
*
* @return array<string, mixed> Result from API.
*/
public function getOne(string $taxID): array
{
$request = (new Request())
->method("GET")
->path("/api/v1/partner/company/" . $taxID);

return $this->requestTransport->transport($request);
}

/**
* Create a preregistration with a partner reference (your company)
*
* ```php
* $result = $client->partners()->create([
* "preRegistration" => [
* "name" => "Example LLC", // Name of partner company. Required. (string).
* "website" => "", // Website of the partner company. (string).
* "taxID" => [
* "taxID" => "11111111111111" // Tax ID of the partner company. Required. (string).
* "type" => "BR:CNPJ" // Type of the Tax ID of the partner company. Required. (string).
* ],
* ],
* "user" => [
* "firstName" => "John", // First Name of the partner. Required. (string).
* "lastName" => "Doe", // Last Name of the partner. Required. (string).
* "email" => "johndoe@examplellc.com", // E-mail of the partner. Required. (string).
* "phone" => "+5511912345678", // Phone number of the partner. Required. (string).
* ],
* // and more fields...
* ]);
*
* $result["preRegistration"]["name"]; // string
* $result["preRegistration"]["website"]; // string
* $result["preRegistration"]["taxID"]["taxID"]; // string
* $result["preRegistration"]["taxID"]["type"]; // string
*
* $result["user"]["firstName"]; // string
* $result["user"]["lastName"]; // string
* $result["user"]["email"]; // string
* $result["user"]["phone"]; // string
* ```
*
* @link https://developers.openpix.com.br/api#tag/partner-(request-access)/paths/~1api~1v1~1partner~1company/post
*
* @param array<string, mixed> $data Partner data.
*
* @return array<string, mixed> Result from API.
*/
public function create(array $data): array
{
$request = (new Request())
->method("POST")
->path("/api/v1/partner/company")
->body($data);

return $this->requestTransport->transport($request);
}

/**
* Create a new application to some of your preregistration's company.
*
* ```php
* $result = $client->partners()->createApp([
* "application" => [
* "name" => "MyAPIAccess", // Name of app. Required. (string).
* "type" => "API", // Type of app. Enum: "API", "PLUGIN", "ORACLE". Required. (string).
* ],
* "taxID" => [
* "taxID" => "65914571000187", // Tax ID of the partner company. (string).
* "type" => "BR:CNPJ",
* ],
* // and more fields...
* ]);
*
* $app = $result["application"];
*
* $app["name"]; // string
* $app["isActive"]; // boolean
* $app["type"]; // string
* $app["clientId"]; // string
* $app["clientSecret"]; // string
* ```
*
* @link https://developers.openpix.com.br/api#tag/partner-(request-access)/paths/~1api~1v1~1partner~1application/post
*
* @param array<string, mixed> $data Partner data.
*
* @return array<string, mixed> Result from API.
*/
public function createApp(array $data): array
{
$request = (new Request())
->method("POST")
->path("/api/v1/partner/application")
->body($data);

return $this->requestTransport->transport($request);
}
}
119 changes: 119 additions & 0 deletions tests/Resources/PartnersTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
<?php

namespace Tests\Resources;

use OpenPix\PhpSdk\Request;
use OpenPix\PhpSdk\RequestTransport;
use OpenPix\PhpSdk\Resources\Partners;
use PHPUnit\Framework\TestCase;

final class PartnersTest extends TestCase
{
public function testList(): void
{
$requestTransportMock = $this->createMock(RequestTransport::class);

$partners = new Partners($requestTransportMock);

$pagedRequest = $partners->list()->getPagedRequest();

$this->assertSame($pagedRequest->getPath(), "/api/v1/partner/company");
$this->assertSame($pagedRequest->getMethod(), "GET");
$this->assertSame($pagedRequest->getBody(), null);
}

public function testGetOne(): void
{
$taxID = "11111111111111";
$partner = [
"preRegistration" => [
"preRegistration" => [
"name" => "string",
],
"user" => [
"firstName" => "string",
],
],
];

$requestTransportMock = $this->createMock(RequestTransport::class);
$requestTransportMock->expects($this->once())
->method("transport")
->willReturnCallback(function (Request $request) use ($taxID, $partner) {
$this->assertSame("GET", $request->getMethod());
$this->assertSame("/api/v1/partner/company/" . $taxID, $request->getPath());
$this->assertSame($request->getBody(), null);
$this->assertSame($request->getQueryParams(), []);

return $partner;
});

$partners = new Partners($requestTransportMock);

$result = $partners->getOne($taxID);

$this->assertSame($result, $partner);
}

public function testCreate(): void
{
$partner = [
"preRegistration" => [
"name" => "Example LLC",
],
"user" => [
"firstName" => "John",
],
];

$requestTransportMock = $this->createMock(RequestTransport::class);
$requestTransportMock->expects($this->once())
->method("transport")
->willReturnCallback(function (Request $request) use ($partner) {
$this->assertSame("POST", $request->getMethod());
$this->assertSame("/api/v1/partner/company", $request->getPath());
$this->assertSame($request->getBody(), $partner);
$this->assertSame($request->getQueryParams(), []);

return $partner;
});

$partners = new Partners($requestTransportMock);

$result = $partners->create($partner);

$this->assertSame($result, $partner);
}

public function testCreateApp(): void
{
$partner = [
"application" => [
"name" => "Example LLC",
"type" => "API",
],
"taxID" => [
"taxID" => "65914571000187",
"type" => "BR:CNPJ",
],
];

$requestTransportMock = $this->createMock(RequestTransport::class);
$requestTransportMock->expects($this->once())
->method("transport")
->willReturnCallback(function (Request $request) use ($partner) {
$this->assertSame("POST", $request->getMethod());
$this->assertSame("/api/v1/partner/application", $request->getPath());
$this->assertSame($request->getBody(), $partner);
$this->assertSame($request->getQueryParams(), []);

return $partner;
});

$partners = new Partners($requestTransportMock);

$result = $partners->createApp($partner);

$this->assertSame($result, $partner);
}
}