Skip to content

Commit 002550f

Browse files
committed
added new example template and instructions on how to create more
1 parent 3df1a19 commit 002550f

File tree

3 files changed

+94
-0
lines changed

3 files changed

+94
-0
lines changed

examples/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Running an example
2+
3+
From the examples folder, run:
4+
`php your_example.php`
5+
6+
## Adding a new example
7+
8+
1. Clone new_example.php
9+
2. Implement your example
10+
3. Run it (as per above)
11+
4. 👍

examples/meter_event_stream.php

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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+
]);

examples/new_example.php

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
// require 'vendor/autoload.php'; // Make sure to include Composer's autoload file
4+
require '../init.php';
5+
6+
use Stripe\StripeClient;
7+
8+
class NewExample
9+
{
10+
private $apiKey;
11+
12+
public function __construct($apiKey)
13+
{
14+
$this->apiKey = $apiKey;
15+
}
16+
17+
public function doSomethingGreat()
18+
{
19+
print("Hello World\n");
20+
// $client = new \Stripe\StripeClient($this->apiKey);
21+
}
22+
}
23+
24+
// Usage
25+
$apiKey = "{{API_KEY}}";
26+
27+
$example = new NewExample($apiKey);
28+
$example->doSomethingGreat();

0 commit comments

Comments
 (0)