Matheus Querido 6 years ago
parent
commit
7e89fded23
10 changed files with 23 additions and 17 deletions
  1. 1 1
      .vscode/launch.json
  2. BIN
      build
  3. 1 1
      src/config/config.go
  4. 1 1
      core/database/database.go
  5. BIN
      debug
  6. 3 2
      main.go
  7. 3 3
      src/config/routes.go
  8. 6 2
      src/controller/Test/Test.go
  9. 7 6
      src/lib/auth/auth.go
  10. 1 1
      src/lib/error/error.go

+ 1 - 1
.vscode/launch.json

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

BIN
build


+ 1 - 1
src/config/config.go

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

+ 1 - 1
core/database/database.go

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

BIN
debug


+ 3 - 2
main.go

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

+ 3 - 3
src/config/routes.go

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

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

@@ -6,7 +6,8 @@ import (
6 6
 
7 7
 	req "../../../core/request"
8 8
 	res "../../../core/response"
9
-	"../../lib/auth"
9
+
10
+	auth "../../lib/auth"
10 11
 	errorHandler "../../lib/error"
11 12
 )
12 13
 
@@ -18,7 +19,10 @@ type Profile struct {
18 19
 //Inicial : Func
19 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 27
 	var Errors errorHandler.Errors
24 28
 	// fmt.Println(vars[0])

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

@@ -5,13 +5,14 @@ import (
5 5
 	"errors"
6 6
 	"log"
7 7
 	"net/http"
8
+	"strconv"
8 9
 
9
-	"../../config"
10
+	"../../../config"
10 11
 	"../curl"
11 12
 )
12 13
 
13 14
 type UserData struct {
14
-	UserId   int        `json:"id_user"`
15
+	UserId   string     `json:"id_user"`
15 16
 	Email    string     `json:"email"`
16 17
 	Name     string     `json:"name"`
17 18
 	Username string     `json:"username"`
@@ -28,10 +29,10 @@ type apiError struct {
28 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 37
 func GetUser(httpReq *http.Request) (*UserData, bool) {
37 38
 

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

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