fix polyline db field size (#1047)
This commit is contained in:
36
db/migrations/1778583700_updated_trails_polyline_max.go
Normal file
36
db/migrations/1778583700_updated_trails_polyline_max.go
Normal file
@@ -0,0 +1,36 @@
|
||||
package migrations
|
||||
|
||||
import (
|
||||
"pocketbase/util"
|
||||
|
||||
"github.com/pocketbase/pocketbase/core"
|
||||
m "github.com/pocketbase/pocketbase/migrations"
|
||||
)
|
||||
|
||||
func init() {
|
||||
m.Register(func(app core.App) error {
|
||||
collection, err := app.FindCollectionByNameOrId("e864strfxo14pm4")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
field, ok := collection.Fields.GetByName("polyline").(*core.TextField)
|
||||
if ok {
|
||||
field.Max = util.PolylineMaxLength
|
||||
}
|
||||
|
||||
return app.Save(collection)
|
||||
}, func(app core.App) error {
|
||||
collection, err := app.FindCollectionByNameOrId("e864strfxo14pm4")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
field, ok := collection.Fields.GetByName("polyline").(*core.TextField)
|
||||
if ok {
|
||||
field.Max = 0
|
||||
}
|
||||
|
||||
return app.Save(collection)
|
||||
})
|
||||
}
|
||||
@@ -10,6 +10,8 @@ import (
|
||||
"github.com/twpayne/go-polyline"
|
||||
)
|
||||
|
||||
const PolylineMaxLength = 5 * 1024 * 1024
|
||||
|
||||
func ComputePolyline(app core.App, r *core.Record) (string, error) {
|
||||
gpxPath := r.GetString("gpx")
|
||||
if len(gpxPath) == 0 {
|
||||
@@ -56,6 +58,10 @@ func SavePolyline(app core.App, r *core.Record) error {
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
// Encoded polylines are ASCII-only, so byte length matches character length.
|
||||
if len(encoded) > PolylineMaxLength {
|
||||
return fmt.Errorf("polyline exceeds maximum length of %d characters", PolylineMaxLength)
|
||||
}
|
||||
r.Set("polyline", encoded)
|
||||
if err := app.UnsafeWithoutHooks().Save(r); err != nil {
|
||||
return fmt.Errorf("save trail polyline: %w", err)
|
||||
|
||||
Reference in New Issue
Block a user