|
@@ -0,0 +1,395 @@
|
|
|
+
|
|
|
+
|
|
|
+Known API Commands:
|
|
|
+
|
|
|
+Login - POST http:
|
|
|
+Send Message - POST http:
|
|
|
+
|
|
|
+About Self - GET http:
|
|
|
+Guild List - GET http:
|
|
|
+Channel List - GET http:
|
|
|
+Get Messages - GET http:
|
|
|
+Get PM Channels - GET http:
|
|
|
+Get Guild Members - GET http:
|
|
|
+
|
|
|
+
|
|
|
+*/
|
|
|
+
|
|
|
+package discordgo
|
|
|
+
|
|
|
+import (
|
|
|
+ "bytes"
|
|
|
+ "encoding/json"
|
|
|
+ "errors"
|
|
|
+ "fmt"
|
|
|
+ "io/ioutil"
|
|
|
+ "net/http"
|
|
|
+ "time"
|
|
|
+)
|
|
|
+
|
|
|
+var discordUrl = "http://discordapp.com/api"
|
|
|
+
|
|
|
+type RestClient struct {
|
|
|
+ Url string
|
|
|
+ Session *Session
|
|
|
+ client *http.Client
|
|
|
+ Debug bool
|
|
|
+}
|
|
|
+
|
|
|
+type Session struct {
|
|
|
+ Id string
|
|
|
+ Email string
|
|
|
+ Password string
|
|
|
+ Token string
|
|
|
+}
|
|
|
+
|
|
|
+type Guild struct {
|
|
|
+ Afk_timeout int
|
|
|
+ Joined_at string
|
|
|
+
|
|
|
+ Id int `json:",string"`
|
|
|
+ Icon string
|
|
|
+ Name string
|
|
|
+
|
|
|
+ Region string
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ Owner_id int `json:",string"`
|
|
|
+}
|
|
|
+
|
|
|
+type Role struct {
|
|
|
+ Permissions int
|
|
|
+ Id int `json:",string"`
|
|
|
+ Name string
|
|
|
+}
|
|
|
+
|
|
|
+type Channel struct {
|
|
|
+ Guild_id int `json:",string"`
|
|
|
+ Id int `json:",string"`
|
|
|
+ Name string
|
|
|
+ Last_message_id string
|
|
|
+ Is_private string
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+type Message struct {
|
|
|
+ Attachments []Attachment
|
|
|
+ Tts bool
|
|
|
+ Embeds []Embed
|
|
|
+ Timestamp string
|
|
|
+ Mention_everyone bool
|
|
|
+ Id int `json:",string"`
|
|
|
+ Edited_timestamp string
|
|
|
+ Author *Author
|
|
|
+ Content string
|
|
|
+ Channel_id int `json:",string"`
|
|
|
+ Mentions []Mention
|
|
|
+}
|
|
|
+
|
|
|
+type Mention struct {
|
|
|
+}
|
|
|
+
|
|
|
+type Attachment struct {
|
|
|
+}
|
|
|
+
|
|
|
+type Embed struct {
|
|
|
+}
|
|
|
+
|
|
|
+type Author struct {
|
|
|
+ Username string
|
|
|
+ Discriminator int `json:",string"`
|
|
|
+ Id int `json:",string"`
|
|
|
+ Avatar string
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func Create(email string, password string) (restClient *RestClient, err error) {
|
|
|
+ if len(email) < 3 {
|
|
|
+ err = errors.New("email too short")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if len(password) < 3 {
|
|
|
+ err = errors.New("password too short")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ session := &Session{"0", email, password, ""}
|
|
|
+ httpClient := &http.Client{Timeout: (20 * time.Second)}
|
|
|
+ restClient = &RestClient{discordUrl, session, httpClient, false}
|
|
|
+ restClient.Session.Token, err = requestToken(restClient)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ restClient.Session.Id, err = requestSelf(restClient)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func requestToken(restClient *RestClient) (token string, err error) {
|
|
|
+
|
|
|
+ if restClient == nil {
|
|
|
+ err = errors.New("Empty restClient, Create() one first")
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ if restClient.Session == nil || len(restClient.Session.Email) == 0 || len(restClient.Session.Password) == 0 {
|
|
|
+ err = errors.New("Empty restClient.Session data, Create() to set email/password")
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ var urlStr string = fmt.Sprintf("%s/%s", restClient.Url, "auth/login")
|
|
|
+ req, err := http.NewRequest("POST", urlStr, bytes.NewBuffer([]byte(fmt.Sprintf(`{"email":"%s", "password":"%s"}`, restClient.Session.Email, restClient.Session.Password))))
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ req.Header.Set("Content-Type", "application/json")
|
|
|
+
|
|
|
+ resp, err := restClient.client.Do(req)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ defer resp.Body.Close()
|
|
|
+
|
|
|
+ body, _ := ioutil.ReadAll(resp.Body)
|
|
|
+ if resp.StatusCode != 200 {
|
|
|
+ err = errors.New(fmt.Sprintf("StatusCode: %d, %s", resp.StatusCode, string(body)))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ session := &Session{}
|
|
|
+
|
|
|
+ err = json.Unmarshal(body, &session)
|
|
|
+ token = session.Token
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func requestSelf(restClient *RestClient) (clientId string, err error) {
|
|
|
+
|
|
|
+ body, err := Request(restClient, fmt.Sprintf("%s/%s", restClient.Url, "users/@me"))
|
|
|
+ session := &Session{}
|
|
|
+ err = json.Unmarshal(body, &session)
|
|
|
+ clientId = session.Id
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func ListGuilds(restClient *RestClient) (guilds []Guild, err error) {
|
|
|
+
|
|
|
+ body, err := Request(restClient, fmt.Sprintf("%s/%s", restClient.Url, fmt.Sprintf("users/%s/guilds", restClient.Session.Id)))
|
|
|
+ err = json.Unmarshal(body, &guilds)
|
|
|
+
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func ListChannels(restClient *RestClient, guildId int) (channels []Channel, err error) {
|
|
|
+
|
|
|
+ body, err := Request(restClient, fmt.Sprintf("%s/%s", restClient.Url, fmt.Sprintf("guilds/%d/channels", guildId)))
|
|
|
+ err = json.Unmarshal(body, &channels)
|
|
|
+
|
|
|
+ body, err = Request(restClient, fmt.Sprintf("%s/%s", restClient.Url, fmt.Sprintf("users/@me/channels", guildId)))
|
|
|
+ err = json.Unmarshal(body, &channels)
|
|
|
+
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func GetMessages(restClient *RestClient, channelId int, before int, limit int) (messages []Message, err error) {
|
|
|
+
|
|
|
+
|
|
|
+ var urlStr = fmt.Sprintf("%s/%s", restClient.Url, fmt.Sprintf("channels/%d/messages", channelId))
|
|
|
+
|
|
|
+ if limit > 0 {
|
|
|
+ urlStr = urlStr + fmt.Sprintf("?limit=%d", limit)
|
|
|
+ } else {
|
|
|
+ urlStr = urlStr + "?limit=1"
|
|
|
+ }
|
|
|
+
|
|
|
+ if before > 0 {
|
|
|
+ urlStr = urlStr + fmt.Sprintf("&after=%d", before)
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ body, err := Request(restClient, urlStr)
|
|
|
+ err = json.Unmarshal(body, &messages)
|
|
|
+
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func CreateChannelUser(restClient *RestClient, userId int) (channelId int, err error) {
|
|
|
+
|
|
|
+ var urlStr string = fmt.Sprintf("%s/%s", restClient.Url, fmt.Sprintf("users/@me/channels"))
|
|
|
+ req, err := http.NewRequest("POST", urlStr, bytes.NewBuffer([]byte(fmt.Sprintf(`{"recipient_id":"%d"}`, userId))))
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ req.Header.Set("authorization", restClient.Session.Token)
|
|
|
+ req.Header.Set("Content-Type", "application/json")
|
|
|
+ resp, err := restClient.client.Do(req)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ body, err := ioutil.ReadAll(resp.Body)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ resp.Body.Close()
|
|
|
+
|
|
|
+ if resp.StatusCode != 200 {
|
|
|
+ err = errors.New(fmt.Sprintf("StatusCode: %d, %s", resp.StatusCode, string(body)))
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ var prettyJSON bytes.Buffer
|
|
|
+ error := json.Indent(&prettyJSON, body, "", "\t")
|
|
|
+ if error != nil {
|
|
|
+ fmt.Print("JSON parse error: ", error)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ fmt.Println(urlStr+" Response:\n", string(prettyJSON.Bytes()))
|
|
|
+
|
|
|
+
|
|
|
+ return
|
|
|
+
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func SendMessage(restClient *RestClient, channelId int, message string) (responseMessage Message, err error) {
|
|
|
+ var urlStr string = fmt.Sprintf("%s/%s", restClient.Url, fmt.Sprintf("channels/%d/messages", channelId))
|
|
|
+ req, err := http.NewRequest("POST", urlStr, bytes.NewBuffer([]byte(fmt.Sprintf(`{"content":"%s"}`, message))))
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ req.Header.Set("authorization", restClient.Session.Token)
|
|
|
+ req.Header.Set("Content-Type", "application/json")
|
|
|
+ resp, err := restClient.client.Do(req)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ body, err := ioutil.ReadAll(resp.Body)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ resp.Body.Close()
|
|
|
+
|
|
|
+ if resp.StatusCode != 200 {
|
|
|
+ err = errors.New(fmt.Sprintf("StatusCode: %d, %s", resp.StatusCode, string(body)))
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ var prettyJSON bytes.Buffer
|
|
|
+ error := json.Indent(&prettyJSON, body, "", "\t")
|
|
|
+ if error != nil {
|
|
|
+ fmt.Print("JSON parse error: ", error)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ fmt.Println(urlStr+" Response:\n", string(prettyJSON.Bytes()))
|
|
|
+
|
|
|
+ err = json.Unmarshal(body, &responseMessage)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func Close(restClient *RestClient) (err error) {
|
|
|
+ req, err := http.NewRequest("POST", fmt.Sprintf("%s/%s", restClient.Url, fmt.Sprintf("auth/logout")), bytes.NewBuffer([]byte(fmt.Sprintf(``))))
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ req.Header.Set("authorization", restClient.Session.Token)
|
|
|
+ req.Header.Set("Content-Type", "application/json")
|
|
|
+ resp, err := restClient.client.Do(req)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ body, err := ioutil.ReadAll(resp.Body)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ resp.Body.Close()
|
|
|
+
|
|
|
+ if resp.StatusCode != 204 && resp.StatusCode != 200 {
|
|
|
+ err = errors.New(fmt.Sprintf("StatusCode: %d, %s", resp.StatusCode, string(body)))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func ReadLoop(restClient *RestClient, channelId int) {
|
|
|
+
|
|
|
+ var lastMessageId int = 0
|
|
|
+
|
|
|
+ var i int = 0
|
|
|
+
|
|
|
+ for i < 1000 {
|
|
|
+
|
|
|
+ messages, err := GetMessages(restClient, channelId, lastMessageId, 10)
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println(err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ var i int = len(messages) - 1
|
|
|
+
|
|
|
+
|
|
|
+ if i > -1 {
|
|
|
+
|
|
|
+ for i >= 0 {
|
|
|
+ var message Message = messages[i]
|
|
|
+ fmt.Println("\n", message.Id, ":", message.Timestamp, ":\n", message.Author.Username, " > ", message.Content)
|
|
|
+ lastMessageId = message.Id
|
|
|
+ i--
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ time.Sleep(2000 * time.Millisecond)
|
|
|
+ i++
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func Request(restClient *RestClient, urlStr string) (body []byte, err error) {
|
|
|
+
|
|
|
+ req, err := http.NewRequest("GET", urlStr, bytes.NewBuffer([]byte(fmt.Sprintf(``))))
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ req.Header.Set("authorization", restClient.Session.Token)
|
|
|
+ req.Header.Set("Content-Type", "application/json")
|
|
|
+ resp, err := restClient.client.Do(req)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ body, err = ioutil.ReadAll(resp.Body)
|
|
|
+ resp.Body.Close()
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ if resp.StatusCode != 200 {
|
|
|
+ err = errors.New(fmt.Sprintf("StatusCode: %d, %s", resp.StatusCode, string(body)))
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ if restClient.Debug {
|
|
|
+ var prettyJSON bytes.Buffer
|
|
|
+ error := json.Indent(&prettyJSON, body, "", "\t")
|
|
|
+ if error != nil {
|
|
|
+ fmt.Print("JSON parse error: ", error)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ fmt.Println(urlStr+" Response:\n", string(prettyJSON.Bytes()))
|
|
|
+ }
|
|
|
+ return
|
|
|
+}
|