added item route details #6
@@ -24,8 +24,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Delete Old Images and Containers
|
- name: Delete Old Images and Containers
|
||||||
run: |
|
run: |
|
||||||
docker ps -a -q -f "name=tcg-collectors-server" | xargs -I {} docker rm {} || true
|
docker ps -a -q -f "name=tcg-collectors-server" | xargs -I {} docker rm -f {} || true
|
||||||
docker images --format "{{.Repository}}:{{.Tag}}" | grep "tcg-collectors-server" | xargs -I {} docker rmi {} || true
|
docker images --format "{{.Repository}}:{{.Tag}}" | grep "tcg-collectors-server" | xargs -I {} docker rmi -f {} || true
|
||||||
|
|
||||||
- name: Build and Push Image
|
- name: Build and Push Image
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"migrations-dir": "./src/migrations"
|
|
||||||
}
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@
|
|||||||
"dev": "nodemon app.js",
|
"dev": "nodemon app.js",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
"lint:fix": "eslint . --fix",
|
"lint:fix": "eslint . --fix",
|
||||||
"migrate": "node-pg-migrate",
|
"migrate": "node-pg-migrate -m ./src/migrations",
|
||||||
"test": "jest --forceExit"
|
"test": "jest --forceExit"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import locationRoutes from './routes/locations'
|
|||||||
import imageRoutes from './routes/images'
|
import imageRoutes from './routes/images'
|
||||||
import collectionRoutes from './routes/collections'
|
import collectionRoutes from './routes/collections'
|
||||||
import setRoutes from './routes/sets'
|
import setRoutes from './routes/sets'
|
||||||
|
import itemRoutes from './routes/items'
|
||||||
|
|
||||||
const app = express()
|
const app = express()
|
||||||
const port = process.env.PORT || 3000
|
const port = process.env.PORT || 3000
|
||||||
@@ -27,6 +28,7 @@ app.use('/locations', locationRoutes)
|
|||||||
app.use('/images', imageRoutes)
|
app.use('/images', imageRoutes)
|
||||||
app.use('/collections', collectionRoutes)
|
app.use('/collections', collectionRoutes)
|
||||||
app.use('/sets', setRoutes)
|
app.use('/sets', setRoutes)
|
||||||
|
app.use('/items', itemRoutes)
|
||||||
|
|
||||||
// Default Route (Catch-all for undefined routes)
|
// Default Route (Catch-all for undefined routes)
|
||||||
app.use((req, res, next) => {
|
app.use((req, res, next) => {
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
export const up = (pgm) => {
|
||||||
|
pgm.sql(`
|
||||||
|
ALTER TABLE "items"
|
||||||
|
ADD CONSTRAINT "set_id"
|
||||||
|
FOREIGN KEY ("set_id")
|
||||||
|
REFERENCES "sets" ("id")
|
||||||
|
ON DELETE CASCADE;
|
||||||
|
`)
|
||||||
|
}
|
||||||
|
|
||||||
|
export const down = (pgm) => {
|
||||||
|
pgm.sql(`
|
||||||
|
ALTER TABLE "items"
|
||||||
|
DROP CONSTRAINT "fk_name";
|
||||||
|
`)
|
||||||
|
}
|
||||||
@@ -0,0 +1,141 @@
|
|||||||
|
import express from 'express'
|
||||||
|
import { Pool } from 'pg'
|
||||||
|
import { database } from '../../config'
|
||||||
|
|
||||||
|
const { check, validationResult } = require('express-validator')
|
||||||
|
|
||||||
|
const router = express.Router()
|
||||||
|
|
||||||
|
// Create a connection pool to the database
|
||||||
|
const pool = new Pool(database)
|
||||||
|
|
||||||
|
// Get all items
|
||||||
|
router.get('/', async (req, res) => {
|
||||||
|
const client = await pool.connect()
|
||||||
|
try {
|
||||||
|
const result = await client.query('SELECT * FROM items')
|
||||||
|
res.json(result.rows)
|
||||||
|
} finally {
|
||||||
|
client.release()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// Get a single item by id
|
||||||
|
router.get('/:id', async (req, res) => {
|
||||||
|
const { id } = req.params
|
||||||
|
const client = await pool.connect()
|
||||||
|
try {
|
||||||
|
const result = await client.query('SELECT * FROM items WHERE id = $1', [id])
|
||||||
|
if (result.rows.length === 0) {
|
||||||
|
return res.status(404).json({ message: 'Item not found' })
|
||||||
|
}
|
||||||
|
res.json(result.rows[0])
|
||||||
|
} finally {
|
||||||
|
client.release()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// Create a new item
|
||||||
|
router.post(
|
||||||
|
'/',
|
||||||
|
[
|
||||||
|
check('collection_id').not().isEmpty(),
|
||||||
|
check('image_id').not().isEmpty(),
|
||||||
|
check('productId').not().isEmpty(),
|
||||||
|
check('name').not().isEmpty(),
|
||||||
|
check('cleanName').not().isEmpty(),
|
||||||
|
check('extCardText').not().isEmpty(),
|
||||||
|
check('marketPrice').not().isEmpty(),
|
||||||
|
check('extRarity').not().isEmpty(),
|
||||||
|
check('set_id').not().isEmpty(), // Add validation for set_id
|
||||||
|
],
|
||||||
|
async (req, res) => {
|
||||||
|
const errors = validationResult(req)
|
||||||
|
if (!errors.isEmpty()) {
|
||||||
|
return res.status(400).json({ errors: errors.array() })
|
||||||
|
}
|
||||||
|
const {
|
||||||
|
collection_id,
|
||||||
|
image_id,
|
||||||
|
productId,
|
||||||
|
name,
|
||||||
|
cleanName,
|
||||||
|
extCardText,
|
||||||
|
marketPrice,
|
||||||
|
extRarity,
|
||||||
|
set_id,
|
||||||
|
} = req.body
|
||||||
|
const client = await pool.connect()
|
||||||
|
try {
|
||||||
|
const result = await client.query(
|
||||||
|
'INSERT INTO items (collection_id, image_id, productId, name, cleanName, extCardText, marketPrice, extRarity, set_id, created_at, updated_at) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, NOW(), NOW()) RETURNING *',
|
||||||
|
[
|
||||||
|
collection_id,
|
||||||
|
image_id,
|
||||||
|
productId,
|
||||||
|
name,
|
||||||
|
cleanName,
|
||||||
|
extCardText,
|
||||||
|
marketPrice,
|
||||||
|
extRarity,
|
||||||
|
set_id,
|
||||||
|
]
|
||||||
|
)
|
||||||
|
res.status(201).json(result.rows[0])
|
||||||
|
} finally {
|
||||||
|
client.release()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
// Update an existing item
|
||||||
|
router.put('/:id', async (req, res) => {
|
||||||
|
const { id } = req.params
|
||||||
|
const updates = {}
|
||||||
|
if (req.body.collection_id) updates.collection_id = req.body.collection_id
|
||||||
|
if (req.body.image_id) updates.image_id = req.body.image_id
|
||||||
|
if (req.body.productId) updates.productId = req.body.productId
|
||||||
|
if (req.body.name) updates.name = req.body.name
|
||||||
|
if (req.body.cleanName) updates.cleanName = req.body.cleanName
|
||||||
|
if (req.body.extCardText) updates.extCardText = req.body.extCardText
|
||||||
|
if (req.body.marketPrice) updates.marketPrice = req.body.marketPrice
|
||||||
|
if (req.body.extRarity) updates.extRarity = req.body.extRarity
|
||||||
|
const client = await pool.connect()
|
||||||
|
try {
|
||||||
|
if (Object.keys(updates).length > 0) {
|
||||||
|
const updateFields = Object.keys(updates)
|
||||||
|
.map((key) => `${key} = $${Object.keys(updates).indexOf(key) + 2}`)
|
||||||
|
.join(', ')
|
||||||
|
updates.updated_at = 'NOW()'
|
||||||
|
const result = await client.query(
|
||||||
|
`UPDATE items SET ${updateFields}, updated_at = $${Object.keys(updates).length + 1} WHERE id = $1 RETURNING *`,
|
||||||
|
[id, ...Object.values(updates)]
|
||||||
|
)
|
||||||
|
if (result.rows.length === 0) {
|
||||||
|
return res.status(404).json({ message: 'Item not found' })
|
||||||
|
}
|
||||||
|
res.json(result.rows[0])
|
||||||
|
} else {
|
||||||
|
return res.status(204).json()
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
client.release()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// Delete an item
|
||||||
|
router.delete('/:id', async (req, res) => {
|
||||||
|
const { id } = req.params
|
||||||
|
const client = await pool.connect()
|
||||||
|
try {
|
||||||
|
const result = await client.query('DELETE FROM items WHERE id = $1', [id])
|
||||||
|
if (result.rows.length === 0) {
|
||||||
|
return res.status(404).json({ message: 'Item not found' })
|
||||||
|
}
|
||||||
|
res.json({ message: 'Item deleted' })
|
||||||
|
} finally {
|
||||||
|
client.release()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
export default router
|
||||||
@@ -109,4 +109,4 @@ router.delete('/:id', async (req, res) => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
module.exports = router
|
export default router
|
||||||
|
|||||||
Reference in New Issue
Block a user