-
Notifications
You must be signed in to change notification settings - Fork 0
/
ejercicio.go
46 lines (34 loc) · 867 Bytes
/
ejercicio.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
// Autor: Javier Gonzalez
// Fecha 20-11-2017
// email: [email protected]
package main
import (
"net/http"
"github.com/gin-gonic/gin"
"github.com/mobilejavierg/clientapi"
"google.golang.org/appengine"
)
//funcion init requerida por appengine
func init() {
r := gin.New()
v1 := r.Group("/categories")
{
v1.GET("/:id/prices", getPrices)
}
//tengo que usar http.Handle para acoplarme al appengine
http.Handle("/", r)
//r.run genera conflictos con appengine
//r.Run(":8080")
}
func main() {
//requerido por appengine
appengine.Main()
}
//proceso el GET del APIRest
func getPrices(c *gin.Context) {
//obtengo el ID de la Categoria
id := c.Params.ByName("id")
//debo enviar el objeto "c.Request" por requerimientos del appengine, al realizar GET's a una URL externa
resp := clientApi.Analize_data(id, c.Request)
c.JSON(200, resp)
}