No Description

main.go 849B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package main
  2. import (
  3. "log"
  4. "net/http"
  5. "strconv"
  6. "./core/database"
  7. "./core/errorHandler"
  8. "./core/request"
  9. "./core/response"
  10. "./src/lib/auth"
  11. )
  12. func main() {
  13. initDatabase()
  14. initAuthService()
  15. http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
  16. var Errors errorHandler.Errors
  17. response.SetResponseWriter(w)
  18. request.SetRequest(r)
  19. if !database.IsConnected {
  20. Errors.InternalError("Conexão com a base de dados falhou!")
  21. response.JSON(Errors)
  22. return
  23. }
  24. Routes.Match(w, r)
  25. })
  26. log.Fatal(http.ListenAndServe(":"+strconv.Itoa(SERVER_PORT), nil))
  27. }
  28. func initDatabase() {
  29. database.Init(
  30. database.Config{
  31. DATABASE_HOST,
  32. DATABASE_PORT,
  33. DATABASE_USER,
  34. DATABASE_PASS,
  35. DATABASE_SCHEMA,
  36. })
  37. }
  38. func initAuthService() {
  39. auth.Config(
  40. auth.ServiceConfig{
  41. AUTHENTICATION_SERVICE,
  42. })
  43. }