mirror of
https://github.com/renorris/openfsd
synced 2026-03-22 23:05:36 +08:00
1. Database Enhancements (db/repositories.go): - Added ConfigRepository interface and implementations for PostgreSQL and SQLite - Updated Repositories struct to include ConfigRepository - Modified NewRepositories to initialize both UserRepo and ConfigRepo 2. FSD Server Improvements: - Removed hardcoded jwtSecret, now retrieved from ConfigRepository (fsd/conn.go, web/auth.go) - Added dynamic welcome message retrieval from ConfigRepository (fsd/conn.go) - Optimized METAR buffer size from 4096 to 512 bytes (fsd/metar.go) - Reduced minimum fields for DeleteATC and DeletePilot packets (fsd/packet.go) - Improved Haversine distance calculation with constants (fsd/postoffice.go) - Added thread-safety documentation for sendError (fsd/client.go) 3. Server Configuration (fsd/server.go): - Added NewDefaultServer to initialize server with environment-based config - Implemented automatic database migration and default admin user creation - Added configurable METAR worker count - Improved logging with slog and environment-based debug level 4. Web Interface Enhancements: - Added user and config editor frontend routes (web/frontend.go, web/routes.go) - Improved JWT handling by retrieving secret from ConfigRepository (web/auth.go) - Enhanced user management API endpoints (web/user.go) - Updated dashboard to display CID and conditional admin links (web/templates/dashboard.html) - Embedded templates using go:embed (web/templates.go) 5. Frontend JavaScript Improvements: - Added networkRatingFromInt helper for readable ratings (web/static/js/openfsd/dashboard.js) - Improved API request handling with auth/no-auth variants (web/static/js/openfsd/api.js) 6. Miscellaneous: - Added sethvargo/go-envconfig dependency for environment variable parsing - Fixed parseVisRange to use 64-bit float parsing (fsd/util.go) - Added strPtr utility function (fsd/util.go, web/main.go) - Improved SVG logo rendering in layout (web/templates/layout.html)
67 lines
1.7 KiB
Go
67 lines
1.7 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/renorris/openfsd/db"
|
|
"github.com/renorris/openfsd/fsd"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
func (s *Server) handleCreateNewAPIToken(c *gin.Context) {
|
|
claims := getJwtContext(c)
|
|
if claims.NetworkRating < fsd.NetworkRatingAdministator {
|
|
writeAPIV1Response(c, http.StatusForbidden, &genericAPIV1Forbidden)
|
|
return
|
|
}
|
|
|
|
type RequestBody struct {
|
|
ExpiryDateTime time.Time `json:"expiry_date_time" time_format:"2006-01-02T15:04:05.000Z" binding:"required"`
|
|
}
|
|
|
|
var reqBody RequestBody
|
|
if ok := bindJSONOrAbort(c, &reqBody); !ok {
|
|
return
|
|
}
|
|
|
|
now := time.Now()
|
|
|
|
if reqBody.ExpiryDateTime.Before(now) {
|
|
res := newAPIV1Failure("expiry_date_time cannot be in the past")
|
|
writeAPIV1Response(c, http.StatusBadRequest, &res)
|
|
return
|
|
}
|
|
|
|
validityDuration := reqBody.ExpiryDateTime.Sub(now)
|
|
|
|
accessToken, err := fsd.MakeJwtToken(&fsd.CustomFields{
|
|
TokenType: "access",
|
|
CID: claims.CID,
|
|
NetworkRating: fsd.NetworkRatingAdministator,
|
|
}, validityDuration)
|
|
if err != nil {
|
|
writeAPIV1Response(c, http.StatusInternalServerError, &genericAPIV1InternalServerError)
|
|
return
|
|
}
|
|
|
|
secretKey, err := s.dbRepo.ConfigRepo.Get(db.ConfigJwtSecretKey)
|
|
if err != nil {
|
|
writeAPIV1Response(c, http.StatusInternalServerError, &genericAPIV1InternalServerError)
|
|
return
|
|
}
|
|
|
|
accessTokenStr, err := accessToken.SignedString([]byte(secretKey))
|
|
if err != nil {
|
|
writeAPIV1Response(c, http.StatusInternalServerError, &genericAPIV1InternalServerError)
|
|
return
|
|
}
|
|
|
|
type ResponseBody struct {
|
|
Token string `json:"token"`
|
|
}
|
|
|
|
resBody := ResponseBody{Token: accessTokenStr}
|
|
res := newAPIV1Success(&resBody)
|
|
writeAPIV1Response(c, http.StatusCreated, &res)
|
|
}
|