Create basic ActivityPub inspector utility

Prints AP information for a given URL.
This commit is contained in:
Matt Baer 2022-04-28 22:22:23 -04:00
commit b5047f2607
2 changed files with 52 additions and 0 deletions

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module code.as/matt/ap-inspect
go 1.18

49
main.go Normal file
View File

@ -0,0 +1,49 @@
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
)
func main() {
if len(os.Args) < 2 {
log.Fatalln("usage: ap-inspect BLOG-URL")
}
blogURL := os.Args[1]
// Set up request
req, err := http.NewRequest("GET", blogURL, nil)
if err != nil {
log.Fatalln(err)
}
req.Header.Set("Accept", "application/activity+json")
// Send request
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
log.Fatalln(err)
}
if resp != nil && resp.Body != nil {
defer resp.Body.Close()
}
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
log.Fatalln(err)
}
fmt.Printf("Status : %s\n", resp.Status)
// Pretty-print the response
var fmttd bytes.Buffer
err = json.Indent(&fmttd, body, "", " ")
if err != nil {
log.Fatalln(err)
}
fmt.Printf("Response:\n%s\n", fmttd.String())
}