jalallinux / laravel-thingsboard
ThingsBoard laravel client
Installs: 147
Dependents: 0
Suggesters: 0
Security: 0
Stars: 32
Watchers: 2
Forks: 2
Open Issues: 20
Requires
- php: ^8.0|^8.1|^8.2
- ext-fileinfo: *
- ext-json: *
- guzzlehttp/guzzle: ^7.0
- illuminate/container: ^9.0|^10.0
- illuminate/contracts: ^9.0|^10.0
- illuminate/http: ^9.0|^10.0
- illuminate/support: ^9.0|^10.0
- jenssegers/model: ^1.5
- php-mqtt/client: ^1.8
- spatie/laravel-enum: ^3.0
Requires (Dev)
- laravel/pint: *
- orchestra/testbench: ^7.0|^8.0
- phpunit/phpunit: ^9.4
This package is auto-updated.
Last update: 2024-10-08 16:51:08 UTC
README
ThingsBoard is an open-source IoT platform for data collection, processing, visualization, and device management. This project is a Laravel Package that provides convenient client SDK for Integrate with Thingsboard APIs.
Installation
You can install the package via composer
composer require jalallinux/laravel-thingsboard
Publish config file
You can publish config file to change default configs
php artisan vendor:publish --provider JalalLinuX\\Thingsboard\\LaravelThingsboardServiceProvider --tag config
Publish language file
You can publish config file to change default languages
php artisan vendor:publish --provider JalalLinuX\\Thingsboard\\LaravelThingsboardServiceProvider --tag lang
Preparing for usage
User
class must implement JalalLinuX\Thingsboard\Interfaces\ThingsboardUser
like this:
class User extends Authenticatable implements JalalLinuX\Thingsboard\Interfaces\ThingsboardUser { public function getThingsboardEmailAttribute(): string { return $this->attributes['thingsboard_email']; } public function getThingsboardPasswordAttribute(): string { return $this->attributes['thingsboard_password']; } public function getThingsboardAuthorityAttribute(): EnumAuthority { return EnumAuthority::from($this->attributes['thingsboard_authority']); } ...
Then can use trait JalalLinuX\Thingsboard\Traits\ThingsboardUser
like this:
class User extends Authenticatable implements JalalLinuX\Thingsboard\Interfaces\ThingsboardUser { use \JalalLinuX\Thingsboard\Traits\ThingsboardUser ... }
Usage with Tntity classes
use JalalLinuX\Thingsboard\Entities\DeviceApi; /** Without Authentication */ DeviceApi::instance()->setAttribute('deviceToken', 'A1_TEST_TOKEN')->postTelemetry([...]) /** With Authentication */ Device::instance()->withUser($tenantUser)->getDeviceById('ca3b8fc0-dcf6-11ed-a299-0f591673a2d6') Device::instance()->withUser($tenantUser)->setAttribute('id', 'ca3b8fc0-dcf6-11ed-a299-0f591673a2d6')->getDeviceById() Device::instance(['id' => 'ca3b8fc0-dcf6-11ed-a299-0f591673a2d6'])->withUser($tenantUser)->getDeviceById()
Usage with Helper function
/** Without Authentication */ thingsboard()->deviceApi()->setAttribute('deviceToken', 'A1_TEST_TOKEN')->postDeviceAttributes([...]) /** With Authentication */ thingsboard()->device()->withUser($tenantUser)->getDeviceById('ca3b8fc0-dcf6-11ed-a299-0f591673a2d6') thingsboard($tenantUser)->device()->setAttribute('id', 'ca3b8fc0-dcf6-11ed-a299-0f591673a2d6')->getDeviceById() thingsboard()->device(['id' => 'ca3b8fc0-dcf6-11ed-a299-0f591673a2d6'])->withUser($tenantUser)->getDeviceById()
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.