Documentation ¶
Index ¶
- type Driver
- func (handler Driver) CORS() error
- func (handler Driver) Delete(ctx context.Context, files []string) ([]string, error)
- func (handler Driver) Get(ctx context.Context, path string) (response.RSCloser, error)
- func (handler *Driver) InitS3Client() error
- func (handler Driver) List(ctx context.Context, base string, recursive bool) ([]response.Object, error)
- func (handler Driver) Meta(ctx context.Context, path string) (*MetaData, error)
- func (handler Driver) Put(ctx context.Context, file io.ReadCloser, dst string, size uint64) error
- func (handler Driver) Source(ctx context.Context, path string, baseURL url.URL, ttl int64, isDownload bool, ...) (string, error)
- func (handler Driver) Thumb(ctx context.Context, path string) (*response.ContentResponse, error)
- func (handler Driver) Token(ctx context.Context, TTL int64, key string) (serializer.UploadCredential, error)
- type MetaData
- type UploadPolicy
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Driver ¶
Driver 适配器模板
func (Driver) List ¶
func (handler Driver) List(ctx context.Context, base string, recursive bool) ([]response.Object, error)
List 列出给定路径下的文件
func (Driver) Source ¶
func (handler Driver) Source( ctx context.Context, path string, baseURL url.URL, ttl int64, isDownload bool, speed int, ) (string, error)
Source 获取外链URL
func (Driver) Token ¶
func (handler Driver) Token(ctx context.Context, TTL int64, key string) (serializer.UploadCredential, error)
Token 获取上传策略和认证Token
type UploadPolicy ¶
type UploadPolicy struct { Expiration string `json:"expiration"` Conditions []interface{} `json:"conditions"` }
UploadPolicy S3上传策略
Click to show internal directories.
Click to hide internal directories.