hirokx / bc-sdk
PHP SDK for Microsoft Business Central
Requires
- php: ^7.3 || ^8.0
- ext-json: *
- guzzlehttp/guzzle: ^6.5 || ^7.0
- illuminate/support: ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0
- rakit/validation: ^1.2
Requires (Dev)
- filp/whoops: 2.7.1
- symfony/var-dumper: ^4.4
This package is auto-updated.
Last update: 2024-11-19 11:43:46 UTC
README
License: MIT
This software is provided as is and without any warrenties of any kind.
If you find a bug or have a feature request, please create an issue
Install using Composer
composer require hirokx/business-central-sdk
Getting Started
- Register for a set of Business Central credentials
- The SDK uses Basic Authentication
- Install the library into your application
- Load the SDK
Building Models
As Business Central's web services are dynamically created all entities could be pre generated.
BusinessCentral\Constructor::buildModels( 'my-tenant-id.onmicrosoft.com', 'Application (client) ID', 'CLIENT_SECRET' );
This can be generated using a post-autoload-dump
composer script using your credentials to get the entities exposed through your web services.
Connecting to Business Central
Business Central for PHP uses a singleton pattern for SDK instances.
Once an instance has been initialized it will fetch the schema from your Business Central. (Standard entities are included).
$sdk = \BusinessCentral\SDK::instance('my-tenant-id.onmicrosoft.com', [ // OAuth2 [Required] 'client_id' => 'Application (client) ID', // Basic auth token [Required] 'client_secret' => '***', // Default collection size [Optional] // Amount of entities to load initially and per page per collection // Can be changed on the fly on any collection instance 'default_collection_size' => 20, // Default environment [Optional - 'production' by default] 'environment' => 'dev' ]);
Fetching Entities Manually
Business Central for PHP uses an internal query builder to navigate and fetch entities.
Accessing the query
$query = $sdk->query();
Navigating using the query
$query = $sdk->query(); // Navigate using ->navigateTo(...) (or shorthand ->to(...)) $query->to('Company','CompanyName')->to('invoicingCustomers'); // Equivalent of fetching from 'Company(CompanyName)/invoicingCustomers'
Fetching results
$collection = $query->fetch(); // Fetches the results of the query as a collection // Fetches the first result of the query $entity = $query->first(); // equivalent of $query->fetch()->first() // Fetches all the results of the query $entity = $query->all(); // Fetches all matching entities
Fetching Entities
// Fetch a single company $company = $sdk->company('CompanyName'); // Fetch all companies available to the authorized user $companies = $sdk->companies();
Class Reference
Entity
Class for Entity fetched from Business Central
Entity Properties / Relations
Due to the dynamics of Business Central, the Entities from Business Central doesn't necessary have standardized properties across all implementations. Please refer to your specific implementation.
Alternatively check the entities.md generated when building models.
Fetch Relation
You can fetch relations from a given entity by calling the name of the relation as a property or method:
// Returns a collection of entities if the relation is a collection, // else returns the single instance of the related entity or if none is found $customers = $entity->relation; // Returns a query builder pointing at the relation - Use this if you have further filters (See [Builer/Filters](#builderfilters)) $customers = $entity->relation();
If the relations isn't pointing at a collection, then only the single related entity will be returned.
Check Entities Overview to see if the relation is a collection type or not.
Entity Methods
-
fill(array $attributes)
: Entity- Update/set multiple properties as once - Only fillable properties will be set
- Check the individual entity type on Entities Overview
-
save()
:bool
- Save the entity to Business Central
-
validate()
:bool
- Validate the entity against the rules set by Business Central (this method is also called during
save()
- Validate the entity against the rules set by Business Central (this method is also called during
-
getEntityType
: EntityType- Get the entity's EntityType
-
query()
: Builder- Get a query pointing to the entity
-
toArray()
:array
- Get the entity as an associative array
EntityCollection
Container class for Entities fetched from Business Central
EntityCollection Properties
None
EntityCollection Methods
-
find(string|array $id, $default = null)
: Entity |null
- Finds and returns an entity from the collection with the given id or
$default
on failure
- Finds and returns an entity from the collection with the given id or
-
create(array $attributes)
: Entity- Creates and returns a new Entity with the given attributes
-
update(string|array $id, array $attributes)
: Entity- Updates and returns an existing Entity with the given attributes
-
delete(string|array $id)
:bool
- Deletes en entity from the collection with the given id - Returns true/false on success/failure
-
first($default = null)
: Entity |null
|mixed
- Returns the first index of the collection or
$default
is empty
- Returns the first index of the collection or
-
count()
:int
- Returns the amount of entities in the collection
-
all()
:array
- Get all Entities in the collection as an array
- This is a heavy method call on large collections - Use wisely!
- Note: If the EntityCollection isn't fully loaded then the remaining Entities will be fetched!
-
getEntitySet
: EntitySet- Get the collections EntitySet
-
query()
: Builder- Get a query pointing to the collection (includes extentions)
-
toArray()
:array
- Get the collection as an array (converts all entities within also)
Builder
Query builder used to fetch and update entities on Business Central
Note: All EntityCollection method calls can be performed on the Builder instance itself,
due to an internal call to $collection->fetch()
before the method call.
Builder Properties
None
Builder Methods
Builder Navigation
-
navigateTo(string $component, string $id = null) | to(string $component, string $id = null)
:self
- Point the Builder towards a component
-
fetch()
: EntityCollection- Fetch all entities at the pointer
Builder Meta
-
count()
:int
- Get the total count matching the Builder
-
exists()
:bool
- Check if anything matches the builder
Builder Pagination
-
limit(int $limit = null)
:self
|int
- Set the limit if
$limit
is set, else returns the current limit
- Set the limit if
-
page(int $page = null)
:self
|int
- Set the page if
$page
is set, else returns the current page
- Set the page if
-
nextPage()
:self
- Flip to the next page
-
prevPage()
:self
- Flip to the previous page
Builder Sorting
-
orderBy($property, string $direction = 'asc')
:self
- Sort the Builder by a specified property and $direction
- The
$field
property can be an array containing multiple conditions ( ['property' => 'direction'] )
-
orderByAsc(string $property)
:self
- Sort the Builder by a specified property ascending
-
orderByDesc(string $property)
:self
- Sort the Builder by a specified property descending
Builder Expansion
OData Reference: Reference
expand(array $relations)
:self
- Expand selection
Expansion allows us to fetch multiple levels of entities in a single request.
This allows us to minimize the amount of requests needed to get the entities needed.
- Expand selection
Expansion allows us to fetch multiple levels of entities in a single request.
Basic Usage
Example:
$company->customers()->expand([ 'paymentMethod', 'picture', ])->fetch();
The above will fetch a collection with all customers from a company with their paymentMethod
relation in one request.
Multilevel Expansion / Filtered Expansion
Utilizing closures it is possible to nest expansions and apply filters to the expansions at any level.
$company->customers()->expand([ 'paymentMethod' => function(Builder $query) { $query->where('code', '=', 'CR3D17C4RD') ->expand(['nested_relation']); }, 'picture', ]); // Query: companies(...)/customers?$expand=picture,paymentMethod($filter=code eq 'CR3D17C4RD';$expand=nested_relation;$count=true)&$top=40&$count=true
See Filtering
Note: The nesting can be done indefinitely and as complex as you want, but keep in mind there still is a character limit to URLs.
Builder Filtering
OData reference: Reference
Filtering allows us to more carefully select which entities we fetch from Business Central.
This allows us to improve performance and exclude irrelevant models from our processing from the start.
A number of different filtering methods exists.
For every filter method an "OR" version exists (eg. whereDate(...)
-> orWhereDate(...)
The $before
argument is the boolean operator prepended to the query before every clause.
-
where(string $property, $operator = null, $value = null, string $before = 'and')
:self
- Basic where clause
- Shorthand:
where('displayName', 'John Doe');
is the same aswhere('displayName', '=', 'John Doe')
-
whereIn(string $property, array $values, string $before = 'and')
:self
- Where property in a group of values
-
whereDateTime(string $property, $operator, DateTime $value = null, string $before = 'and')
:self
- Where property is a datetime (
Y-m-d\TH:i:s.v\Z
)
- Where property is a datetime (
-
whereContains(string $property, $value, string $before = 'and')
:self
- Where property contains the value - Same as SQL
´column´ like '%value%'
- Where property contains the value - Same as SQL
-
whereStartsWith(string $property, $value, string $before = 'and')
:self
- Where property starts with the value - Same as SQL
´column´ like 'value%'
- Where property starts with the value - Same as SQL
-
whereEndsWith(string $property, $value, string $before = 'and')
:self
- Where property ends with the value - Same as SQL
´column´ like '%value'
- Where property ends with the value - Same as SQL
-
whereGroup(Closure $callback, string $before = 'and')
:self
- Grouped where clause - Example:
whereGroup(function(Builder $query) { $query->where('property', 'Foo')->orWhere('property', 'Bar'))
- This functionality can be shorthanded as
where(function(Builder $query) { ... })
- Grouped where clause - Example:
Operators:
Basic Usage
Builder Advanced
-
clone()
:self
- Clone the current Builder instance with extentions (filters, expands, sorting etc.)
-
cloneWithoutExtentions()
:self
- Clone the current Builder instance without extentions (filters, expands, sorting etc.)
Extending Entity Models
The SDK has a range of pre-generated Models it uses to contain and assist the user while using the SDK.
You can replace the class used as the container if you want to - Only requirement is that the model must extend \BusinessCentral\Entity
.
Example:
\BusinessCentral\ClassMap::extend('nativeInvoicingSalesCustomers', MyTotallyNewAwesomeCustomerModelReplacementOfAbsoluteDoom::class);
This overrides the model class used for all entities of type customer
in the entire application.
Debugging
The SDK logs all requests to and from your application to Business Central for debugging and monitoring purposes.
You can get all log entries from the SDK at any time from $sdk->request_log
, which returns an array of RequestLog objects.
RequestLog Properties
Contribution
This SDK is not a finished product.
Input, additions and changes are very much encouraged - Fork the repo, make the changes/additions/fixes, and create a pull request.
What's needed?
Schema Overrides
A lot of entities on Business Central has read-only fields which are disguised as actual properties but are virtual (like currencyCode on customers is the value of the customer's currency's code property and cannot be changed on the customer itself).
These properties needs to be found and flagged.
Take a look in schema_overrides.json and follow the syntax for flagging a property as read-only.