mirror of
https://github.com/screentinker/screentinker.git
synced 2026-08-14 06:16:20 -06:00
Three features from this session, full server suite green (535/535). TOTP 2FA (#100) — backend shipped without a UI; add it: - Login: mfa_required -> 6-digit challenge (recovery codes accepted) -> /totp/verify. - Settings > Account: enable (QR + confirm -> recovery codes once), regenerate, disable; SSO accounts see "managed by your identity provider". - /totp/setup returns a server-rendered qr_data_url (bundled qrcode dep). keyuri folds the request Host into the issuer so multi-instance accounts are distinguishable in the authenticator app. Email verification on signup — hosted HARD-block / self-host SOFT-nudge: - email_verified column; existing users asked on first login (SSO + platform admins grandfathered); single-use 24h tokens (SHA-256 hashed). - Gate engages only when email is configured (never locks out a no-mail instance). GET /verify-email + POST /resend-verification (generic, no account enumeration). - Client: "confirm your email" flow + resend, verified/error toasts, self-host banner; onAuthSuccess refuses a tokenless response (defensive). Tizen SSSP URL-Launcher install — Fusion-style one-URL native install: - Server hosts /tizen/sssp_config.xml (dynamic <size>, always matches the served .wgt) + /tizen/ScreenTinker.wgt + a human landing. lib/wgt-cache.js resolves the signed .wgt (/data mount wins, mirroring the APK). - build-wgt.sh also emits a static sssp_config.xml for CDN hosting. - Retail panels require a Samsung Partner cert; dev-mode is SDB self-signed only. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
66 lines
3.1 KiB
Bash
Executable file
66 lines
3.1 KiB
Bash
Executable file
#!/bin/bash
|
|
# Build the ScreenTinker Tizen .wgt.
|
|
# - If the Tizen CLI is available, sign with a security profile (arg 1, default
|
|
# "ScreenTinker") and emit a signed, TV-installable .wgt.
|
|
# - Otherwise, emit an UNSIGNED .wgt (plain zip) — fine for inspection / the
|
|
# URL-Launcher path, but TVs need a signed package.
|
|
# Only the app files are packaged (README/build script/.gitignore are excluded).
|
|
set -e
|
|
cd "$(dirname "$0")"
|
|
OUT="ScreenTinker.wgt"
|
|
FILES="config.xml index.html icon.png css js"
|
|
|
|
# Make the Tizen CLI discoverable if installed in the default location.
|
|
[ -d "$HOME/tizen-studio/tools/ide/bin" ] && export PATH="$HOME/tizen-studio/tools/ide/bin:$PATH"
|
|
rm -f "$OUT"
|
|
|
|
# #74/#75: refresh the bundled schedule evaluator from the single source so the
|
|
# .wgt always ships the canonical (byte-identical) copy, never a stale duplicate.
|
|
cp ../server/lib/schedule-eval.js js/schedule-eval.js
|
|
|
|
# transition-engine: rebuild the WebGL transition runtime (params + renderer + shaders) from
|
|
# shared/Transitions into the .wgt, same single-source discipline. No npm deps needed.
|
|
node -e "require('fs').writeFileSync('js/transitions.js', require('../server/lib/transition-bundle').bundle())" \
|
|
&& echo "Rebuilt js/transitions.js from shared/Transitions."
|
|
|
|
# #119: stamp the player version from the single source (config.xml) so the .wgt's
|
|
# reported app_version always matches what is installed — same idea as the copy above.
|
|
VER="$(grep -v '<?xml' config.xml | grep -oE 'version="[0-9][^"]*"' | head -1 | sed -E 's/version="([^"]+)"/\1/')"
|
|
if [ -n "$VER" ]; then
|
|
sed -i.bak "s/var APP_VERSION_FALLBACK = '[^']*';/var APP_VERSION_FALLBACK = '$VER';/" js/app.js
|
|
rm -f js/app.js.bak
|
|
echo "Stamped APP_VERSION_FALLBACK = $VER from config.xml."
|
|
fi
|
|
|
|
if command -v tizen >/dev/null 2>&1; then
|
|
PROFILE="${1:-ScreenTinker}"
|
|
echo "Tizen CLI found — signing with profile '$PROFILE'…"
|
|
STAGE="$(mktemp -d)"
|
|
cp -r $FILES "$STAGE"/
|
|
tizen package -t wgt -s "$PROFILE" -- "$STAGE" -o "$PWD" >/dev/null
|
|
rm -rf "$STAGE"
|
|
echo "Signed $OUT ready ($(du -h "$OUT" | cut -f1))."
|
|
else
|
|
echo "Tizen CLI not found — building UNSIGNED $OUT."
|
|
zip -r -X "$OUT" $FILES -x '*.DS_Store' '_*' >/dev/null
|
|
echo "Built $OUT ($(du -h "$OUT" | cut -f1), UNSIGNED — sign before installing on a TV)."
|
|
fi
|
|
|
|
# SSSP URL-Launcher manifest. Host this + the .wgt in the SAME folder, then enter that folder's
|
|
# URL in a Samsung panel's URL Launcher / Custom App to natively install (the panel fetches
|
|
# <url>/sssp_config.xml, reads size+ver, downloads ScreenTinker.wgt). The ScreenTinker server
|
|
# also generates this dynamically at /tizen/sssp_config.xml — this static copy is for hosting the
|
|
# .wgt on a CDN/bucket instead. <size> must equal the FINAL (signed) .wgt's byte length, so
|
|
# regenerate this whenever the .wgt is (re-)signed — the size changes.
|
|
WGT_SIZE=$(wc -c < "$OUT" | tr -d ' ')
|
|
cat > sssp_config.xml <<EOF
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<widget>
|
|
<ver>${VER:-1.0.0}</ver>
|
|
<size>${WGT_SIZE}</size>
|
|
<widgetname>ScreenTinker</widgetname>
|
|
<webtype>tizen</webtype>
|
|
</widget>
|
|
EOF
|
|
echo "Wrote sssp_config.xml (ver ${VER:-1.0.0}, size ${WGT_SIZE} bytes)."
|