consbio / mbtileserver

Basic Go server for mbtiles
ISC License
653 stars 103 forks source link

Extra characters in path or mbtiles names do not load and create extra files on host #96

Open brendan-ward opened 4 years ago

brendan-ward commented 4 years ago

On MacOS:

Given a tileset named tileset with extra chars ();?\Å.mbtiles:

Expected behavior:

brendan-ward commented 4 years ago

There are characters that have special meaning for how we open the mbtiles file using the sqlite driver, such as ?. These may be valid paths but break the driver.

Best solution is likely to screen for known special characters and refuse to load these mbtiles files or paths.

/cc @asmyasnikov