generated from ctc-uci/npo-backend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
49 update published schedule and day backend routes (#50)
* Added basic routes for day table, updated app.js * Published Schedule Routes updated to work with day id * Added calculations of grad year number given junior/senior standing, relative to current day * Updated date calculations to be based on the event date and not current date * New Column in Day table, published_schedule POST/PUT/DELETE routes modify start/end times of Day table * converted from type timestamp to time for published_schedule * rewrite query + minor fixes --------- Co-authored-by: michellelin1 <[email protected]>
- Loading branch information
1 parent
2434108
commit 8a05522
Showing
5 changed files
with
351 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
const express = require('express'); | ||
const { db } = require('../server/db'); | ||
const { keysToCamel } = require('../common/utils'); | ||
|
||
const dayRouter = express.Router(); | ||
|
||
// GET - returns all days in the table | ||
dayRouter.get('/', async (req, res) => { | ||
try { | ||
const allDays = await db.query(`SELECT * FROM day;`); | ||
res.status(200).json(keysToCamel(allDays)); | ||
} catch (err) { | ||
res.status(500).send(err.message); | ||
} | ||
}); | ||
|
||
// GET - returns a day by eventDate parameter | ||
dayRouter.get('/date', async (req, res) => { | ||
try { | ||
const { eventDate } = req.query; | ||
const dayByDate = await db.query(`SELECT * FROM day WHERE event_date = $1;`, [eventDate]); | ||
res.status(200).json(keysToCamel(dayByDate)); | ||
} catch (err) { | ||
res.status(500).send(err.message); | ||
} | ||
}); | ||
|
||
// GET - returns a day by id | ||
dayRouter.get('/:id', async (req, res) => { | ||
try { | ||
const { id } = req.params; | ||
const dayById = await db.query(`SELECT * FROM day WHERE id = $1;`, [id]); | ||
res.status(200).json(keysToCamel(dayById)); | ||
} catch (err) { | ||
res.status(500).send(err.message); | ||
} | ||
}); | ||
|
||
// POST - creates a new day | ||
dayRouter.post('/', async (req, res) => { | ||
try { | ||
const { eventDate, location, notes } = req.body; | ||
const newDay = await db.query( | ||
` | ||
INSERT INTO day ( | ||
id, | ||
event_date, | ||
start_time, | ||
end_time, | ||
location, | ||
notes, | ||
day_count | ||
) VALUES ( | ||
nextval('day_id_seq'), $1, '23:59:59', '00:00:00', $2, $3, 0 | ||
) RETURNING id; | ||
`, | ||
[eventDate, location, notes], | ||
); | ||
res.status(201).json({ | ||
status: 'Success', | ||
id: newDay[0].id, | ||
}); | ||
} catch (err) { | ||
res.status(500).send(err.message); | ||
} | ||
}); | ||
|
||
// PUT - modifies an existing day | ||
dayRouter.put('/:id', async (req, res) => { | ||
try { | ||
const { id } = req.params; | ||
const { eventDate, startTime, endTime, location, notes } = req.body; | ||
const updatedDay = await db.query( | ||
` | ||
UPDATE day | ||
SET | ||
event_date = COALESCE($1, event_date), | ||
start_time = COALESCE($2, start_time), | ||
end_time = COALESCE($3, end_time), | ||
location = COALESCE($4, location), | ||
notes = COALESCE($5, notes) | ||
WHERE id = $6 | ||
RETURNING *; | ||
`, | ||
[eventDate, startTime, endTime, location, notes, id], | ||
); | ||
res.status(200).send(keysToCamel(updatedDay)); | ||
} catch (err) { | ||
res.status(500).send(err.message); | ||
} | ||
}); | ||
|
||
// DELETE - deletes an existing day | ||
dayRouter.delete('/:id', async (req, res) => { | ||
try { | ||
const { id } = req.params; | ||
const deletedDay = await db.query(`DELETE FROM day WHERE id = $1 RETURNING *;`, [id]); | ||
res.status(200).send(keysToCamel(deletedDay)); | ||
} catch (err) { | ||
res.status(500).send(err.message); | ||
} | ||
}); | ||
module.exports = dayRouter; |
Oops, something went wrong.