0

0

Documenso 和 aws-smage-upload 示例之间的 Spload 功能比较

DDD

DDD

发布时间:2024-12-16 18:48:11

|

523人浏览过

|

来源于dev.to

转载

在本文中,我们将比较 documenso 和 aws s3 图像上传示例之间将文件上传到 aws s3 所涉及的步骤。

我们从 vercel 提供的简单示例开始。

Documenso 和 aws-smage-upload 示例之间的 Spload 功能比较

示例/aws-s3-image-upload

vercel 提供了一个将文件上传到 aws s3 的良好示例。

此示例的自述文件提供了两个选项,您可以使用现有的 s3 存储桶或创建新存储桶。了解这一点有帮助

您正确配置了上传功能。

又到了我们看源码的时间了。我们正在寻找 type=file 的输入元素。在 app/page.tsx 中,您将找到以下代码:

return (
    

upload a file to s3

{ const files = e.target.files if (files) { setfile(files[0]) } }} accept="image/png, image/jpeg" />
) }

onchange

onchange 使用 setfile 更新状态,但不执行上传。当您提交此表单时就会进行上传。

onchange={(e) => {
  const files = e.target.files
  if (files) {
    setfile(files[0])
  }
}}

处理提交

handlesubmit 函数中发生了很多事情。我们需要分析这个handlesubmit函数中的操作列表。我已在此代码片段中编写了注释来解释这些步骤。

const handlesubmit = async (e: react.formevent) => {
    e.preventdefault()

    if (!file) {
      alert('please select a file to upload.')
      return
    }

    setuploading(true)

    const response = await fetch(
      process.env.next_public_base_url + '/api/upload',
      {
        method: 'post',
        headers: {
          'content-type': 'application/json',
        },
        body: json.stringify({ filename: file.name, contenttype: file.type }),
      }
    )

    if (response.ok) {
      const { url, fields } = await response.json()

      const formdata = new formdata()
      object.entries(fields).foreach(([key, value]) => {
        formdata.append(key, value as string)
      })
      formdata.append('file', file)

      const uploadresponse = await fetch(url, {
        method: 'post',
        body: formdata,
      })

      if (uploadresponse.ok) {
        alert('upload successful!')
      } else {
        console.error('s3 upload error:', uploadresponse)
        alert('upload failed.')
      }
    } else {
      alert('failed to get pre-signed url.')
    }

    setuploading(false)
  }

api/上传

api/upload/route.ts 有以下代码:

import { createpresignedpost } from '@aws-sdk/s3-presigned-post'
import { s3client } from '@aws-sdk/client-s3'
import { v4 as uuidv4 } from 'uuid'

export async function post(request: request) {
  const { filename, contenttype } = await request.json()

  try {
    const client = new s3client({ region: process.env.aws_region })
    const { url, fields } = await createpresignedpost(client, {
      bucket: process.env.aws_bucket_name,
      key: uuidv4(),
      conditions: [
        ['content-length-range', 0, 10485760], // up to 10 mb
        ['starts-with', '$content-type', contenttype],
      ],
      fields: {
        acl: 'public-read',
        'content-type': contenttype,
      },
      expires: 600, // seconds before the presigned post expires. 3600 by default.
    })

    return response.json({ url, fields })
  } catch (error) {
    return response.json({ error: error.message })
  }
}

handlesubmit 中的第一个请求是 /api/upload 并发送内容类型和文件名作为负载。解析如下:

const { filename, contenttype } = await request.json()

下一步是创建一个 s3 客户端,然后创建一个返回 url 和字段的预签名帖子。您将使用此网址上传您的文件。

有了这些知识,我们来分析一下documenso中的上传工作原理并进行一些比较。

在 documenso 中上传 pdf 文件

让我们从 type=file 的输入元素开始。 documenso 中的代码组织方式不同。您会在名为 document-dropzone.tsx.
的文件中找到输入元素



{_(heading[type])}

这里getinputprops返回的是usedropzone。 documenso 使用react-dropzone。

import { usedropzone } from 'react-dropzone';

ondrop 调用 props.ondrop,你会在 upload-document.tsx 中找到一个名为 onfiledrop 的属性值。


让我们看看 onfiledrop 函数会发生什么。

const onfiledrop = async (file: file) => {
    try {
      setisloading(true);

      const { type, data } = await putpdffile(file);

      const { id: documentdataid } = await createdocumentdata({
        type,
        data,
      });

      const { id } = await createdocument({
        title: file.name,
        documentdataid,
        teamid: team?.id,
      });

      void refreshlimits();

      toast({
        title: _(msg`document uploaded`),
        description: _(msg`your document has been uploaded successfully.`),
        duration: 5000,
      });

      analytics.capture('app: document uploaded', {
        userid: session?.user.id,
        documentid: id,
        timestamp: new date().toisostring(),
      });

      router.push(`${formatdocumentspath(team?.url)}/${id}/edit`);
    } catch (err) {
      const error = apperror.parseerror(err);

      console.error(err);

      if (error.code === 'invalid_document_file') {
        toast({
          title: _(msg`invalid file`),
          description: _(msg`you cannot upload encrypted pdfs`),
          variant: 'destructive',
        });
      } else if (err instanceof trpcclienterror) {
        toast({
          title: _(msg`error`),
          description: err.message,
          variant: 'destructive',
        });
      } else {
        toast({
          title: _(msg`error`),
          description: _(msg`an error occurred while uploading your document.`),
          variant: 'destructive',
        });
      }
    } finally {
      setisloading(false);
    }
  };

发生了很多事情,但为了我们的分析,我们只考虑名为 putfile 的函数。

putpdf文件

putpdffile 定义在 upload/put-file.ts

/**
 * uploads a document file to the appropriate storage location and creates
 * a document data record.
 */
export const putpdffile = async (file: file) => {
  const isencrypteddocumentsallowed = await getflag('app_allow_encrypted_documents').catch(
    () => false,
  );

  const pdf = await pdfdocument.load(await file.arraybuffer()).catch((e) => {
    console.error(`pdf upload parse error: ${e.message}`);

    throw new apperror('invalid_document_file');
  });

  if (!isencrypteddocumentsallowed && pdf.isencrypted) {
    throw new apperror('invalid_document_file');
  }

  if (!file.name.endswith('.pdf')) {
    file.name = `${file.name}.pdf`;
  }

  removeoptionalcontentgroups(pdf);

  const bytes = await pdf.save();

  const { type, data } = await putfile(new file([bytes], file.name, { type: 'application/pdf' }));

  return await createdocumentdata({ type, data });
};

放置文件

这会调用 putfile 函数。

Powtoon
Powtoon

AI创建令人惊叹的动画短片及简报

下载
/**
 * uploads a file to the appropriate storage location.
 */
export const putfile = async (file: file) => {
  const next_public_upload_transport = env('next_public_upload_transport');

  return await match(next_public_upload_transport)
    .with('s3', async () => putfileins3(file))
    .otherwise(async () => putfileindatabase(file));
};

putfileins3

const putfileins3 = async (file: file) => {
  const { getpresignposturl } = await import('./server-actions');

  const { url, key } = await getpresignposturl(file.name, file.type);

  const body = await file.arraybuffer();

  const reponse = await fetch(url, {
    method: 'put',
    headers: {
      'content-type': 'application/octet-stream',
    },
    body,
  });

  if (!reponse.ok) {
    throw new error(
      `failed to upload file "${file.name}", failed with status code ${reponse.status}`,
    );
  }

  return {
    type: documentdatatype.s3_path,
    data: key,
  };
};

getpresignposturl

export const getPresignPostUrl = async (fileName: string, contentType: string) => {
  const client = getS3Client();

  const { getSignedUrl } = await import('@aws-sdk/s3-request-presigner');

  let token: JWT | null = null;

  try {
    const baseUrl = APP_BASE_URL() ?? 'http://localhost:3000';

    token = await getToken({
      req: new NextRequest(baseUrl, {
        headers: headers(),
      }),
    });
  } catch (err) {
    // Non server-component environment
  }

  // Get the basename and extension for the file
  const { name, ext } = path.parse(fileName);

  let key = `${alphaid(12)}/${slugify(name)}${ext}`;

  if (token) {
    key = `${token.id}/${key}`;
  }

  const putObjectCommand = new PutObjectCommand({
    Bucket: process.env.NEXT_PRIVATE_UPLOAD_BUCKET,
    Key: key,
    ContentType: contentType,
  });

  const url = await getSignedUrl(client, putObjectCommand, {
    expiresIn: ONE_HOUR / ONE_SECOND,
  });

  return { key, url };
};

比较

  • 您在 documenso 中没有看到任何 post 请求。它使用名为 getsignedurl 的函数来获取 url,而

    vercel 示例向 api/upload 路由发出 post 请求。

  • 在 vercel 示例中可以轻松找到输入元素,因为这只是一个示例,但可以找到 documenso

    使用react-dropzone并且输入元素根据业务上下文定位。

关于我们:

在 thinkthroo,我们研究大型开源项目并提供架构指南。我们开发了使用 tailwind 构建的可重用组件,您可以在您的项目中使用它们。

我们提供 next.js、react 和 node 开发服务。

与我们预约会面讨论您的项目。

Documenso 和 aws-smage-upload 示例之间的 Spload 功能比较

参考资料:

  1. https://github.com/documenso/documenso/blob/main/packages/lib/universal/upload/put-file.ts#l69

  2. https://github.com/vercel/examples/blob/main/solutions/aws-s3-image-upload/readme.md

  3. https://github.com/vercel/examples/tree/main/solutions/aws-s3-image-upload

  4. https://github.com/vercel/examples/blob/main/solutions/aws-s3-image-upload/app/page.tsx#l58c5-l76c12

  5. https://github.com/vercel/examples/blob/main/solutions/aws-s3-image-upload/app/api/upload/route.ts

  6. https://github.com/documenso/documenso/blob/main/packages/ui/primitives/document-dropzone.tsx#l157

  7. https://react-dropzone.js.org/

  8. https://github.com/documenso/documenso/blob/main/apps/web/src/app/(dashboard)/documents/upload-document.tsx#l61

  9. https://github.com/documenso/documenso/blob/main/packages/lib/universal/upload/put-file.ts#l22

相关专题

更多
js正则表达式
js正则表达式

php中文网为大家提供各种js正则表达式语法大全以及各种js正则表达式使用的方法,还有更多js正则表达式的相关文章、相关下载、相关课程,供大家免费下载体验。

510

2023.06.20

js获取当前时间
js获取当前时间

JS全称JavaScript,是一种具有函数优先的轻量级,解释型或即时编译型的编程语言;它是一种属于网络的高级脚本语言,主要用于Web,常用来为网页添加各式各样的动态功能。js怎么获取当前时间呢?php中文网给大家带来了相关的教程以及文章,欢迎大家前来学习阅读。

244

2023.07.28

js 字符串转数组
js 字符串转数组

js字符串转数组的方法:1、使用“split()”方法;2、使用“Array.from()”方法;3、使用for循环遍历;4、使用“Array.split()”方法。本专题为大家提供js字符串转数组的相关的文章、下载、课程内容,供大家免费下载体验。

278

2023.08.03

js是什么意思
js是什么意思

JS是JavaScript的缩写,它是一种广泛应用于网页开发的脚本语言。JavaScript是一种解释性的、基于对象和事件驱动的编程语言,通常用于为网页增加交互性和动态性。它可以在网页上实现复杂的功能和效果,如表单验证、页面元素操作、动画效果、数据交互等。

5293

2023.08.17

js删除节点的方法
js删除节点的方法

js删除节点的方法有:1、removeChild()方法,用于从父节点中移除指定的子节点,它需要两个参数,第一个参数是要删除的子节点,第二个参数是父节点;2、parentNode.removeChild()方法,可以直接通过父节点调用来删除子节点;3、remove()方法,可以直接删除节点,而无需指定父节点;4、innerHTML属性,用于删除节点的内容。

478

2023.09.01

js截取字符串的方法
js截取字符串的方法

js截取字符串的方法有substring()方法、substr()方法、slice()方法、split()方法和slice()方法。本专题为大家提供字符串相关的文章、下载、课程内容,供大家免费下载体验。

212

2023.09.04

Js中concat和push的区别
Js中concat和push的区别

Js中concat和push的区别:1、concat用于将两个或多个数组合并成一个新数组,并返回这个新数组,而push用于向数组的末尾添加一个或多个元素,并返回修改后的数组的新长度;2、concat不会修改原始数组,是创建新的数组,而push会修改原数组,将新元素添加到原数组的末尾等等。本专题为大家提供concat和push相关的文章、下载、课程内容,供大家免费下载体验。

218

2023.09.14

js截取字符串的方法介绍
js截取字符串的方法介绍

JavaScript字符串截取方法,包括substring、slice、substr、charAt和split方法。这些方法可以根据具体需求,灵活地截取字符串的不同部分。在实际开发中,根据具体情况选择合适的方法进行字符串截取,能够提高代码的效率和可读性 。

218

2023.09.21

菜鸟裹裹入口以及教程汇总
菜鸟裹裹入口以及教程汇总

本专题整合了菜鸟裹裹入口地址及教程分享,阅读专题下面的文章了解更多详细内容。

0

2026.01.22

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
Git 教程
Git 教程

共21课时 | 2.9万人学习

Git版本控制工具
Git版本控制工具

共8课时 | 1.5万人学习

Git中文开发手册
Git中文开发手册

共0课时 | 0人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号