-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrest.go
340 lines (257 loc) · 7.74 KB
/
rest.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/*
Author: ElectronSz
Github: https://github.com/ElectronSz
Date: 2019-11-23
*/
package main
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"github.com/gorilla/mux"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
var client *mongo.Client
type todo struct {
ID string `json:"ID"`
Title string `json:"Title"`
Description string `json:"Description"`
Status bool `json:"Status"`
}
type allTodos []todo
var todos = allTodos{}
func createTodo(w http.ResponseWriter, r *http.Request) {
// credential := options.Credential{
// Username: "api",
// Password: "api1008",
// }
clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:27017")
// Connect to MongoDB
client, err := mongo.Connect(context.TODO(), clientOptions)
if err != nil {
log.Fatal(err)
}
// Check the connection
err = client.Ping(context.TODO(), nil)
if err != nil {
log.Fatal(err)
}
fmt.Println("Connected to MongoDB!")
collection := client.Database("Api").Collection("todos")
var newTodo todo
//reuest body and error
reqBody, err := ioutil.ReadAll(r.Body)
//check if we have an error
if err != nil {
fmt.Fprintf(w, "Kindly enter data with the event title and description only in order to update")
}
json.Unmarshal(reqBody, &newTodo)
av := newTodo
insertResult, err := collection.InsertOne(context.TODO(), av)
if err != nil {
log.Fatal(err)
}
fmt.Println("Inserted a single document: ", insertResult.InsertedID)
//header status['200 ok]
w.WriteHeader(http.StatusCreated)
//json response
json.NewEncoder(w).Encode(insertResult)
err = client.Disconnect(context.TODO())
if err != nil {
log.Fatal(err)
}
fmt.Println("Connection to MongoDB closed.")
}
func getOneTodo(w http.ResponseWriter, r *http.Request) {
// credential := options.Credential{
// Username: "api",
// Password: "api1008",
// }
clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:27017")
// Connect to MongoDB
client, err := mongo.Connect(context.TODO(), clientOptions)
if err != nil {
log.Fatal(err)
}
// Check the connection
err = client.Ping(context.TODO(), nil)
if err != nil {
log.Fatal(err)
}
fmt.Println("Connected to MongoDB!")
collection := client.Database("Api").Collection("todos")
/******************************************/
todoID := mux.Vars(r)["id"]
var oneTodo todo
filter := bson.D{{"id", todoID}}
err = collection.FindOne(context.TODO(), filter).Decode(&oneTodo)
if err != nil {
json.NewEncoder(w).Encode("Di not find any todo")
}
fmt.Printf("Found a single document: %+v\n", oneTodo)
json.NewEncoder(w).Encode(oneTodo)
/*******************************************************/
err = client.Disconnect(context.TODO())
if err != nil {
log.Fatal(err)
}
fmt.Println("Connection to MongoDB closed.")
}
func getAllTodos(w http.ResponseWriter, r *http.Request) {
// credential := options.Credential{
// Username: "api",
// Password: "api1008",
// }
clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:27017")
// Connect to MongoDB
client, err := mongo.Connect(context.TODO(), clientOptions)
if err != nil {
log.Fatal(err)
}
// Check the connection
err = client.Ping(context.TODO(), nil)
if err != nil {
log.Fatal(err)
}
//
fmt.Println("Connected to MongoDB!")
collection := client.Database("Api").Collection("todos")
/******************************************/
findOptions := options.Find()
//findOptions.SetLimit(2)
var results []*todo
cur, err := collection.Find(context.TODO(), bson.D{{}}, findOptions)
if err != nil {
log.Fatal(err)
}
for cur.Next(context.TODO()) {
// create a value into which the single document can be decoded
var elem todo
err := cur.Decode(&elem)
if err != nil {
log.Fatal(err)
}
results = append(results, &elem)
}
if err := cur.Err(); err != nil {
log.Fatal(err)
}
// Close the cursor once finished
cur.Close(context.TODO())
fmt.Printf("Found multiple documents (array of pointers): %+v\n", results)
json.NewEncoder(w).Encode(results)
/*******************************************************/
err = client.Disconnect(context.TODO())
if err != nil {
log.Fatal(err)
}
fmt.Println("Connection to MongoDB closed.")
}
func updateTodo(w http.ResponseWriter, r *http.Request) {
// credential := options.Credential{
// Username: "api",
// Password: "api1008",
// }
clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:27017")
// Connect to MongoDB
client, err := mongo.Connect(context.TODO(), clientOptions)
if err != nil {
log.Fatal(err)
}
// Check the connection
err = client.Ping(context.TODO(), nil)
if err != nil {
log.Fatal(err)
}
//
fmt.Println("Connected to MongoDB!")
collection := client.Database("Api").Collection("todos")
/************************************************************/
todoID := mux.Vars(r)["id"]
var updatedTodo todo
reqBody, err := ioutil.ReadAll(r.Body)
if err != nil {
fmt.Fprintf(w, "Kindly enter data with the event title and description only in order to update")
}
json.Unmarshal(reqBody, &updatedTodo)
//opts := options.Update().SetUpsert(true)
filter := bson.D{{"id", todoID}}
update := bson.D{{"$set", bson.D{{"title", updatedTodo.Title}, {"description", updatedTodo.Description}, {"status", updatedTodo.Status}}}}
result, err := collection.UpdateOne(context.TODO(), filter, update)
if err != nil {
log.Fatal(err)
}
if result.MatchedCount != 0 {
fmt.Println("matched and replaced an existing document with ID %v\n", result.ModifiedCount)
json.NewEncoder(w).Encode(result)
return
}
if result.UpsertedCount != 0 {
fmt.Printf("inserted a new document with ID %v\n", result.UpsertedID)
json.NewEncoder(w).Encode(result)
}
if result.MatchedCount == 0 {
fmt.Printf("We can not find that document yur want to update=> Result: %v\n", result.MatchedCount)
json.NewEncoder(w).Encode(result)
}
/*******************************************************/
err = client.Disconnect(context.TODO())
if err != nil {
log.Fatal(err)
}
fmt.Println("Connection to MongoDB closed.")
}
func deleteTodo(w http.ResponseWriter, r *http.Request) {
// credential := options.Credential{
// Username: "api",
// Password: "api1008",
// }
// clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:27017").SetAuth(credential)
clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:27017")
// Connect to MongoDB
client, err := mongo.Connect(context.TODO(), clientOptions)
if err != nil {
log.Fatal(err)
}
// Check the connection
err = client.Ping(context.TODO(), nil)
if err != nil {
log.Fatal(err)
}
//
fmt.Println("Connected to MongoDB!")
collection := client.Database("Api").Collection("todos")
/******************************************/
todoID := mux.Vars(r)["id"]
filter := bson.D{{"id", todoID}}
deleteResult, err := collection.DeleteOne(context.TODO(), filter)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Deleted %v documents in the events collection\n", deleteResult.DeletedCount)
json.NewEncoder(w).Encode(deleteResult)
/*******************************************************/
err = client.Disconnect(context.TODO())
if err != nil {
log.Fatal(err)
}
fmt.Println("Connection to MongoDB closed.")
}
func homeLink(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Welcome home!")
}
func main() {
router := mux.NewRouter().StrictSlash(true)
router.HandleFunc("/", homeLink)
router.HandleFunc("/todo", createTodo).Methods("POST")
router.HandleFunc("/todos", getAllTodos).Methods("GET")
router.HandleFunc("/todos/{id}", getOneTodo).Methods("GET")
router.HandleFunc("/todos/{id}", updateTodo).Methods("PATCH")
router.HandleFunc("/todos/{id}", deleteTodo).Methods("DELETE")
log.Fatal(http.ListenAndServe(":8081", router))
}