-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapi.go
123 lines (106 loc) · 2.83 KB
/
api.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package main
import (
"flag"
"github.com/go-martini/martini"
"github.com/martini-contrib/cors"
"github.com/martini-contrib/render"
"github.com/skurtzemann/go-openvpn-api/vpn"
"io/ioutil"
"os"
)
const (
ApiName = "go-openvpn-api"
ApiVersion = "1.0.0"
)
// General function which walk into the config directory and process the given callback
func EachConfig(directory string, callback func(os.FileInfo) bool) (err error) {
if files, err := ioutil.ReadDir(directory); err == nil {
for _, file := range files {
if !file.IsDir() {
if !callback(file) {
break
}
}
}
}
return err
}
// Returns a list of files into the OpenVPN client config dir
func ListConfigNames(directory string) (users []string, err error) {
err = EachConfig(directory, func(file os.FileInfo) bool {
users = append(users, file.Name())
return true
})
return
}
// Returns a list of the all users informations
func ListConfigs(directory string) (users []vpn.VpnUser, err error) {
err = EachConfig(directory, func(file os.FileInfo) bool {
user := vpn.VpnUser{file.Name(), true, "", ""}
if err = user.ParseConfigFile(directory + "/" + file.Name()); nil == err {
users = append(users, user)
}
return nil == err
})
return
}
func main() {
// params
ccdDir := flag.String("ccddir", "./ccd", "openvpn's client config dir")
flag.Parse()
m := martini.Classic()
m.Use(render.Renderer(render.Options{
IndentJSON: true,
}))
m.Use(cors.Allow(&cors.Options{
AllowOrigins: []string{"*"},
AllowMethods: []string{"GET"},
AllowHeaders: []string{"Origin"},
ExposeHeaders: []string{"Content-Length"},
AllowCredentials: true,
}))
// The default page return the name and the version of the api
m.Get("/", func() string {
return ApiName + " (" + ApiVersion + ")"
})
// Health of the API : for the moment return "true"
m.Get("/_ping", func() string {
return "true"
})
// Get all users
m.Get("/v1/users", func(r render.Render) {
users, err := ListConfigNames(*ccdDir)
if err != nil {
r.JSON(404, map[string]string{
"error": "OpenVPN client configuration directory not found",
})
} else {
r.JSON(200, users)
}
})
// Get all users with the full details of them
m.Get("/v1/users/_full", func(r render.Render) {
users, err := ListConfigs(*ccdDir)
if err != nil {
r.JSON(404, map[string]string{
"error": "OpenVPN client configuration directory not found",
})
} else {
r.JSON(200, users)
}
})
// Get the configuration of the given user
m.Get("/v1/users/:user", func(r render.Render, params martini.Params) {
userConfigFile := *ccdDir + "/" + params["user"]
user := vpn.VpnUser{params["user"], true, "", ""}
err := user.ParseConfigFile(userConfigFile)
if err != nil {
r.JSON(404, map[string]string{
"error": "User retrieve error",
})
} else {
r.JSON(200, user)
}
})
m.Run()
}