Skip to content
This repository has been archived by the owner on Jul 14, 2022. It is now read-only.

Commit

Permalink
🔀Send Method added | Merge pull request #4 from athul/test
Browse files Browse the repository at this point in the history
🌱 New Send Feature
  • Loading branch information
athul committed Jan 31, 2020
2 parents f2c8af7 + a3bb359 commit 347dbbb
Show file tree
Hide file tree
Showing 3 changed files with 163 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@

# End of https://www.gitignore.io/api/go,visualstudiocode
docs.md
.DS_Store
17 changes: 16 additions & 1 deletion cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,13 @@ func main() {
Usage: "Body of the Post Request",
},
}

sendFlag := []cli.Flag{
cli.StringFlag{
Name: "pt",
Usage: "The Path of Postwoman Collection.json",
Required: true,
},
}
app.Commands = []cli.Command{
{
Name: "get",
Expand Down Expand Up @@ -111,6 +117,15 @@ func main() {
return nil
},
},
{
Name: "send",
Usage: "Test all the Endpoints in the Postwoman Collection.json",
Flags: sendFlag,
Action: func(c *cli.Context) error {
mets.ReadCollection(c)
return nil
},
},
}
err := app.Run(os.Args)
if err != nil {
Expand Down
146 changes: 146 additions & 0 deletions methods/json.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
package methods

import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"

"github.com/fatih/color"
"github.com/urfave/cli"
)

//Colls hold the format of the basic `postwoman-collection.json`
type Colls struct {
Name string `json:"name"`
Folders []string `json:"folders"`
Request []Reqdata `json:"requests"`
}

//Reqdata hold the format of the request part in `postwoman-collection.json`
type Reqdata struct {
URL string `json:"url"`
Path string `json:"path"`
Method string `json:"method"`
Auth string `json:"auth"`
User string `json:"httpUser"`
Pass string `json:"httpPassword"`
Token string `json:"bearerToken"`
Ctype string `json:"contentType"`
Heads []string `json:"headers"`
Params []string `json:"params"`
Bparams []Bpardata `json:"bodyParams"`
}

//Bpardata hold the format of the bodyParams of `postwoman-collection.json`
type Bpardata struct {
Key string `json:"key"`
Value string `json:"value"`
}

//ReadCollection reads the PostWoman Collection Json File and does the Magic Stuff
func ReadCollection(c *cli.Context) {
data, err := ioutil.ReadFile(c.String("pt"))
if err != nil {
fmt.Print(err)
}
//fmt.Print(string(data))
jsondat := []Colls{}

err = json.Unmarshal([]byte(data), &jsondat)
if err != nil {
fmt.Println(err)
}
for i := 0; i < len(jsondat[0].Request); i++ {
/* fmt.Printf(`
URL: %s
Method: %s
Auth: %s
Token:%s
Headers: %s
-------`, jsondat[0].Request[i].URL+jsondat[0].Request[i].Path, jsondat[0].Request[i].Method, jsondat[0].Request[i].Auth, jsondat[0].Request[i].Token, jsondat[0].Request[i].Heads) */
request(jsondat, i)
}

}
func request(c []Colls, i int) {
colors := color.New(color.FgHiRed, color.Bold)
if c[0].Request[i].Method == "GET" {
out, err := getsend(c, i, "GET")
if err != nil {
fmt.Print(err)
}
methods := color.HiYellowString(c[0].Request[i].Method)
fURL := colors.Sprintf(c[0].Request[i].URL + c[0].Request[i].Path)
fmt.Printf("%s \t%s\t%s", fURL, methods, out)
} else {
out, err := sendpopa(c, i, c[0].Request[i].Method)
if err != nil {
fmt.Print(err)
}
methods := color.HiYellowString(c[0].Request[i].Method)
fURL := colors.Sprintf(c[0].Request[i].URL + c[0].Request[i].Path)
fmt.Printf("%s \t%s\t%s", fURL, methods, out)
}

}
func getsend(c []Colls, ind int, method string) (string, error) {
color := color.New(color.FgCyan, color.Bold)
var url = c[0].Request[ind].URL + c[0].Request[ind].Path
req, err := http.NewRequest(method, url, nil)
if err != nil {
return "", err
}
if c[0].Request[ind].Token != "" {
var bearer = "Bearer " + c[0].Request[ind].Token
req.Header.Add("Authorization", bearer)
}
if c[0].Request[ind].User != "" && c[0].Request[ind].Pass != "" {
un := c[0].Request[ind].User
pw := c[0].Request[ind].Pass
req.Header.Add("Authorization", "Basic "+basicAuth(un, pw))
}
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
log.Println("Error on response.\n[ERRO] -", err)
}
defer resp.Body.Close()
//fmt.Print(resp.Header)
s := color.Sprintf("Status: %s\tStatusCode:\t%d\n", resp.Status, resp.StatusCode)
return s, nil
}

func sendpopa(c []Colls, ind int, method string) (string, error) {
color := color.New(color.FgCyan, color.Bold)

var url = c[0].Request[ind].URL + c[0].Request[ind].Path
var jsonStr = []byte(string(c[0].Request[ind].Bparams[0].Key[0] + c[0].Request[ind].Bparams[0].Value[0]))

req, err := http.NewRequest(method, url, bytes.NewBuffer(jsonStr))
req.Header.Set("Content-Type", c[0].Request[ind].Ctype)
if err != nil {
return "", err
}
if c[0].Request[ind].Token != "" {
var bearer = "Bearer " + c[0].Request[ind].Token
req.Header.Add("Authorization", bearer)
}
if c[0].Request[ind].User != "" && c[0].Request[ind].Pass != "" {
un := c[0].Request[ind].User
pw := c[0].Request[ind].Pass
req.Header.Add("Authorization", "Basic "+basicAuth(un, pw))
}
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
log.Println("Error on response.\n[ERRO] -", err)
}
defer resp.Body.Close()
//fmt.Print(resp.Header)
s := color.Sprintf("Status: %s\tStatusCode:\t%d\n", resp.Status, resp.StatusCode)
return s, nil

}

0 comments on commit 347dbbb

Please sign in to comment.