66 lines
2.0 KiB
Go
66 lines
2.0 KiB
Go
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
"otaupdate/services"
|
|
"strconv"
|
|
|
|
"github.com/fiskerinc/cloud-services/pkg/common"
|
|
orm "github.com/fiskerinc/cloud-services/pkg/db/queries"
|
|
"github.com/fiskerinc/cloud-services/pkg/loggerdataresp"
|
|
"github.com/fiskerinc/cloud-services/pkg/utils"
|
|
"github.com/julienschmidt/httprouter"
|
|
)
|
|
|
|
// HandleFlashpacksGetAll godoc
|
|
// @Summary Get all flashpacks
|
|
// @Description Get all flashpacks
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param Authorization header string false "Bearer <ID token>"
|
|
// @Param Api-Key header string false "<API token>"
|
|
// @Param model path string true "Model"
|
|
// @Param trim path string true "Trim"
|
|
// @Param year path int true "Year"
|
|
// @Param limit query int false "Max number of records"
|
|
// @Param offset query int false "Records offset"
|
|
// @Success 200 {object} common.JSONDBQueryResult "Get flashpacks result"
|
|
// @Failure 400 {object} common.JSONError "Bad request"
|
|
// @Failure 401 {object} common.JSONError "Unauthorized"
|
|
// @Failure 503 {object} common.JSONError "Service unavailable"
|
|
// @Router /flashpack_versions/{model}/{trim}/{year} [get]
|
|
func HandleFlashpackVersionsGetAll(w http.ResponseWriter, r *http.Request) {
|
|
params := httprouter.ParamsFromContext(r.Context())
|
|
model := params.ByName("model")
|
|
trim := params.ByName("trim")
|
|
year, err := strconv.Atoi(params.ByName("year"))
|
|
if loggerdataresp.BadDataErrorResp(w, err, http.StatusBadRequest) {
|
|
return
|
|
}
|
|
|
|
options, err := orm.ParsePageQuery(r)
|
|
if loggerdataresp.BadDataErrorResp(w, err, http.StatusBadRequest) {
|
|
return
|
|
}
|
|
if options.Order == "" {
|
|
options.Order = "flashpack DESC"
|
|
}
|
|
|
|
cars := services.GetDB().GetCars()
|
|
|
|
flashpacks, err := cars.GetFlashpackVersions(model, trim, year, options)
|
|
if loggerdataresp.BadDataErrorResp(w, err, http.StatusServiceUnavailable) {
|
|
return
|
|
}
|
|
|
|
total, err := cars.GetFlashpackVersionsCount(model, trim, year)
|
|
if loggerdataresp.BadDataErrorResp(w, err, http.StatusServiceUnavailable) {
|
|
return
|
|
}
|
|
|
|
utils.RespJSON(w, http.StatusOK, common.JSONDBQueryResult{
|
|
Data: flashpacks,
|
|
Total: total,
|
|
})
|
|
}
|