Skip to content

Instantly share code, notes, and snippets.

View bwaidelich's full-sized avatar
🏠
Working from home

Bastian Waidelich bwaidelich

🏠
Working from home
View GitHub Profile
@bwaidelich
bwaidelich / example.js
Created December 18, 2024 10:58
DCB Example: Product price change with grace period
/*
This example demonstrates how a product price change can be rolled out with grace period for customers to order it for the previous price
*/
// little helper function to generate dates X minutes ago
const minutesAgo = (minutes) => new Date((new Date).getTime() - minutes * (1000 * 60));
const events = [
{
@bwaidelich
bwaidelich / Items.php
Last active November 18, 2024 14:22
PHP type safe "generic" collection
<?php
declare(strict_types=1);
namespace Some\Namespace;
use IteratorAggregate;
use Traversable;
/**
@bwaidelich
bwaidelich / example_01.js
Last active November 16, 2024 18:07
DCB Example: invoice number sequence
/*
This example shows how the next consecutive integer sequence number (e.g. for creating invoice numbers)
NOTE: In this very basic example, all invoice creation events are iterated. In the actual DCB event store it is possible to only fetch the last event of a given type
*/
const events = [
{
type: "INVOICE_CREATED",
data: { invoiceNumber: 1 },
@bwaidelich
bwaidelich / example_01.js
Last active December 16, 2024 22:45
DCB Example: Unique username
/*
This example is the most simple one just checking whether a given username is claimed
*/
const events = [
{
type: "ACCOUNT_REGISTERED",
data: { id: "a1", username: "u1" },
tags: ["account:a1", "username:u1"],
},
@bwaidelich
bwaidelich / CatchUpWorkerCommandController.php
Created November 15, 2023 09:58
Creating a service for the Neos 9.0 Content Repository
<?php
declare(strict_types=1);
final class CatchUpWorkerCommandController extends CommandController {
public function __construct(
private readonly ContentRepositoryRegistry $contentRepositoryRegistry,
private readonly ProjectionCatchUpServiceFactory $projectionCatchUpServiceFactory,
) {
parent::__construct();
@bwaidelich
bwaidelich / Example.fusion
Created June 21, 2022 10:50
Neos CMS: Fusion based Zip Archive (example structure)
<Some.Package:ZipArchiveLink zip.files={['resource://Neos.Neos/Public/Images/Login/Logo.svg', 'resource://Neos.Neos/Public/Images/Login/Wallpaper.jpg']} filename="archive.zip">
Download
</Some.Package:ZipArchiveLink>
@bwaidelich
bwaidelich / Configuration_Policy.yaml
Created November 25, 2021 12:03
Example of a Flow policy that respects method parameters
# Concrete assignments from roles to privileges can happen in your global /Configuration/Policy.yaml file
roles:
'Some.Distribution:Administrator':
privileges:
- privilegeTarget: 'Some.Package:AccessAnyProduct'
permission: GRANT
'Some.Distribution:User':
@bwaidelich
bwaidelich / Tests_Behavior_Bootstrap_FeatureContext.php
Last active April 22, 2022 07:00
GraphQL based Behat testing in Flow
<?php
declare(strict_types=1);
use Behat\Behat\Context\Context;
use Behat\Gherkin\Node\PyStringNode;
use Behat\Gherkin\Node\TableNode;
use Doctrine\DBAL\Connection;
use Doctrine\ORM\EntityManagerInterface;
use Firebase\JWT\JWT;
const nestedStates = {
initial: 'a1',
states: {
a1: {
on: {
FOO: "a2"
}
},
a2: {
type: "final"
const machine = Machine(
{
id: "buyBook",
initial: "outside",
context: {
loggedIn: false,
subscription: null,
bookId: null,
initialLocation: null,
alreadySubscribedChosen: false