2023-02-13 19:00:29 +00:00
|
|
|
package v1
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/hay-kot/homebox/backend/internal/core/services"
|
2023-04-09 18:39:43 +00:00
|
|
|
"github.com/hay-kot/httpkit/errchain"
|
2023-02-13 19:00:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// HandleBillOfMaterialsExport godoc
|
|
|
|
//
|
2023-03-07 06:18:58 +00:00
|
|
|
// @Summary Export Bill of Materials
|
2023-02-13 19:00:29 +00:00
|
|
|
// @Tags Reporting
|
|
|
|
// @Produce json
|
|
|
|
// @Success 200 {string} string "text/csv"
|
|
|
|
// @Router /v1/reporting/bill-of-materials [GET]
|
|
|
|
// @Security Bearer
|
2023-03-21 04:32:10 +00:00
|
|
|
func (ctrl *V1Controller) HandleBillOfMaterialsExport() errchain.HandlerFunc {
|
2023-02-13 19:00:29 +00:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) error {
|
|
|
|
actor := services.UseUserCtx(r.Context())
|
|
|
|
|
2023-02-26 02:54:40 +00:00
|
|
|
csv, err := ctrl.svc.Items.ExportBillOfMaterialsTSV(r.Context(), actor.GroupID)
|
2023-02-13 19:00:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-02-26 02:54:40 +00:00
|
|
|
w.Header().Set("Content-Type", "text/tsv")
|
|
|
|
w.Header().Set("Content-Disposition", "attachment; filename=bill-of-materials.tsv")
|
2023-02-13 19:00:29 +00:00
|
|
|
_, err = w.Write(csv)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|