Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Tulip Api Client Laravel Package

connectholland/tulip-api-client

PHP client for the Tulip API, providing a simple way to authenticate and call Tulip endpoints from Laravel or any PHP app. Wraps requests and responses to help you integrate with Tulip services with minimal boilerplate.

View on GitHub
Deep Wiki
Context7

Getting Started

Minimal Setup

  1. Installation

    composer require connectholland/tulip-api-client
    

    Verify the package is autoloaded in composer.json under "autoload": { "psr-4": { ... } }.

  2. First Use Case: Authentication Initialize the client with your API credentials:

    use ConnectHolland\TulipApiClient\Client;
    
    $client = new Client(
        'your_api_key',
        'your_api_secret',
        'your_base_url' // e.g., 'https://api.tulip.example.com'
    );
    
  3. First API Call Fetch a basic endpoint (e.g., user info):

    try {
        $response = $client->get('/users/me');
        $userData = json_decode($response->getBody(), true);
        dd($userData); // Debug output
    } catch (\Exception $e) {
        dd($e->getMessage());
    }
    
  4. Key Files to Explore

    • src/Client.php: Core client logic, request handling.
    • src/Exception/: Custom exceptions (e.g., ApiException, AuthException).
    • tests/: Example test cases for common workflows.

Implementation Patterns

Workflow: CRUD Operations

  1. Create (POST)

    $data = ['name' => 'Test User', 'email' => 'test@example.com'];
    $response = $client->post('/users', json_encode($data), [
        'headers' => ['Content-Type' => 'application/json']
    ]);
    
  2. Read (GET)

    $response = $client->get('/users/123');
    $user = json_decode($response->getBody(), true);
    
  3. Update (PUT/PATCH)

    $client->put('/users/123', json_encode(['email' => 'new@example.com']));
    
  4. Delete (DELETE)

    $client->delete('/users/123');
    

Integration with Laravel

  1. Service Provider Bind the client to Laravel’s container in AppServiceProvider:

    public function register()
    {
        $this->app->singleton(Client::class, function ($app) {
            return new Client(
                config('services.tulip.api_key'),
                config('services.tulip.api_secret'),
                config('services.tulip.base_url')
            );
        });
    }
    
  2. Facade (Optional) Create a facade for cleaner syntax:

    // app/Facades/Tulip.php
    namespace App\Facades;
    
    use Illuminate\Support\Facades\Facade;
    
    class Tulip extends Facade
    {
        protected static function getFacadeAccessor() { return 'tulip'; }
    }
    

    Update config/app.php to bind 'tulip' => Client::class.

  3. Request Wrapper Extend the client for Laravel-specific features (e.g., logging, retries):

    use Illuminate\Support\Facades\Log;
    
    class LaravelTulipClient extends Client
    {
        public function request($method, $endpoint, $body = null, $headers = [])
        {
            try {
                return parent::request($method, $endpoint, $body, $headers);
            } catch (\Exception $e) {
                Log::error("Tulip API Error: {$e->getMessage()}");
                throw $e;
            }
        }
    }
    

Pagination Handling

Manually parse paginated responses (library lacks built-in support):

$page = 1;
$perPage = 20;
$users = [];

do {
    $response = $client->get("/users?page={$page}&per_page={$perPage}");
    $data = json_decode($response->getBody(), true);
    $users = array_merge($users, $data['data']);
    $page++;
} while (!empty($data['links']['next']));

Gotchas and Tips

Pitfalls

  1. Deprecated API

    • Last release in 2018; verify endpoint compatibility with Tulip’s current API (check their docs).
    • Example: /users/me may not exist in newer versions (use /auth/me instead).
  2. No Built-in Rate Limiting

    • Implement retries with exponential backoff:
      use Symfony\Component\HttpClient\RetryableHttpClient;
      
      $client = new RetryableHttpClient(
          $originalClient,
          [
              'max_retries' => 3,
              'delay' => 100,
              'multiplier' => 2,
              'statuses' => [429, 500, 502, 503, 504],
          ]
      );
      
  3. Authentication Quirks

    • If using OAuth, manually handle token refresh:
      if ($response->getStatusCode() === 401) {
          $newToken = $client->refreshToken();
          $client->setAuthToken($newToken);
          // Retry request
      }
      
  4. No Type Safety

    • Responses are raw JSON; validate manually:
      $schema = [
          'type' => 'object',
          'properties' => [
              'id' => ['type' => 'integer'],
              'name' => ['type' => 'string']
          ],
          'required' => ['id', 'name']
      ];
      JsonSchema::validate($userData, $schema);
      

Debugging Tips

  1. Enable Guzzle Middleware Add logging to requests/responses:

    $client->getClient()->getEmitter()->attach(
        new \GuzzleHttp\Middleware::tap(function ($request) {
            Log::debug('Request:', [
                'method' => $request->getMethod(),
                'uri' => (string) $request->getUri(),
                'body' => $request->getBody() ? $request->getBody()->getContents() : null
            ]);
        })
    );
    
  2. Mocking for Tests Use GuzzleHttp\Handler\MockHandler to simulate API responses:

    $mock = new MockHandler([
        new Response(200, [], json_encode(['id' => 1, 'name' => 'Test']))
    ]);
    $client->setClient(new ClientHandlerStack($mock));
    

Extension Points

  1. Custom Endpoints Extend the client to add domain-specific methods:

    class ExtendedTulipClient extends Client
    {
        public function createOrder(array $data)
        {
            return $this->post('/orders', json_encode($data));
        }
    }
    
  2. Webhook Handling Validate incoming webhooks (not part of the client):

    public function handleWebhook(Request $request)
    {
        $signature = $request->header('X-Tulip-Signature');
        $payload = $request->getContent();
    
        if (!$this->verifySignature($payload, $signature)) {
            abort(403, 'Invalid signature');
        }
    
        // Process payload
    }
    
  3. Caching Responses Cache frequent requests (e.g., user data):

    use Illuminate\Support\Facades\Cache;
    
    $user = Cache::remember("tulip_user_{$userId}", now()->addHours(1), function () use ($client, $userId) {
        return $client->get("/users/{$userId}")->getBody();
    });
    

Configuration Quirks

  • Base URL: Ensure it includes the scheme (https://) and ends with /.
  • Timeouts: Set Guzzle defaults in config/services.php:
    'tulip' => [
        'timeout' => 30, // seconds
        'connect_timeout' => 5,
    ],
    
    Then configure the client:
    $client->getClient()->getConfig(['timeout' => config('services.tulip.timeout')]);
    
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
sentix/ai-chatbot
terminal42/code-quality-tools
codifyo/ts-generator-bundle
testo/fiber
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity
christhompsontldr/laravel-inky