gerboweb: Initial commit

The functionality is there, no design yet
This commit is contained in:
jaseg 2019-03-27 18:28:57 +09:00
commit 6a90803ae6
4 changed files with 612 additions and 0 deletions

18
vector.sh Executable file
View file

@ -0,0 +1,18 @@
#!/bin/sh
[ $# != 2 ] && exit 1
ID=$1
egrep -x -q '^[-0-9A-Za-z]{36}$'<<<"$ID" || exit 2
LAYER=$2
egrep -x -q '^(top|bottom)$'<<<"$LAYER" || exit 2
systemd-nspawn \
-D /var/cache/gerbolyze_container \
-x --bind=/var/cache/gerboweb/upload/$ID:/mnt \
/bin/sh -c "set -euo pipefail
cd /tmp
unzip -j -d gerber_in /mnt/gerber.zip
gerbolyze vectorize $LAYER gerber_in gerber /mnt/overlay.png
rm -f /mnt/gerber_out.zip
zip -r /mnt/gerber_out.zip gerber"