Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 Add blog entry for Feb 2023 #2603

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
Binary file added landing/public/img/blog/cyoa-mystery.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 62 additions & 0 deletions landing/src/content/blog/secret-handshakes-hidden-passages.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
---
title: 'Secret Handshakes and Hidden Passages: Using Redwood Functions'
authorId: chuckcarpenter
pubDate: '2024-02-27'
slug: secret-handshakes-hidden-passages
description: 'When you need something outside of the design of your API, actions in functions can be exposed.'
heroImage: 'cyoa-mystery.png'
heroImageCaption: 'Which way to the promise land?'
---

Redwood.js has served as a great choice in terms of a fully featured web application stack, covering lots of my needs such as authentication and mailing capabilities right out of the box.

For your main application, using and managing the API for your admin users is very straightforward and uses known conventions. Let's say you have perhaps another use case though? One that creates data via an action or even takes in events from another site? Enter Redwood functions.

## Understanding Redwood Functions

Redwood functions are the backbone of your serverless architecture, enabling you to execute server-side logic without the overhead of managing special access points in the GraphQL that have their own custom directives and you avoid enforcing GraphQL style queries where it might be unfamiliar. These functions can range from processing data, handling requests, to interacting with databases. However, without proper protection, they're like open doors to your data treasury.

## Implementing API Key Authentication

To secure these precious endpoints, we turn to API keys—a unique string that a client must send to access the function. Think of it as a special pass-code that unlocks your application's capabilities. Implementing API key authentication in Redwood functions ensures that only requests with the correct key can invoke your business logic.

Here’s how you might implement such a check:

```typescript
export const handler = async (event: APIGatewayEvent, _context: Context) => {
const apiKey = event.headers['x-api-key'];
if (!apiKey) {
return {
statusCode: 401,
body: JSON.stringify({
error: "Invalid API Key",
}),
};
}

// Do your business here, good people
return {
statusCode: 200,
body: JSON.stringify({
message: "Access granted: Welcome to the secret club!",
}),
}
}
```

You might notice the event arguments on the handler function look familiar if you've worked in serverless environments before. As noted in the Redwood.js documentation:

> Originally, Redwood apps were intended to be deployed as serverless functions to AWS Lambda. Whenever a Redwood app is deployed to a "serverful" environment such as Fly or Render, a Fastify server is started and your Redwood app's functions in api/src/functions are automatically registered onto the server.

Meaning, they have a similar signature to Lambdas even when in a containerized application. Huzzah!

In the above example, the function first checks if the incoming request contains an 'api-key' header that matches a predefined key stored in the environment variables. If not, it responds with a 403 Forbidden status, effectively barring the door against unauthorized access.

## Why API Keys?

API keys are simple yet effective in controlling access to your functions. They help you track and control how the API is being used, preventing unauthorized use and safeguarding your application from unwanted guests.

## The Tale Ends Here
Incorporating API key authentication into your Redwood functions is like equipping your digital fortress with a sophisticated locking mechanism. It ensures that your functions, whether they're updating user data, processing payments, or querying databases, remain secure and accessible only to those with the correct key.

As you continue to develop and deploy, remember that the security of your functions is integral to the integrity of your application. Secure your Redwood functions with API keys (or any other way you wish), and rest easy knowing that your back-end operations are guarded against the wild west of the web.
6 changes: 3 additions & 3 deletions landing/src/pages/blog/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import { getCollection } from 'astro:content';
import FormattedDate from '../../components/FormattedDate.astro';

const posts = (await getCollection('blog')).sort(
(a, b) => a.data.pubDate.valueOf() - b.data.pubDate.valueOf()
(a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf()
);
---

<Base>
<Header title={SITE_TITLE} />
<main class="flex justify-center w-full">
<section class="max-w-3xl my-10 text-xl w-full">
<section class="max-w-4xl my-10 text-2xl w-full">
<ul class="list-square">
{
posts.map((post) => (
Expand All @@ -27,7 +27,7 @@ const posts = (await getCollection('blog')).sort(
<h4 class="font-bold font-title">{post.data.title}</h4>
</a>
</div>
<div class="text-text-muted text-sm italic">
<div class="text-text-muted text-md italic">
<time datetime={post.data.pubDate.toISOString()}>
<FormattedDate date={post.data.pubDate} />
</time>
Expand Down
Loading
Loading