Created
June 3, 2012 02:48
-
-
Save minikomi/2861097 to your computer and use it in GitHub Desktop.
Golang script for creating anonymous gists with github API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"encoding/json" | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"strings" | |
) | |
//flags | |
var ( | |
publicFlag bool | |
descriptionFlag string | |
responseObj map[string]interface{} | |
) | |
//types | |
type GistFile struct { | |
Content string `json:"content"` | |
} | |
type Gist struct { | |
Description string `json:"description"` | |
Public bool `json:"public"` | |
Files map[string]GistFile `json:"files"` | |
} | |
func main() { | |
flag.BoolVar(&publicFlag, "p", true, "Set to false for private gist.") | |
flag.StringVar(&descriptionFlag, "d", "", "Description for gist.") | |
flag.Parse() | |
filenames := flag.Args() | |
if len(filenames) == 0 { | |
log.Fatal("Error: No files specified.") | |
} | |
fmt.Println(filenames) | |
files := map[string]GistFile{} | |
for _, filename := range filenames { | |
fmt.Println("Checking file:", filename) | |
content, err := ioutil.ReadFile(filename) | |
if err != nil { | |
log.Fatal("File Error: ", err) | |
} | |
files[filename] = GistFile{string(content)} | |
} | |
if descriptionFlag == "" { | |
descriptionFlag = strings.Join(filenames, ", ") | |
} | |
gist := Gist{ | |
descriptionFlag, | |
publicFlag, | |
files, | |
} | |
b, err := json.Marshal(gist) | |
if err != nil { | |
log.Fatal("JSON Error: ", err) | |
} | |
fmt.Println("OK") | |
br := bytes.NewBuffer(b) | |
fmt.Println("Uploading.") | |
resp, err := http.Post("https://api.github.com/gists", "application/json", br) | |
if err != nil { | |
log.Fatal("HTTP Error: ", err) | |
} | |
err = json.NewDecoder(resp.Body).Decode(&responseObj) | |
if err != nil { | |
log.Fatal("Response JSON Error: ", err) | |
} | |
fmt.Println("--- URL for gist ---") | |
fmt.Println(responseObj["html_url"]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment