fix: need to cast appId as string,then parse to int

This commit is contained in:
Derrick Hammer 2024-02-12 00:43:04 -05:00
parent 846e5df758
commit 669a6eaf6d
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 9 additions and 3 deletions

View File

@ -87,14 +87,20 @@ func githubRestVerifyMiddleware(db *gorm.DB) mux.MiddlewareFunc {
return
}
appId, ok := claims["iss"].(uint)
appId, ok := claims["iss"].(string)
if !ok {
http.Error(w, "Invalid JWT", http.StatusUnauthorized)
return
}
appIdInt, err := strconv.Atoi(appId)
if err != nil {
http.Error(w, "Invalid JWT", http.StatusUnauthorized)
return
}
appRecord := &model.Apps{}
appRecord.ID = appId
appRecord.ID = uint(appIdInt)
if err := db.First(appRecord).Error; err != nil {
http.Error(w, "Invalid JWT", http.StatusUnauthorized)
@ -139,7 +145,7 @@ func githubRestVerifyMiddleware(db *gorm.DB) mux.MiddlewareFunc {
return
}
if appId != uint(installIdInt) {
if appIdInt != installIdInt {
http.Error(w, "Invalid Install", http.StatusUnauthorized)
return
}