Golang HTTP使用tusd仅将元数据上传到S3

时间:2019-03-16 18:07:59

标签: go amazon-s3 upload tus

我正在使用tusd库将文件直接上传到Go中的S3。尽管tusd上载了两个文件,一个.info元数据文件和一个.bin实际内容文件,但似乎可以正常工作。由于某种原因,我的代码仅上传信息文件。 该文档非常难以浏览,因此也许我错过了某个地方的设置

Code as gist to show both the server and the client code.

1 个答案:

答案 0 :(得分:3)

这里有多个问题。

您的图谱库导入路径错误,应该是:

    "github.com/tus/tusd/pkg/handler"
    "github.com/tus/tusd/pkg/s3store"

您不会正确使用S3存储,而是将配置设置为直接在服务器上存储

fStore := filestore.FileStore{
        Path: "./uploads",
    }

相反应该是这样:

// S3 acces configuration
 s3Config := &aws.Config{
     Region:      aws.String(os.Getenv("AWS_REGION")),
     Credentials: credentials.NewStaticCredentials(os.Getenv("AWS_ACCESS_KEY_ID"), os.Getenv("AWS_SECRET_ACCESS_KEY"), ""),
     DisableSSL:       aws.Bool(true),
     S3ForcePathStyle: aws.Bool(true),
 }

// Setting up the s3 storage
 s3Store := s3store.New(os.Getenv("AWS_BUCKET_NAME"), s3.New(session.Must(session.NewSession()), s3Config))

// Creates a new and empty store composer   
 composer := handler.NewStoreComposer()
// UseIn sets this store as the core data store in the passed composer and adds all possible extension to it.
 s3Store.UseIn(composer)

// Setting up handler
 handler, err := handler.NewHandler(handler.Config{
     BasePath:                "/files/",
     StoreComposer:           composer,
 })
 if err != nil {
     panic(fmt.Errorf("Unable to create handler: %s", err))
 }

// Listen and serve
 http.Handle("/files/", http.StripPrefix("/files/", handler))
 err = http.ListenAndServe(":8080", nil)
 if err != nil {
     panic(fmt.Errorf("Unable to listen: %s", err))
 }

您的客户可能也无法正常工作(我没有对其进行测试)。

我建议您使用https://github.com/eventials/go-tus而不是尝试自己实现协议。