npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sanity-plugin-s3-dam

v0.7.0

Published

Store Sanity media files in AWS S3

Downloads

43

Readme

AWS S3 Digital Asset Management (DAM) plugin for Sanity.io

Allows uploading, referencing and deleting video and audio files to S3 directly from your Sanity studio. Is a flavor of sanity-plugin-external-dam.

Screenshot of the plugin

Installing

Start by installing the plugin:

sanity install s3-dam

The rest of the work must be done inside AWS' console. The video below is a full walkthrough, be sure to watch from start to finish to avoid missing small details that are hard to debug.

Video screenshot

Creating the S3 bucket

If you already have a bucket, make sure to follow the configuration below.

  1. Go into the console homepage for S3 and click on "Create bucket"
  2. Choose a name and region as you see fit
  3. "Object Ownership": ACL enabled & "Object writer"
  4. Untick "Block all public access"
  5. Disable "Bucket Versioning"
  6. Disable "Default encryption"
  7. Once created, click into the bucket's page and go into the "Permissions" tab to configure CORS
  8. Configure CORS for your bucket to accept the origins your studio will be hosted in (including localhost)

Creating the Lambda functions' role for accessing the bucket

  1. Go into the Identity and Access Management (IAM) console
  2. Start by going into the "Access management -> Policies" tab and "Create new Policy"
  3. In the "Create Policy" visual editor
    1. choose S3 as the "Service"
    2. Select the proper "Actions"
      • getSignedUrl needs "Write->PutObject" and "Permissions Management->PutObjectAcl"
      • deleteObject needs "Write->DeleteObject"
    3. In "Resources"
      • "Specific"
      • Click on "Add ARN to restrict access"
      • Fill in the bucket name and "*" for the object's name (or click on "Any")
        • Or use the ARN (Amazon Resource Name) of your bucket (find it under the bucket's properties tab) with an /* appended to it
    4. Leave "Request conditions" empty
    5. Create the policy
  4. With the policy created, go into "Access management -> Roles" and "Create role"
    1. "Trusted entity type": AWS Service
    2. "Use case": Lambda
    3. In "Add permissions", select the policy you created above
    4. Name your role
    5. Leave "Step 1: Select trusted entities" as is
    6. Create the role

Creating the Lambda functions

We'll need to create 2 functions, one for getting signed URLs for posting objects and another for deleting objects. The steps below apply to both:

Configuring functions' HTTP access

  1. Go into the Lambda console
  2. "Create function"
  3. "Author from scratch"
  4. Runtime: Node.js 14.x or higher
  5. Architecture: your call - I'm using x86_64
  6. "Permissions" -> "Change default execution role" -> "Use an existing role"
    • Select the role you created above
  7. "Advanced settings" -> "Enable function URL"
    • "Auth type": NONE
      • Question:: is there a better way to do this?
    • Check "Configure cross-origin resource sharing (CORS)"
    • "Allow headers": content-type
    • "Allow methods": *
  8. Create the function
  9. Open the function's page and, under the "Configuration" tab, select "Function URL" in the sidebar
  10. Set "content-type" as an "Allowed Headers" and set "Allowed Methods" to "*".
  11. Save the new configuration

Now we can change the code of each function

Editing functions' code

Use the templates at getSignedUrl.example.js and deleteObject.example.js.

With the functions' URLs in hand - which you can find in each functions' page -, open the plugin's configuration form in the Sanity tool.

There, you'll fill in the bucket key (ex: my-sanity-bucket), the bucket region (ex: ap-south-1), the URL for both Lambda functions and an optional secret for validating input in functions.

Using

Use the s3-dam.media type in your fields. Examples:

{
    name: "video",
    title: "Video (S3)",
    type: "s3-dam.media",
    options: {
        accept: "video/*",
        storeOriginalFilename: true,
    },
},
{
    name: "anyFile",
    title: "File (S3)",
    type: "s3-dam.media",
    options: {
        // Accept ANY file
        accept: "*",
        storeOriginalFilename: true,
    },
},

Contributing, roadmap & acknowledgments

Refer to sanity-plugin-external-dam for those :)