Initial commit

This commit is contained in:
Andrew71 2024-10-11 11:38:08 +03:00
commit bf5acf23b0
6 changed files with 111 additions and 0 deletions

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# PYE
**Mission**: Science compels us to create a microservice!

35
auth.go Normal file
View file

@ -0,0 +1,35 @@
package main
import (
"net/http"
"net/mail"
"strings"
)
func ValidEmail(email string) bool {
_, err := mail.ParseAddress(email)
return err == nil
}
func ValidPass(pass string) bool {
return len(pass) >= 8 // TODO: Obviously, we *might* want something more sophisticated here
}
func TakenEmail(email string) bool {
// TODO: Implement
return false
}
func Register(w http.ResponseWriter, r *http.Request) {
email, password, ok := r.BasicAuth()
if !ok {
email = strings.TrimSpace(email)
password = strings.TrimSpace(password)
if !(ValidEmail(email) || ValidPass(password) || TakenEmail(email)) {
// TODO: Provide descriptive error and check if 400 is best code?
http.Error(w, "Invalid auth credentials", http.StatusBadRequest)
}
}
// No email and password was provided
w.Header().Set("WWW-Authenticate", `Basic realm="restricted", charset="UTF-8"`)
http.Error(w, "This API requires authorization", http.StatusUnauthorized)
}

8
go.mod Normal file
View file

@ -0,0 +1,8 @@
module pye-auth
go 1.22
require (
github.com/google/uuid v1.6.0
golang.org/x/crypto v0.28.0
)

4
go.sum Normal file
View file

@ -0,0 +1,4 @@
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw=
golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U=

32
main.go Normal file
View file

@ -0,0 +1,32 @@
package main
import (
"fmt"
"net/http"
)
func main() {
fmt.Println("Test")
router := http.NewServeMux()
router.HandleFunc("POST /todos", func(w http.ResponseWriter, r *http.Request) {
fmt.Println("create a todo")
})
router.HandleFunc("GET /todos", func(w http.ResponseWriter, r *http.Request) {
fmt.Println("get all todos")
})
router.HandleFunc("PATCH /todos/{id}", func(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
fmt.Println("update a todo by id", id)
})
router.HandleFunc("DELETE /todos/{id}", func(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
fmt.Println("delete a todo by id", id)
})
http.ListenAndServe(":7102", router)
}

29
user.go Normal file
View file

@ -0,0 +1,29 @@
package main
import (
"github.com/google/uuid"
"golang.org/x/crypto/bcrypt"
)
type User struct {
uuid uuid.UUID
email string
hash []byte // bcrypt hash of password
}
func (u User) PasswordFits(password string) bool {
err := bcrypt.CompareHashAndPassword(u.hash, []byte(password))
return err == nil
}
func NewUser(email, password string) (User, error) {
hash, err := bcrypt.GenerateFromPassword([]byte(password), 14)
if err != nil {
return User{}, err
}
return User{uuid.New(), email, hash}, nil
}
func CreateUser(User) {
}