|
| 1 | +<?php |
| 2 | + |
| 3 | +require 'vendor/autoload.php'; // Make sure to include Composer's autoload file |
| 4 | + |
| 5 | +use Stripe\StripeClient; |
| 6 | + |
| 7 | +class MeterEventManager |
| 8 | +{ |
| 9 | + private $apiKey; |
| 10 | + private $meterEventSession; |
| 11 | + |
| 12 | + public function __construct($apiKey) |
| 13 | + { |
| 14 | + $this->apiKey = $apiKey; |
| 15 | + $this->meterEventSession = null; |
| 16 | + } |
| 17 | + |
| 18 | + private function refreshMeterEventSession() |
| 19 | + { |
| 20 | + // Check if session is null or expired |
| 21 | + if ( |
| 22 | + $this->meterEventSession === null || |
| 23 | + $this->meterEventSession->expires_at <= time() |
| 24 | + ) { |
| 25 | + // Create a new meter event session in case the existing session expired |
| 26 | + $client = new \Stripe\StripeClient($this->apiKey); |
| 27 | + $this->meterEventSession = $client->v2->billing->meterEventSession->create(); |
| 28 | + } |
| 29 | + } |
| 30 | + |
| 31 | + public function sendMeterEvent($meterEvent) |
| 32 | + { |
| 33 | + // Refresh the meter event session, if necessary |
| 34 | + $this->refreshMeterEventSession(); |
| 35 | + |
| 36 | + // Create a meter event with the current session's authentication token |
| 37 | + $client = new \Stripe\StripeClient($this->meterEventSession->authentication_token); |
| 38 | + $client->v2->billing->meterEventStream->create([ |
| 39 | + 'events' => [$meterEvent], |
| 40 | + ]); |
| 41 | + } |
| 42 | +} |
| 43 | + |
| 44 | +// Usage |
| 45 | +$apiKey = "{{API_KEY}}"; |
| 46 | +$customerId = "{{CUSTOMER_ID}}"; |
| 47 | + |
| 48 | +$manager = new MeterEventManager($apiKey); |
| 49 | +$manager->sendMeterEvent([ |
| 50 | + 'event_name' => 'alpaca_ai_tokens', |
| 51 | + 'payload' => [ |
| 52 | + 'stripe_customer_id' => $customerId, |
| 53 | + 'value' => '26', |
| 54 | + ], |
| 55 | +]); |
0 commit comments