项目作者: nazarii-kretovych

项目描述 :
Laravel 7 API model driver. It allows to work with API models as if they are DB models and use Eloquent relationships.
高级语言: PHP
项目地址: git://github.com/nazarii-kretovych/laravel-api-model-driver.git
创建时间: 2020-08-08T12:19:57Z
项目社区:https://github.com/nazarii-kretovych/laravel-api-model-driver

开源协议:MIT License

下载


Laravel API Model Driver

The library allows to create and assign an API connection to Laravel 7 Eloquent models and use Laravel query builder to build a query string and get data as if you get data from a database connection. It also allows to use Eloquent relationships.

Once developers define the configuration of a new API connection and make the related model classes use that connection, they don’t need to think about API calls, authentication, etc. They just work with those models as if they are regular models that have a MySQL connection. However, the library only supports retrieving data from an API service.

There is also a possibility to configure automatic time zone conversion in case the API service provides the clients with time values in a different time zone so that the developers don’t need to think about it while they are writing code.

Features

  • Support the following query builder functions: where, whereIn, whereBetween, orderBy and limit;
  • Support Eloquent relationships;
  • Automatic pluralization of the name of a query parameter that has an array;
  • Automatic time zone conversion for time JSON properties and time query parameters;
  • Possibility to define multiple API connections with their own configuration and authentication;
  • Automatic splitting query strings whose length is too long (see the max_url_length parameter);
  • The library makes API calls using the php-curl extension so that the subsequent requests reuse the connection that was established during the first request without wasting time on establishing new connections.

Installation

Install the library using composer:

  1. composer require nazarii-kretovych/laravel-api-model-driver

Configuration

Open config/database.php and add a new API connection:

  1. <?php
  2. return [
  3. // ...
  4. 'connections' => [
  5. // ...
  6. 'example_com_api' => [
  7. 'driver' => 'laravel_api_model_driver',
  8. 'database' => 'https://example.com/api',
  9. // You can define headers that will be sent to the API service in each request.
  10. // You might need to put your authentication token in a header.
  11. 'headers' => [
  12. 'Authorization: Bearer TOKEN_HERE',
  13. ],
  14. // If the API service has Laravel Passport Client Credentials authentication,
  15. // you can define client ID and client secret here:
  16. 'auth' => [
  17. 'type' => 'passport_client_credentials',
  18. 'url' => 'https://example.com/oauth/token',
  19. 'client_id' => 1,
  20. 'client_secret' => 'SECRET_HERE',
  21. ],
  22. // Define default query parameters.
  23. 'default_params' => [
  24. 'per_page' => 1000, // this parameter is required
  25. 'del' => 'no',
  26. ],
  27. // If the generated URL is longer than **max_url_length**,
  28. // its query string will be split into several parts, and the data will be retrieved for each part separately.
  29. 'max_url_length' => 8000, // default: 4000
  30. // The following configuration will generate the following query string
  31. // for ->whereIn('id', [1,3]): ids[]=1&ids[]=3
  32. 'pluralize_array_query_params' => true, // default: false
  33. 'pluralize_except' => ['meta'], // pluralization skips these query params
  34. // If the API service provides its clients with time values in a different time zone,
  35. // you can define the following configuration, which will enable automatic time zone conversion.
  36. 'timezone' => 'Europe/Kiev',
  37. 'datetime_keys' => ['created_at', 'updated_at', 'start_time', 'end_time'],
  38. ],
  39. ],
  40. ];

Create a new model class and set its connection:

  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Article extends Model
  5. {
  6. protected $connection = 'example_com_api';
  7. protected $table = 'articles'; // optional. Laravel generates it from the name of the class
  8. }

Usage

  1. <?php
  2. Article::with(['dbModel', 'apiModel.anotherApiModel'])
  3. ->where('status', 'published')
  4. ->whereIn('author_id', [1, 2])
  5. ->whereBetween('publish_time', ['2020-08-01 00:00:00', '2020-08-04 23:59:59'])
  6. ->where('id', '>=', 3)
  7. ->where('id', '<=', 24);
  8. ->orderBy('publish_time', 'desc')
  9. ->limit(20)
  10. ->get();
  11. // The library will generate the following URL for retrieving articles:
  12. // https://example.com/api/articles?status=published&author_ids[]=1&author_ids[]=2&min_publish_time=2020-08-01+00%3A00%3A00&max_publish_time=2020-08-04+23%3A59%3A59&min_id=3&max_id=24&order_by=publish_time&sort=desc&per_page=20