Check access from your backend
Gate server-side features on a customer's active perk grants.
Use the PHP library to decide, on your server, whether a customer may use a feature. The check asks Voidhash for the customer's active perk grants, so nothing a customer reaches through your API depends on a client-side decision. Set up the PHP library with a secret key first.
Check a perk
hasActivePerk answers one question: does this customer hold an active grant for this perk? The
handler below gates an export route on the premium perk.
$app->get("/reports/export", function (Request $request, Response $response) {
$hasPremium = $voidhash->entitlements()->hasActivePerk(
distinctId: $request->getAttribute("user_id"),
perkSlug: "premium",
);
if (!$hasPremium) {
return $response->withStatus(402)->withJson(["error" => "premium_required"]);
}
return $response->withJson(buildExport($request->getAttribute("user_id")));
});distinctId is the same identifier your app passed to
identify(). Pass exactly one of perkId or perkSlug. If
you pass both or neither, the call throws Voidhash\ConfigurationException before any request is
made.
Checking by perkSlug is convenient, but it costs one extra request (perks.listPerks) to resolve
the slug to an id. On a hot path, look the id up once when your server starts and pass perkId
instead.
An unknown customer has no access
hasActivePerk returns false when Voidhash has never seen the distinctId, and when the
perkSlug matches no perk. It does not hide authentication, authorization, 5xx, or transport
failures. Those throw, so a mistyped secret key can never look like "nobody has premium".
Read the grants yourself
hasActivePerk only returns a boolean. When you need to render an account page, show an expiry
date, or branch on where access came from, read the grants directly.
$grants = $voidhash->entitlements()->getGrantsByDistinctId(
distinctId: "user_123",
);Each grant has these fields.
| Field | Type | Description |
|---|---|---|
perkId | string | The perk this grant is for. Match it against the perk you care about. |
status | "active"|"expired" | Only active grants confer access. |
expiresAt | string|null | An ISO timestamp. null means the grant never expires. |
source | "subscription"|"purchase"|"manual" | How the customer obtained the grant. |
sourceId | string|null | The subscription or purchase behind the grant. |
sourcePersonId | string | The person who holds the source. On shared plans this differs from the person you asked about. |
Unlike hasActivePerk, this call treats an unknown distinctId as an error. That leaves the
decision to you: whether "never seen" and "seen, but bought nothing" should mean the same thing.
If you already hold a personId, the same lookup is available as two separate calls.
$person = $voidhash->persons()->getPersonByDistinctId(
distinctId: "user_123",
);
$entitlements = $voidhash->persons()->getPersonEntitlements(
personId: $person["personId"],
);Person is intentionally thin. It carries personId, distinctId, email, and name, because
it identifies the customer. It does not describe what they paid for.
Handle errors deliberately
When an API call fails, the library throws Voidhash\ApiErrorException. It carries the decoded
server error, and getTag() returns the stable _tag so you can switch on it. Transport failures
(DNS, TLS, timeouts) throw Voidhash\TransportException instead.
The example below treats an unknown person as "no access", treats a bad key as your own bug, rethrows every other API error, and treats an unreachable API as an unknown answer.
use Voidhash\ApiErrorException;
use Voidhash\TransportException;
try {
$grants = $voidhash->entitlements()->getGrantsByDistinctId(
distinctId: "user_123",
);
return in_array(
true,
array_map(
fn (array $grant) => $grant["perkId"] === $premiumPerkId && $grant["status"] === "active",
$grants,
),
);
} catch (ApiErrorException $error) {
switch ($error->getTag()) {
case "Api/PersonNotFoundError":
// Never identified from a client: nothing was ever bought.
return false;
case "Api/NotAuthenticatedError":
case "Api/ActionForbiddenError":
// Our key is wrong. Our bug, not the customer's. Do not lock them out.
throw new RuntimeException("Voidhash secret key is invalid or lacks access.");
default:
throw $error;
}
} catch (TransportException) {
// Unknown, not "no access": serve the last known good value or fail the request.
throw new RuntimeException("Voidhash is unreachable.");
}The tags you are most likely to see are Api/NotAuthenticatedError (401),
Api/ActionForbiddenError (403), Api/PersonNotFoundError (404),
Api/WebhookEndpointNotFoundError (404), and Api/WebhookValidationError (400).
Live and development data
Grants are scoped to an environment. The server picks the scope from the x-environment request
header.
x-environment | Grants returned |
|---|---|
absent or production | Real purchases, from both store production and store sandbox. |
development | Only simulated purchases made by an SDK in a debug build. |
all | Both of the above. |
The library never sends this header for you, so a plain client always reads production and sandbox grants. To read development purchases, create a second client that sets the header.
$voidhashDevelopment = new Client(
getenv("VOIDHASH_SECRET_KEY"),
headers: ["x-environment" => "development"],
);Secret keys are not scoped to an environment. Which key you use does not change the answer. Only the header does.
Any other value silently means production
An unrecognized x-environment value falls back to production instead of failing. Never wire
the header directly to a variable like APP_ENV. A value of "testing" would quietly read
production grants.
Caching and failures
The library does not cache, retry, or de-duplicate. Every call is a live HTTP round trip.
If you check access on every request, cache the result yourself for a short window and refresh it in the background. 60 seconds is a reasonable starting point. A PSR-6 or PSR-16 cache pool works well here. Keep the TTL short enough that a revoked grant expires from the cache quickly.
When a call fails with a transport error or a 5xx, treat the answer as unknown, not as no
access. Serve the last known good value, or fail the request. Revoking a paying customer's access
because of a network blip is worse than serving a slightly stale cache.
To keep the cache warm without polling, subscribe to webhooks and invalidate the cached entry when a subscription or purchase event arrives for that person.