This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
e621-sdk-go/example/lowlevel/dmail.go

82 lines
2.0 KiB
Go

package main
import (
"git.dragse.it/anthrove/e621-sdk-go/pkg/e621/endpoints"
"git.dragse.it/anthrove/e621-sdk-go/pkg/e621/model"
_ "github.com/joho/godotenv/autoload"
"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: Getting a single post.
log.Println("Getting single dm: ")
// Specify the post ID for retrieval.
dMailID := 2062973 // Replace with the desired post's ID.
// Call the GetPost function to retrieve the specified post.
dmail, err := endpoints.GetDmail(requestContext, dMailID)
if err != nil {
log.Println(err)
} else {
// Log the URL of the retrieved post.
log.Println(dmail.Body)
}
log.Println("----------")
// Log: Getting a list of posts.
log.Println("Getting a list of posts: ")
// Define query parameters for retrieving a list of posts.
query := map[string]string{
"title_matches": "test",
}
// Call the GetPosts function to retrieve a list of posts based on the query parameters.
posts, err := endpoints.GetDmails(requestContext, query)
if err != nil {
log.Println(err)
} else {
// Log the number of posts retrieved.
log.Println(posts[0].Body)
}
log.Println("----------")
log.Println("Mark all DMails as read: ")
// Call the ReadAllDmails function to set all DMails as read.
err = endpoints.ReadAllDmails(requestContext)
if err != nil {
log.Println(err)
} else {
log.Println("read all posts")
}
log.Println("----------")
log.Println("Delete all DMails as read: ")
// Call the ReadAllDmails function to set all DMails as read.
err = endpoints.DeleateDmail(requestContext, dMailID)
if err != nil {
log.Println(err)
} else {
log.Println("DMail deleted")
}
log.Println("----------")
}