Matheus Querido 6 gadi atpakaļ
vecāks
revīzija
7e89fded23

+ 1 - 1
.vscode/launch.json

12
             "remotePath": "",
12
             "remotePath": "",
13
             "port": 8081,
13
             "port": 8081,
14
             "host": "127.0.0.1",
14
             "host": "127.0.0.1",
15
-            "program": "${fileDirname}",
15
+            "program": "${workspaceRoot}",
16
             "env": {},
16
             "env": {},
17
             "args": [],
17
             "args": [],
18
             "showLog": true
18
             "showLog": true

BIN
build


+ 1 - 1
src/config/config.go

1
 package config
1
 package config
2
 
2
 
3
 /* SERVER CONFIGURATION */
3
 /* SERVER CONFIGURATION */
4
-const SERVER_PORT = 8080
4
+const SERVER_PORT = 8081
5
 
5
 
6
 /* DATABASE CONFIGURATION */
6
 /* DATABASE CONFIGURATION */
7
 const DATABASE_HOST = "208.97.141.22"
7
 const DATABASE_HOST = "208.97.141.22"

+ 1 - 1
core/database/database.go

4
 	"database/sql"
4
 	"database/sql"
5
 	"log"
5
 	"log"
6
 
6
 
7
-	"../../src/config"
7
+	"../../config"
8
 	_ "github.com/go-sql-driver/mysql"
8
 	_ "github.com/go-sql-driver/mysql"
9
 )
9
 )
10
 
10
 

BIN
debug


+ 3 - 2
main.go

5
 	"net/http"
5
 	"net/http"
6
 	"strconv"
6
 	"strconv"
7
 
7
 
8
+	"./config"
8
 	"./core/database"
9
 	"./core/database"
9
 	req "./core/request"
10
 	req "./core/request"
10
 	res "./core/response"
11
 	res "./core/response"
11
-	"./src/config"
12
+	"./routes"
12
 )
13
 )
13
 
14
 
14
 func main() {
15
 func main() {
18
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
19
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
19
 		res.SetResponseWriter(w)
20
 		res.SetResponseWriter(w)
20
 		req.SetRequest(r)
21
 		req.SetRequest(r)
21
-		config.Routes.Match(w, r)
22
+		routes.Routes.Match(w, r)
22
 	})
23
 	})
23
 
24
 
24
 	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(config.SERVER_PORT), nil))
25
 	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(config.SERVER_PORT), nil))

+ 3 - 3
src/config/routes.go

1
-package config
1
+package routes
2
 
2
 
3
 import (
3
 import (
4
-	"../../core/router"
5
-	"../controller/test"
4
+	"../core/router"
5
+	"../src/controller/test"
6
 )
6
 )
7
 
7
 
8
 //Routes rotas de acesso
8
 //Routes rotas de acesso

+ 6 - 2
src/controller/Test/Test.go

6
 
6
 
7
 	req "../../../core/request"
7
 	req "../../../core/request"
8
 	res "../../../core/response"
8
 	res "../../../core/response"
9
-	"../../lib/auth"
9
+
10
+	auth "../../lib/auth"
10
 	errorHandler "../../lib/error"
11
 	errorHandler "../../lib/error"
11
 )
12
 )
12
 
13
 
18
 //Inicial : Func
19
 //Inicial : Func
19
 func Inicial(w http.ResponseWriter, r *http.Request, vars []string) {
20
 func Inicial(w http.ResponseWriter, r *http.Request, vars []string) {
20
 
21
 
21
-	auth.GetUser(r)
22
+	user, err := auth.GetUser(r)
23
+
24
+	fmt.Printf("%+v\n", user)
25
+	fmt.Printf("%+v\n", err)
22
 
26
 
23
 	var Errors errorHandler.Errors
27
 	var Errors errorHandler.Errors
24
 	// fmt.Println(vars[0])
28
 	// fmt.Println(vars[0])

+ 7 - 6
src/lib/auth/auth.go

5
 	"errors"
5
 	"errors"
6
 	"log"
6
 	"log"
7
 	"net/http"
7
 	"net/http"
8
+	"strconv"
8
 
9
 
9
-	"../../config"
10
+	"../../../config"
10
 	"../curl"
11
 	"../curl"
11
 )
12
 )
12
 
13
 
13
 type UserData struct {
14
 type UserData struct {
14
-	UserId   int        `json:"id_user"`
15
+	UserId   string     `json:"id_user"`
15
 	Email    string     `json:"email"`
16
 	Email    string     `json:"email"`
16
 	Name     string     `json:"name"`
17
 	Name     string     `json:"name"`
17
 	Username string     `json:"username"`
18
 	Username string     `json:"username"`
28
 	Message   string `json:"message"`
29
 	Message   string `json:"message"`
29
 }
30
 }
30
 
31
 
31
-// func (user UserData) getId() int {
32
-// 	id, _ := strconv.Atoi(user.UserId)
33
-// 	return id
34
-// }
32
+func (user UserData) getId() int {
33
+	id, _ := strconv.Atoi(user.UserId)
34
+	return id
35
+}
35
 
36
 
36
 func GetUser(httpReq *http.Request) (*UserData, bool) {
37
 func GetUser(httpReq *http.Request) (*UserData, bool) {
37
 
38
 

+ 1 - 1
src/lib/error/error.go

1
-package lib
1
+package error
2
 
2
 
3
 const InvalidParameter = 400
3
 const InvalidParameter = 400
4
 const ActionForbidden = 401
4
 const ActionForbidden = 401