56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"git.dragse.it/anthrove/e621-sdk-go/pkg/e621/builder"
|
||
|
"git.dragse.it/anthrove/e621-sdk-go/pkg/e621/model"
|
||
|
"log"
|
||
|
"net/http"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
// Define the request context with essential information.
|
||
|
requestContext := model.RequestContext{
|
||
|
Client: http.Client{},
|
||
|
Host: "https://e621.net",
|
||
|
UserAgent: "Go-e621-SDK (@username)",
|
||
|
Username: os.Getenv("API_USER"), // Replace with your username
|
||
|
APIKey: os.Getenv("API_KEY"), // Replace with your API key
|
||
|
}
|
||
|
|
||
|
log.Println("Getting a list of DB Exports: ")
|
||
|
getDBExportList := builder.NewGetDBExportListBuilder(requestContext)
|
||
|
dbExportFiles, err := getDBExportList.Execute()
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
log.Printf("%d files found", len(dbExportFiles))
|
||
|
for _, v := range dbExportFiles {
|
||
|
log.Printf("File found: %s", v)
|
||
|
}
|
||
|
|
||
|
log.Println(dbExportFiles)
|
||
|
|
||
|
exportFileName := dbExportFiles[0]
|
||
|
log.Println("Downloading DB export")
|
||
|
log.Printf("File to download: %s", exportFileName)
|
||
|
getDBExportFile := builder.NewGetDBExportFileBuilder(requestContext)
|
||
|
|
||
|
rawFile, err := getDBExportFile.SetFile(exportFileName).Execute()
|
||
|
|
||
|
file, err := os.Create(exportFileName)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
defer file.Close()
|
||
|
|
||
|
err = os.WriteFile(exportFileName, rawFile, 0644)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
log.Printf("File %s downloaded", exportFileName)
|
||
|
|
||
|
}
|