forked from subosito/iglo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparser.go
49 lines (39 loc) · 811 Bytes
/
parser.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package iglo
import (
"encoding/json"
"errors"
"io"
"io/ioutil"
"os/exec"
)
func ParseJSON(r io.Reader) (*API, error) {
b, err := ioutil.ReadAll(r)
if err != nil {
return nil, err
}
api := new(API)
err = json.Unmarshal(b, &api)
if err != nil {
return nil, err
}
return api, nil
}
func ParseMarkdown(r io.Reader) ([]byte, error) {
path, err := exec.LookPath("snowcrash")
if err != nil {
return nil, errors.New("Couldn't find snowcrash. Please install it first https://github.com/apiaryio/snowcrash")
}
b, err := ioutil.ReadAll(r)
if err != nil {
return nil, err
}
echo := exec.Command("echo", string(b))
out, err := echo.StdoutPipe()
if err != nil {
return nil, err
}
echo.Start()
cmd := exec.Command(path, "--format", "json")
cmd.Stdin = out
return cmd.Output()
}