NewBook-connected daily housekeeping planner. Replaces the hotelhubmodule-housekeeping-dailylist WordPress plugin. LXC 120 · 10.10.10.120:3080 · slug: room-planner. - 3-day booking window (yesterday/today/tomorrow) fetched live from NewBook - Task completion ticks back to NewBook; room status patches NewBook directly - 23px border sliver CSS system for adjacent-day booking status - 3-state filter cycling (off→inclusive→exclusive) for categories and flow types - Stat filters for outstanding tasks and clean/dirty status - Rolling 48h activity log with checkout/checkin/status/tasks events - newbook_pings event bus for future NewBook poller integration - Room modal with permission-gated guest/rate/notes, task checkboxes, status buttons - Placeholder sections for future linen-count and routine-tasks modules - Settings page: task type colours, twin/extra-bed detection, category exclusions - Mobile-first layout (sidebar desktop, compact top bar mobile) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
57 lines
1.7 KiB
JavaScript
57 lines
1.7 KiB
JavaScript
import { jwtVerify } from 'jose'
|
|
import { isOnsite } from './ip-check.js'
|
|
|
|
const APP_SLUG = process.env.APP_SLUG || 'room-planner'
|
|
const secret = new TextEncoder().encode(process.env.CENTRAL_AUTH_SECRET || '')
|
|
|
|
export async function requireAuth(request, reply) {
|
|
const token = request.cookies?.hnf_session
|
|
if (!token) return reply.status(401).send({ error: 'Not authenticated' })
|
|
|
|
let payload
|
|
try {
|
|
const { payload: p } = await jwtVerify(token, secret)
|
|
payload = p
|
|
} catch {
|
|
return reply.status(401).send({ error: 'Invalid session' })
|
|
}
|
|
|
|
if (!payload.apps?.includes(APP_SLUG)) {
|
|
return reply.status(403).send({ error: 'No permission for this app' })
|
|
}
|
|
|
|
if (!payload.offsite_allowed) {
|
|
const clientIP = request.headers['x-real-ip'] || request.ip
|
|
if (!(await isOnsite(clientIP))) {
|
|
return reply.status(403).send({ error: 'Access restricted to site network' })
|
|
}
|
|
}
|
|
|
|
const prefix = `${APP_SLUG}:`
|
|
let caps
|
|
if (Array.isArray(payload.caps)) {
|
|
caps = payload.caps.filter(c => c.startsWith(prefix)).map(c => c.slice(prefix.length))
|
|
} else {
|
|
// Legacy token — grant all non-settings caps until re-login
|
|
caps = ['view', 'guest_details', 'rate_details', 'view_all_notes', 'complete_tasks', 'update_status']
|
|
}
|
|
|
|
request.user = {
|
|
email: payload.sub,
|
|
name: payload.name,
|
|
is_admin: payload.is_admin ?? false,
|
|
caps,
|
|
}
|
|
}
|
|
|
|
export function hasCap(request, cap) {
|
|
return request.user?.is_admin === true || request.user?.caps?.includes(cap) === true
|
|
}
|
|
|
|
export function requireCap(cap) {
|
|
return async (request, reply) => {
|
|
if (!hasCap(request, cap)) {
|
|
return reply.status(403).send({ error: `Missing capability: ${cap}` })
|
|
}
|
|
}
|
|
}
|