Skip to content

Commit 8512bda

Browse files
committed
Continue with test cases
1 parent b8b4deb commit 8512bda

15 files changed

+1130
-444
lines changed

api/controllers/base.go

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
package controllers
2+
3+
import (
4+
"fmt"
5+
"log"
6+
"net/http"
7+
8+
"github.com/gorilla/mux"
9+
"github.com/jinzhu/gorm"
10+
_ "github.com/jinzhu/gorm/dialects/mysql"
11+
)
12+
13+
type Server struct {
14+
DB *gorm.DB
15+
Router *mux.Router
16+
}
17+
18+
func (server *Server) Initialize(Dbdriver, User, Password, Dbname string) {
19+
var err error
20+
21+
DBURL := fmt.Sprintf("%s:%s@tcp(127.0.0.1:3306)/%s?charset=utf8&parseTime=True&loc=Local", User, Password, Dbname)
22+
server.DB, err = gorm.Open(Dbdriver, DBURL)
23+
if err != nil {
24+
log.Fatal("cannot connect to the database", err)
25+
}
26+
27+
server.Router = mux.NewRouter()
28+
server.initializeRoutes()
29+
}
30+
31+
func (server *Server) Run(addr string) {
32+
fmt.Println("Listening to port 8080")
33+
log.Fatal(http.ListenAndServe(addr, server.Router))
34+
}

api/controllers/login_controller.go

+25-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ import (
99
"github.com/victorsteven/fullstack/api/auth"
1010
"github.com/victorsteven/fullstack/api/models"
1111
"github.com/victorsteven/fullstack/api/responses"
12+
"github.com/victorsteven/fullstack/api/utils/channels"
1213
)
1314

14-
func Login(w http.ResponseWriter, r *http.Request) {
15+
func (server *Server) Login(w http.ResponseWriter, r *http.Request) {
1516
body, err := ioutil.ReadAll(r.Body)
1617
if err != nil {
1718
fmt.Println("we cant login")
@@ -33,11 +34,33 @@ func Login(w http.ResponseWriter, r *http.Request) {
3334
responses.ERROR(w, http.StatusUnprocessableEntity, err)
3435
return
3536
}
36-
token, err := auth.SignIn(user.Email, user.Password)
37+
token, err := server.SignIn(user.Email, user.Password)
3738
if err != nil {
3839
fmt.Println("we cant login")
3940
responses.ERROR(w, http.StatusUnprocessableEntity, err)
4041
return
4142
}
4243
responses.JSON(w, http.StatusOK, token)
4344
}
45+
46+
func (server *Server) SignIn(email, password string) (string, error) {
47+
user := models.User{}
48+
var err error
49+
done := make(chan bool)
50+
51+
go func(ch chan<- bool) {
52+
defer close(ch)
53+
54+
err = server.DB.Debug().Model(models.User{}).Where("email = ?", email).Take(&user).Error
55+
if err != nil {
56+
ch <- false
57+
return
58+
}
59+
ch <- true
60+
}(done)
61+
62+
if channels.OK(done) {
63+
return auth.CreateToken(user.ID)
64+
}
65+
return "", err
66+
}

0 commit comments

Comments
 (0)