aboutsummaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2024-01-28 02:25:16 +0000
committerterminaldweller <devi@terminaldweller.com>2024-01-28 02:25:16 +0000
commitcf93fe1d26fdf7cf158dbee36133651cc5c050b3 (patch)
treef303097c66d19c8cbffc37e866e543e1d37e4118 /main.go
parentadded basic http auth (diff)
downloadsms-webhook-cf93fe1d26fdf7cf158dbee36133651cc5c050b3.tar.gz
sms-webhook-cf93fe1d26fdf7cf158dbee36133651cc5c050b3.zip
added basic http auth
Diffstat (limited to '')
-rw-r--r--main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.go b/main.go
index 987a005..4bb4889 100644
--- a/main.go
+++ b/main.go
@@ -54,11 +54,13 @@ func (hw handlerWrapper) postHandler(context echo.Context) error {
if !ok {
return context.JSON(http.StatusUnauthorized, "unauthorized")
}
+ log.Println(user, pass)
userRecord, err := hw.app.Dao().FindAuthRecordByUsername("users", user)
if err != nil {
return context.JSON(http.StatusUnauthorized, "unauthorized")
}
+ log.Println(userRecord.Get("password"))
if userRecord.Get("password") != pass {
return context.JSON(http.StatusUnauthorized, "unauthorized")