Git Product home page Git Product logo

hakucho's Introduction

hakucho

Google Drive helper methods library for Golang

How to use

c, err := NewClient("/path/to/credentials.json", "/path/to/token.json")
if err != nil {
  log.Fatalf("client init error: %s", err)
}

files, err := c.ListFiles([]string{"id", "name", "createdTime"}, 20)
if err != nil {
  log.Fatalf("list error: %s", err)
}

for _, f := range files {
  log.Printf("%s\n", f.Name)
}

Search files

files, err := c.ListFiles([]string{"id", "createdTime", "name"}, 5, option.MimeType("text/csv"), option.FullTextContains("Guitar"))
if err != nil {
  log.Printf("Failed to get list of files: %s", err)
}

for i, f := range files {
  log.Printf("File %02d: %s(%s)\n", i, f.Name, f.CreatedTime)
}

Available fields

https://developers.google.com/drive/api/v3/reference/files

Available options

  • option.OnlyFolders()
  • option.ParentFolder("parent folder id")
  • option.ParentIn("some folder 1", "some folder 2")
  • option.NameContains("memo")
  • option.FullTextContains("memo")
  • option.MimeType("text/csv")
  • option.OrderBy("createdTime")

Upload File

// File will be created in root folder
uploadedFile, err := c.UploadFile("/path/to/file", "sample.txt")

// File will be created under selected folder
uploadedFile, err := c.UploadFileToFolder("/path/to/file", "sample.txt", "parent folder id")

Grant permission to user

// User can read the file
err := c.GrantUserReaderPemission(uploadedFile.Id, "[email protected]", false)

// User can read & write the file
err := c.GrantUserWriterPemission(uploadedFile.Id, "[email protected]", false)

Delete File

err = c.DeleteFile(uploadedFile.Id)

Create Folder

// Folder will be created in root folder
folder, err := c.CreateFolder("folder 1")

// Folder will be created under selected folder
folder, err := c.CreateSubFolder(parentFolder.Id, "folder 1")

hakucho's People

Contributors

yokoe avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.