Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions src/content/docs/workflows/examples/automate-lifecycle-emails.mdx

This file was deleted.

4 changes: 2 additions & 2 deletions src/content/docs/workflows/examples/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ sidebar:

import { GlossaryTooltip, ListExamples } from "~/components"

Explore the following <GlossaryTooltip term="code example">examples</GlossaryTooltip> for D1.
Explore the following <GlossaryTooltip term="code example">examples</GlossaryTooltip> for Workflows.

<ListExamples directory="d1/examples/" />
<ListExamples directory="workflows/examples/" />
15 changes: 0 additions & 15 deletions src/content/docs/workflows/examples/post-process-r2.mdx

This file was deleted.

219 changes: 219 additions & 0 deletions src/content/docs/workflows/examples/send-invoices.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,219 @@
---
type: example
summary: Send invoice when shopping cart is checked out and paid for
tags:
- Workflows
- D1
- Email Routing
pcx_content_type: configuration
title: Pay cart and send invoice
sidebar:
order: 3
description: Send invoice when shopping cart is checked out and paid for

---

import { TabItem, Tabs } from "~/components"

In this example, we implement a Workflow for an e-commerce website that is triggered every time a shopping cart is created.

Once a workflow instance is triggered, it starts polling a [D1](/d1) database for the cart ID until it's been checked out. Once the shopping cart is checked out, we proceed to process the payment with an external provider doing a fetch POST. Finally, assuming everything goes well, we try to send an email using [Email Workers](/email-routing/email-workers/) with the invoice to the customer.

As you can see, Workflows handles all the different service responses and failures; it will retry D1 until the cart is checked out, retry the payment processor if it fails for some reason, and retry sending the email with the invoice if it can't. The developer doesn't have to care about any of that logic, and the workflow can run for hours, handling all the possible conditions until it is completed.

This is obviously a simplified example of processing a shopping cart. We'd assume more steps and additional logic in a real-life scenario, but hopefully, it gives you a good idea of what you can do with Workflows.

```ts
import {
WorkflowEntrypoint,
WorkflowStep,
WorkflowEvent,
} from "cloudflare:workers";
import { EmailMessage } from "cloudflare:email";
import { createMimeMessage } from "mimetext";

// We are using Email Routing to send emails out and D1 for our cart database
type Env = {
CART_WORKFLOW: Workflow;
SEND_EMAIL: any;
DB: any;
};

// Workflow parameters: we expect a cartId
type Params = {
cartId: string;
};

// Adjust this to your Cloudflare zone using Email Routing
const merchantEmail = "[email protected]";

// Uses mimetext npm to generate Email
const genEmail = (email: string, amount: number) => {
const msg = createMimeMessage();
msg.setSender({ name: "Pet shop", addr: merchantEmail });
msg.setRecipient(email);
msg.setSubject("You invoice");
msg.addMessage({
contentType: "text/plain",
data: `Your invoice for ${amount} has been paid. Your products will be shipped shortly.`,
});

return new EmailMessage(merchantEmail, email, msg.asRaw());
};

// Workflow logic
export class cartInvoicesWorkflow extends WorkflowEntrypoint<Env, Params> {
async run(event: WorkflowEvent<Params>, step: WorkflowStep) {
await step.sleep("sleep for a while", "10 seconds");

// Retrieve the cart from the D1 database
// if the cart hasn't been checked out yet retry every 2 minutes, 10 times, otherwise give up
const cart = await step.do(
"retrieve cart",
{
retries: {
limit: 10,
delay: 2000 * 60,
backoff: "constant",
},
timeout: "30 seconds",
},
async () => {
const { results } = await this.env.DB.prepare(
`SELECT * FROM cart WHERE id = ?`,
)
.bind(event.payload.cartId)
.all();
// should return { checkedOut: true, amount: 250 , account: { email: "[email protected]" }};
if(results[0].checkedOut === false) {
throw new Error("cart hasn't been checked out yet");
}
return results[0];
},
);

// Proceed to payment, retry 10 times every minute or give up
const payment = await step.do(
"payment",
{
retries: {
limit: 10,
delay: 1000 * 60,
backoff: "constant",
},
timeout: "30 seconds",
},
async () => {
let resp = await fetch("https://payment-processor.example.com/", {
method: "POST",
headers: {
"Content-Type": "application/json; charset=utf-8",
},
body: JSON.stringify({ amount: cart.amount }),
});

if (!resp.ok) {
throw new Error("payment has failed");
}

return { success: true, amount: cart.amount };
},
);

// Send invoice to the customer, retry 10 times every 5 minutes or give up
// Requires that cart.account.email has previously been validated in Email Routing,
// See https://developers.cloudflare.com/email-routing/email-workers/
await step.do(
"send invoice",
{
retries: {
limit: 10,
delay: 5000 * 60,
backoff: "constant",
},
timeout: "30 seconds",
},
async () => {
const message = genEmail(cart.account.email, payment.amount);
try {
await this.env.SEND_EMAIL.send(message);
} catch (e) {
throw new Error("failed to send invoice");
}
},
);

}
}

// Default page for admin
// Remove in production

export default {
async fetch(req: Request, env: Env): Promise<Response> {
let url = new URL(req.url);

let id = new URL(req.url).searchParams.get("instanceId");

// Get the status of an existing instance, if provided
if (id) {
let instance = await env.CART_WORKFLOW.get(id);
return Response.json({
status: await instance.status(),
});
}

if (url.pathname.startsWith("/new")) {
let instance = await env.CART_WORKFLOW.create({
params: {
cartId: "123"
},
});
return Response.json({
id: instance.id,
details: await instance.status(),
});
}

return new Response(
`<html><body><a href="/new">new instance</a> or add ?instanceId=...</body></html>`,
{
headers: {
"content-type": "text/html;charset=UTF-8",
},
},
);
},
};
```

Here's a minimal package.json:

```json
{
"devDependencies": {
"@cloudflare/workers-types": "^4.20241022.0",
"wrangler": "^3.83.0"
},
"dependencies": {
"mimetext": "^3.0.24"
}
}
```

And finally wrangler.toml:

```toml
name = "cart-invoices"
main = "src/index.ts"
compatibility_date = "2024-10-22"
compatibility_flags = ["nodejs_compat" ]

[[workflows]]
name = "cart-invoices-workflow"
binding = "CART_WORKFLOW"
class_name = "cartInvoicesWorkflow"

[[send_email]]
name = "SEND_EMAIL"
```
Loading