PHP code example of laulamanapps / apple-passbook-bundle
1. Go to this page and download the library: Download laulamanapps/apple-passbook-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
laulamanapps / apple-passbook-bundle example snippets
namespace App\Controller;
use LauLamanApps\ApplePassbook\Build\Compiler;
use LauLamanApps\ApplePassbook\GenericPassbook;
use LauLamanApps\ApplePassbook\MetaData\Barcode;
use LauLamanApps\ApplePassbook\Style\BarcodeFormat;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\Routing\Annotation\Route;
final class PassbookController extends AbstractController
{
/**
* @var Compiler
*/
private $passbookCompiler;
public function __construct(Compiler $passbookCompiler) {
$this->passbookCompiler = $passbookCompiler;
}
/**
* @Route("/download/passbook/", name="download_passbook")
*/
public function download(): Response
{
$passbook = new GenericPassbook('8j23fm3');
$passbook->setTeamIdentifier('<TeamId>');
$passbook->setPassTypeIdentifier('<PassTypeId>');
$passbook->setOrganizationName('Toy Town');
$passbook->setDescription('Toy Town Membership');
$barcode = new Barcode();
$barcode->setFormat(BarcodeFormat::pdf417());
$barcode->setMessage('123456789');
$passbook->setBarcode($barcode);
$data = $this->passbookCompiler->compile($passbook);
$response = new Response($data);
$response->headers->set('Content-Description', 'File Transfer');
$response->headers->set('Content-Type', 'application/vnd.apple.pkpass');
$response->headers->set('Content-Disposition', 'filename="passbook.pkpass"');
return $response;
}
}
/* Available on All events */
$event->getPassTypeIdentifier();
$event->getStatus();
/* Available on DeviceRegisteredEvent */
$event->getAuthenticationToken();
$event->getDeviceLibraryIdentifier();
$event->getSerialNumber();
/* Available on DeviceRequestUpdatedPassesEvent */
$event->getAuthenticationToken();
$event->getDeviceLibraryIdentifier();
$event->getPassesUpdatedSince();
/* Available on DeviceUnregisteredEvent */
$event->getAuthenticationToken();
$event->getDeviceLibraryIdentifier();
$event->getSerialNumber();
/* Available on RetrieveUpdatedPassbookEvent */
$event->getAuthenticationToken();
$event->getSerialNumber();
$event->getPassTypeIdentifier();
$event->getUpdatedSince();
namespace App\Integration\Symfony\EventSubscriber;
use DateTimeImmutable;
use LauLamanApps\ApplePassbook\GenericPassbook;
use LauLamanApps\ApplePassbookBundle\Event\DeviceRegisteredEvent;
use LauLamanApps\ApplePassbookBundle\Event\DeviceRequestUpdatedPassesEvent;
use LauLamanApps\ApplePassbookBundle\Event\DeviceUnregisteredEvent;
use LauLamanApps\ApplePassbookBundle\Event\RetrieveUpdatedPassbookEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
final class ApplePassbookSubscriber implements EventSubscriberInterface
{
public static function getSubscribedEvents(): array
{
return [
DeviceRegisteredEvent::class => 'onDeviceRegistered',
DeviceRequestUpdatedPassesEvent::class => 'onDeviceRequestUpdatedPasses',
RetrieveUpdatedPassbookEvent::class => 'onRetrieveUpdatedPassbook',
DeviceUnregisteredEvent::class => 'onDeviceUnregistered',
];
}
public function onDeviceRegistered(DeviceRegisteredEvent $event): void
{
$passbook = $this->passbookRepository->getBySerial($event->getSerialNumber());
if ($event->getAuthenticationToken() <> $passbook->getAuthToken()) {
$event->notAuthorized();
return;
}
/**
* Save in Database
*/
$event->deviceRegistered();
}
public function onDeviceRequestUpdatedPasses(DeviceRequestUpdatedPassesEvent $event): void
{
$passbooks = $this->passbookRepository->getSerialsSince(
$event->getPassTypeIdentifier(),
$event->getDeviceLibraryIdentifier(),
$event->getPassesUpdatedSince()
);
if ($passbooks) {
$serials = [];
foreach ($passbooks as $passbook) {
$serials[] = $passbook->getSerialNumber();
}
$event->setSerialNumbers($serials, new DateTimeImmutable());
return;
}
$event->notFound();
}
public function onRetrieveUpdatedPassbook(RetrieveUpdatedPassbookEvent $event): void
{
try {
$entity = $this->passbookRepository->getBySerial($event->getSerialNumber());
if ($entity->getAuthToken() !== $event->getAuthenticationToken()) {
$event->notAuthorized();
return;
}
if ($event->getUpdatedSince() && $entity->getUpdatedAt() < $event->getUpdatedSince()) {
$event->notModified();
return;
}
$passbook = new GenericPassbook($event->getSerialNumber());
/* Generate Passbook */
$event->setPassbook($passbook);
} catch (NoResultException $e) {
$event->notFound();
}
}
public function onDeviceUnregistered(DeviceUnregisteredEvent $event): void
{
$passbook = $this->passbookRepository->getBySerial($event->getSerialNumber());
if ($event->getAuthenticationToken() <> $passbook->getAuthToken()) {
$event->notAuthorized();
return;
}
/**
* Remove from Database
*/
$event->deviceUnregistered();
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.