Documentation
¶
Index ¶
- Constants
- type Addition
- type Error
- type File
- type Files
- type GoogleDrive
- func (d *GoogleDrive) Config() driver.Config
- func (d *GoogleDrive) Copy(ctx context.Context, srcObj, dstDir model.Obj) error
- func (d *GoogleDrive) Drop(ctx context.Context) error
- func (d *GoogleDrive) GetAddition() driver.Additional
- func (d *GoogleDrive) GetInfo(ctx context.Context) (string, string, string, error)
- func (d *GoogleDrive) GetUserInfo(ctx context.Context) (string, error)
- func (d *GoogleDrive) Init(ctx context.Context) error
- func (d *GoogleDrive) Link(ctx context.Context, file model.Obj, args model.LinkArgs) (*model.Link, error)
- func (d *GoogleDrive) List(ctx context.Context, dir model.Obj, args model.ListArgs) ([]model.Obj, error)
- func (d *GoogleDrive) MakeDir(ctx context.Context, parentDir model.Obj, dirName string) error
- func (d *GoogleDrive) Move(ctx context.Context, srcObj, dstDir model.Obj) error
- func (d *GoogleDrive) Put(ctx context.Context, dstDir model.Obj, stream model.FileStreamer, ...) error
- func (d *GoogleDrive) Remove(ctx context.Context, obj model.Obj) error
- func (d *GoogleDrive) Rename(ctx context.Context, srcObj model.Obj, newName string) error
- type TokenError
- type UserInfo
Constants ¶
View Source
const ICONURL = "./img/driver/GoogleDrive.svg"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Addition ¶
type Addition struct {
driver.RootID
RefreshToken string `json:"refresh_token" required:"true" omit:"true"`
OrderBy string `json:"order_by" type:"string" help:"such as: folder,name,modifiedTime" omit:"true"`
OrderDirection string `json:"order_direction" type:"select" options:"asc,desc" omit:"true"`
ClientID string `json:"client_id" required:"true" default:"" omit:"true"`
ClientSecret string `json:"client_secret" required:"true" default:"" omit:"true"`
ChunkSize int64 `json:"chunk_size" type:"number" help:"chunk size while uploading (unit: MB)" omit:"true"`
AuthUrl string `json:"auth_url" type:"string" default:""`
Icon string `json:"icon" type:"string" default:"./img/driver/GoogleDrive.svg"`
Code string `json:"code" type:"string" help:"code from auth_url" omit:"true"`
}
type File ¶
type File struct {
Id string `json:"id"`
Name string `json:"name"`
MimeType string `json:"mimeType"`
ModifiedTime time.Time `json:"modifiedTime"`
Size string `json:"size"`
ThumbnailLink string `json:"thumbnailLink"`
ShortcutDetails struct {
TargetId string `json:"targetId"`
TargetMimeType string `json:"targetMimeType"`
} `json:"shortcutDetails"`
}
type GoogleDrive ¶
func GetConfig ¶ added in v0.4.5
func GetConfig() GoogleDrive
func (*GoogleDrive) Config ¶
func (d *GoogleDrive) Config() driver.Config
func (*GoogleDrive) GetAddition ¶
func (d *GoogleDrive) GetAddition() driver.Additional
func (*GoogleDrive) GetUserInfo ¶
func (d *GoogleDrive) GetUserInfo(ctx context.Context) (string, error)
func (*GoogleDrive) Put ¶
func (d *GoogleDrive) Put(ctx context.Context, dstDir model.Obj, stream model.FileStreamer, up driver.UpdateProgress) error
type TokenError ¶
Click to show internal directories.
Click to hide internal directories.