-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibs3git.go
231 lines (174 loc) · 4.31 KB
/
libs3git.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/*
* Copyright 2016 Frank Wessels <fwessels@xs4all.nl>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package main
import (
"C"
"os"
"strings"
"io"
"io/ioutil"
"github.com/s3git/s3git-go"
"encoding/json"
)
//export s3git_init_repository
func s3git_init_repository(path *C.char) int {
_, err := s3git.InitRepository(C.GoString(path))
if err != nil {
return -1
}
return 0
}
//export s3git_open_repository
func s3git_open_repository(path *C.char) int {
_, err := s3git.OpenRepository(C.GoString(path))
if err != nil {
return -1
}
return 0
}
//export s3git_clone
func s3git_clone(url, path, accessKey, secretKey *C.char) int {
options := []s3git.CloneOptions{}
if access := C.GoString(accessKey); access != "" {
options = append(options, s3git.CloneOptionSetAccessKey(access))
}
if secret := C.GoString(secretKey); secret != "" {
options = append(options, s3git.CloneOptionSetSecretKey(secret))
}
_, err := s3git.Clone(C.GoString(url), C.GoString(path), options...)
if err != nil {
return -1
}
return 0
}
//export s3git_add
func s3git_add(path, filename *C.char) *C.char {
repo, err := s3git.OpenRepository(C.GoString(path))
if err != nil {
return C.CString("")
}
file, err := os.Open(C.GoString(filename))
if err != nil {
return C.CString("")
}
key, _, err := repo.Add(file)
if err != nil {
return C.CString("")
}
return C.CString(key)
}
//export s3git_commit
func s3git_commit(path, message *C.char) int {
repo, err := s3git.OpenRepository(C.GoString(path))
if err != nil {
return -1
}
repo.Commit(C.GoString(message))
return 0
}
//export s3git_get
func s3git_get(path, hash *C.char) *C.char {
repo, err := s3git.OpenRepository(C.GoString(path))
if err != nil {
return C.CString("")
}
r, err := repo.Get(C.GoString(hash))
if err != nil {
return C.CString("")
}
// TODO: Return stream directly instead of using temp file (and prevent dangling file)
tmpfile, err := ioutil.TempFile("", "s3git")
if err != nil {
return C.CString("")
}
io.Copy(tmpfile, r)
if err := tmpfile.Close(); err != nil {
return C.CString("")
}
return C.CString(tmpfile.Name())
}
//export s3git_push
func s3git_push(path *C.char, hydrate bool) int {
repo, err := s3git.OpenRepository(C.GoString(path))
if err != nil {
return -1
}
repo.Push(hydrate, func(total int64) {})
return 0
}
//export s3git_pull
func s3git_pull(path *C.char) int {
repo, err := s3git.OpenRepository(C.GoString(path))
if err != nil {
return -1
}
repo.Pull(func(total int64) {})
return 0
}
//export s3git_list
func s3git_list(path, hash *C.char) *C.char {
repo, err := s3git.OpenRepository(C.GoString(path))
if err != nil {
return C.CString("")
}
list, _ := repo.List(C.GoString(hash))
response := []string{}
count := 0
for l := range list {
response = append(response, l)
count++
if count > 1000 {
break
}
}
return C.CString(strings.Join(response, ","))
}
//export s3git_list_commits
func s3git_list_commits(path *C.char) *C.char {
repo, err := s3git.OpenRepository(C.GoString(path))
if err != nil {
return C.CString("")
}
list, _ := repo.ListCommits("")
result := []s3git.Commit{}
count := 0
for l := range list {
result = append(result, l)
count++
if count > 1000 {
break
}
}
b, err := json.Marshal(result)
return C.CString(string(b))
}
//export s3git_remote_add
func s3git_remote_add(path, name, resource, accessKey, secretKey, endpoint *C.char) int {
repo, err := s3git.OpenRepository(C.GoString(path))
if err != nil {
return -1
}
options := []s3git.RemoteOptions{}
if ep := C.GoString(endpoint); ep != "" {
options = append(options, s3git.RemoteOptionSetEndpoint(ep))
}
err = repo.RemoteAdd(C.GoString(name), C.GoString(resource), C.GoString(accessKey), C.GoString(secretKey), options...)
if err != nil {
return -1
}
return 0
}
func main() {}