Nestjs+minio 上传下载删除文件

本文介绍如何结合Nestjs和Minio实现文件的上传、下载、删除和获取文件列表功能。详细讲解了创建user和picture实体的关联,通过TypeORM和Minio SDK操作数据库和文件存储,以及涉及的用户权限验证。提供了完整代码示例和测试结果。
摘要由CSDN通过智能技术生成

前言

基于上一遍讲了如何利用nestjs 搭建一个restful风格的后端,现在接着讲如何结合minio实现文件的上传和下载。
文中涉及到的minio 知识点参考https://blog.csdn.net/zw52yany/article/details/101217708这遍文章

完整代码请看 https://github.com/zw-slime/book-be

上传

1. 创建user和picture 实体以及关联关系

user和picture是一对多的关系,利用TypeORM的ManyToOne JoinColumn 建立两个变直接的映射关系

@Entity()
export class PictureEntity {
   
  @PrimaryGeneratedColumn()
  id: number;

  @ManyToOne(type => UserEntity, user => user.pictures)
  @JoinColumn()
  owner: UserEntity;

  @Column({
   
    nullable: false,
  })
  bucketName: string;

  @Column({
   
    nullable: false,
    unique: true,
  })
  fileName: string;

  @Column({
   
    nullable: false,
  })
  fileType: string;

  @Column({
   
    default: '',
  })
  originName: string;

  @Column({
   
    default: false,
  })
  isPublic: boolean;
}

@Entity({
    name: 'user' })
export class UserEntity {
   
  @PrimaryGeneratedColumn()
  id: number;

  @Column({
   
    type: 'varchar',
    length: 255,
    unique: true,
  })
  name: string;

  @Column({
   
    type: 'varchar',
    length: 255,
  })
  password: string;

  @Column({
   
    type: 'varchar',
    length: 255,
  })
  email: string;

  @Column({
   
    type: 'varchar',
    length: 255,
  })
  salt: string;

  @Column({
   
    name: 'create_at',
    type: 'timestamp',
    onUpdate: 'CURRENT_TIMESTAMP',
  })
  createAt: Date;

  @OneToMany(type => PictureEntity, picture => picture.owner)
  pictures: PictureEntity[];
}

具体形成的数据库表如下:
在这里插入图片描述
在这里插入图片描述

2. controller定义api

(1)FileInterceptor绑定上传的文件字段,然后通过@UploadedFile() file 可以获得file
(2)利用hash 生成文件名,在利用minio提供的sdk putObject 上传到minio服务器上
(3)最后利用typeOrm提供的方法上传到数据库
controller的代码如下:

@
NestJS是一个基于Node.js的开发框架,它提供了许多有用的功能和工具,其中包括对Minio的支持。Minio是一个开源的对象存储服务器,它兼容Amazon S3 API,可以用于存储和检索大量数据。在NestJS中引入Minio可以通过安装minio-js库来实现。在NestJS中使用Minio需要创建一个MinioService类,该类需要使用minio-js库中的Minio.Client类来连接到Minio服务器。在MinioService类中,可以使用putObject方法将文件上传到Minio服务器。在上传文件之前,需要对已有的文件进行判断是否有相同文件名(或者使用时间戳),如果有重名的文件会对其进行覆盖操作。下面是一个示例代码,用于在NestJS中引入Minio: // minio.service.ts import { Injectable } from "@nestjs/common"; import * as Minio from "minio"; @Injectable() export class MinioService { private readonly minioClient: Minio.Client; constructor() { this.minioClient = new Minio.Client({ // 服务ip endPoint: "192.168.18.24", // 服务端口 port: 9000, useSSL: false, accessKey: "minioadmin", secretKey: "minioadmin", }); } async uploadFile(bucketName: string, objectName: string, stream: Buffer) { const res = await this.minioClient.bucketExists(bucketName); console.log(res); console.log(objectName, stream); await this.minioClient.putObject( bucketName, objectName, stream, function (e) { if (e) { console.log(e); return "error"; } else { // 如果重名也会成功 return "Successfully uploaded the buffer"; } }, ); } } --相关问题--: 1. Minio和Amazon S3有什么区别? 2. NestJS还支持哪些对象存储服务器? 3.
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值