moth/bin/once

54 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-04-10 16:37:21 -06:00
#! /bin/sh
if [ -n "$1" ]; then
cd $1
else
cd $(dirname $0)/..
fi
basedir=$(pwd)
2015-04-10 16:37:21 -06:00
# Do nothing if `disabled` is present
if [ -f disabled ]; then
exit
fi
# Reset to initial state if `reset` is present
if [ -f reset ]; then
rm -f state/teams/* state/points.new/* state/points.tmp/*
: > state/points.log
2015-04-21 07:59:35 -06:00
rm -f reset
2015-04-10 16:37:21 -06:00
fi
# Create a list of currently-active categories
: > state/categories.txt.new
for dn in packages/*; do
cat=${dn##packages/}
echo "$cat" >> state/categories.txt.new
done
mv state/categories.txt.new state/categories.txt
2015-04-10 16:37:21 -06:00
# Collect new points
find state/points.new -type f | while read fn; do
# Skip files opened by another process
lsof $fn | grep -q $fn && continue
# Skip partially written files
[ $(wc -l < $fn) -gt 0 ] || continue
2015-04-18 19:13:07 -06:00
# filter the file for unique awards
sort -k 4 $fn | uniq -f 1 | sort -n >> state/points.log
# Now kill the file
rm -f $fn
2015-04-10 16:37:21 -06:00
done
# Generate new puzzles.html
if bin/puzzles $basedir > www/puzzles.new; then
mv www/puzzles.new www/puzzles.json
2015-04-10 16:37:21 -06:00
fi
# Generate new points.json
if bin/points $basedir > www/points.new; then
2015-04-10 16:37:21 -06:00
mv www/points.new www/points.json
fi