Files
breedr/server/routes/litters.js

234 lines
7.8 KiB
JavaScript
Raw Normal View History

2026-03-08 22:45:27 -05:00
const express = require('express');
const router = express.Router();
const { getDatabase } = require('../db/init');
// GET all litters
router.get('/', (req, res) => {
try {
const db = getDatabase();
const litters = db.prepare(`
SELECT l.*,
s.name as sire_name, s.registration_number as sire_reg,
d.name as dam_name, d.registration_number as dam_reg
FROM litters l
JOIN dogs s ON l.sire_id = s.id
JOIN dogs d ON l.dam_id = d.id
ORDER BY l.breeding_date DESC
`).all();
litters.forEach(litter => {
litter.puppies = db.prepare(`
SELECT * FROM dogs WHERE litter_id = ? AND is_active = 1
`).all(litter.id);
2026-03-08 22:45:27 -05:00
litter.puppies.forEach(puppy => {
puppy.photo_urls = puppy.photo_urls ? JSON.parse(puppy.photo_urls) : [];
});
litter.actual_puppy_count = litter.puppies.length;
2026-03-08 22:45:27 -05:00
});
res.json(litters);
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// GET single litter with puppies
2026-03-08 22:45:27 -05:00
router.get('/:id', (req, res) => {
try {
const db = getDatabase();
const litter = db.prepare(`
SELECT l.*,
s.name as sire_name, s.registration_number as sire_reg, s.breed as sire_breed,
d.name as dam_name, d.registration_number as dam_reg, d.breed as dam_breed
2026-03-08 22:45:27 -05:00
FROM litters l
JOIN dogs s ON l.sire_id = s.id
JOIN dogs d ON l.dam_id = d.id
WHERE l.id = ?
`).get(req.params.id);
if (!litter) {
return res.status(404).json({ error: 'Litter not found' });
}
litter.puppies = db.prepare(`
SELECT * FROM dogs WHERE litter_id = ? AND is_active = 1
`).all(litter.id);
2026-03-08 22:45:27 -05:00
litter.puppies.forEach(puppy => {
puppy.photo_urls = puppy.photo_urls ? JSON.parse(puppy.photo_urls) : [];
});
litter.actual_puppy_count = litter.puppies.length;
2026-03-08 22:45:27 -05:00
res.json(litter);
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// POST create new litter
router.post('/', (req, res) => {
try {
const { sire_id, dam_id, breeding_date, whelping_date, puppy_count, notes } = req.body;
2026-03-08 22:45:27 -05:00
if (!sire_id || !dam_id || !breeding_date) {
return res.status(400).json({ error: 'Sire, dam, and breeding date are required' });
}
const db = getDatabase();
const sire = db.prepare('SELECT sex FROM dogs WHERE id = ?').get(sire_id);
const dam = db.prepare('SELECT sex FROM dogs WHERE id = ?').get(dam_id);
if (!sire || sire.sex !== 'male') {
return res.status(400).json({ error: 'Invalid sire' });
}
if (!dam || dam.sex !== 'female') {
return res.status(400).json({ error: 'Invalid dam' });
}
const result = db.prepare(`
INSERT INTO litters (sire_id, dam_id, breeding_date, whelping_date, puppy_count, notes)
VALUES (?, ?, ?, ?, ?, ?)
`).run(sire_id, dam_id, breeding_date, whelping_date || null, puppy_count || 0, notes || null);
2026-03-08 22:45:27 -05:00
const litter = db.prepare('SELECT * FROM litters WHERE id = ?').get(result.lastInsertRowid);
res.status(201).json(litter);
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// PUT update litter
router.put('/:id', (req, res) => {
try {
const { breeding_date, whelping_date, puppy_count, notes } = req.body;
const db = getDatabase();
db.prepare(`
UPDATE litters
SET breeding_date = ?, whelping_date = ?, puppy_count = ?, notes = ?
WHERE id = ?
`).run(breeding_date, whelping_date || null, puppy_count || 0, notes || null, req.params.id);
2026-03-08 22:45:27 -05:00
const litter = db.prepare('SELECT * FROM litters WHERE id = ?').get(req.params.id);
res.json(litter);
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// POST link puppy to litter
router.post('/:id/puppies/:puppyId', (req, res) => {
try {
const { id: litterId, puppyId } = req.params;
const db = getDatabase();
const litter = db.prepare('SELECT sire_id, dam_id FROM litters WHERE id = ?').get(litterId);
if (!litter) return res.status(404).json({ error: 'Litter not found' });
const puppy = db.prepare('SELECT id FROM dogs WHERE id = ?').get(puppyId);
if (!puppy) return res.status(404).json({ error: 'Puppy not found' });
db.prepare('UPDATE dogs SET litter_id = ? WHERE id = ?').run(litterId, puppyId);
const existingParents = db.prepare('SELECT parent_type FROM parents WHERE dog_id = ?').all(puppyId);
const hasSire = existingParents.some(p => p.parent_type === 'sire');
const hasDam = existingParents.some(p => p.parent_type === 'dam');
if (!hasSire) {
db.prepare('INSERT OR IGNORE INTO parents (dog_id, parent_id, parent_type) VALUES (?, ?, \'sire\')').run(puppyId, litter.sire_id);
}
if (!hasDam) {
db.prepare('INSERT OR IGNORE INTO parents (dog_id, parent_id, parent_type) VALUES (?, ?, \'dam\')').run(puppyId, litter.dam_id);
}
res.json({ message: 'Puppy linked to litter successfully' });
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// DELETE remove puppy from litter
router.delete('/:id/puppies/:puppyId', (req, res) => {
try {
const { puppyId } = req.params;
const db = getDatabase();
db.prepare('UPDATE dogs SET litter_id = NULL WHERE id = ?').run(puppyId);
res.json({ message: 'Puppy removed from litter' });
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// ─── Puppy Weight / Health Log ───────────────────────────────────────────────
// GET weight/health logs for a puppy
router.get('/:litterId/puppies/:puppyId/logs', (req, res) => {
try {
const db = getDatabase();
// Use health_records table with note field to store weight logs
const logs = db.prepare(`
SELECT * FROM health_records
WHERE dog_id = ? AND record_type = 'weight_log'
ORDER BY record_date ASC
`).all(req.params.puppyId);
res.json(logs);
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// POST add weight/health log entry for a puppy
router.post('/:litterId/puppies/:puppyId/logs', (req, res) => {
try {
const { puppyId } = req.params;
const { record_date, weight_oz, weight_lbs, notes, record_type } = req.body;
if (!record_date) return res.status(400).json({ error: 'record_date is required' });
const db = getDatabase();
// Store weight as notes JSON in health_records
const description = JSON.stringify({
weight_oz: weight_oz || null,
weight_lbs: weight_lbs || null,
notes: notes || ''
});
const result = db.prepare(`
INSERT INTO health_records (dog_id, record_type, record_date, description, vet_name)
VALUES (?, ?, ?, ?, ?)
`).run(puppyId, record_type || 'weight_log', record_date, description, null);
const log = db.prepare('SELECT * FROM health_records WHERE id = ?').get(result.lastInsertRowid);
res.status(201).json(log);
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// DELETE weight/health log entry
router.delete('/:litterId/puppies/:puppyId/logs/:logId', (req, res) => {
try {
const db = getDatabase();
db.prepare('DELETE FROM health_records WHERE id = ? AND dog_id = ?').run(req.params.logId, req.params.puppyId);
res.json({ message: 'Log entry deleted' });
} catch (error) {
res.status(500).json({ error: error.message });
}
});
2026-03-08 22:45:27 -05:00
// DELETE litter
router.delete('/:id', (req, res) => {
try {
const db = getDatabase();
db.prepare('UPDATE dogs SET litter_id = NULL WHERE litter_id = ?').run(req.params.id);
2026-03-08 22:45:27 -05:00
db.prepare('DELETE FROM litters WHERE id = ?').run(req.params.id);
res.json({ message: 'Litter deleted successfully' });
} catch (error) {
res.status(500).json({ error: error.message });
}
});
module.exports = router;