mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.8 KiB
64 lines
1.8 KiB
const fs = require('fs')
|
|
const bodyParser = require('body-parser')
|
|
const express = require('express')
|
|
const router = express.Router()
|
|
let db = JSON.parse(fs.readFileSync('./api/db/members.json', 'utf8'))
|
|
const users = JSON.parse(fs.readFileSync('./api/db/users.json', 'utf8'))
|
|
router.use(bodyParser.json())
|
|
router.use(bodyParser.urlencoded({ extended: true }))
|
|
|
|
// Get project user list.
|
|
router.get('/', (req, res) => {
|
|
const q = req.query.q
|
|
if (q) {
|
|
res.json(db.filter(item => item.name.toLowerCase().includes(q.toLowerCase())))
|
|
} else {
|
|
res.json(db)
|
|
}
|
|
})
|
|
|
|
// Add a project user.
|
|
router.post('/', (req, res) => {
|
|
const user = users.find(item => item.id === parseInt(req.body.id, 10))
|
|
const member = {
|
|
...user,
|
|
role: req.body.role
|
|
}
|
|
db.push(member)
|
|
res.json(member)
|
|
})
|
|
|
|
// Update a project user.
|
|
router.put('/:userId', (req, res) => {
|
|
const projectIndex = db.findIndex(item => item.id === parseInt(req.params.userId, 10))
|
|
if (projectIndex !== -1) {
|
|
db[projectIndex] = req.body
|
|
res.json(db[projectIndex])
|
|
} else {
|
|
res.status(404).json({ detail: 'Not found.' })
|
|
}
|
|
})
|
|
|
|
// Partially update a project user.
|
|
router.patch('/:userId', (req, res) => {
|
|
const projectIndex = db.findIndex(item => item.id === parseInt(req.params.userId, 10))
|
|
if (projectIndex !== -1) {
|
|
db[projectIndex].role = req.body.role
|
|
res.json(db[projectIndex])
|
|
} else {
|
|
res.status(404).json({ detail: 'Not found.' })
|
|
}
|
|
})
|
|
|
|
// Delete a project user.
|
|
router.delete('/:userId', (req, res, next) => {
|
|
const project = db.find(item => item.id === parseInt(req.params.userId, 10))
|
|
if (project) {
|
|
db = db.filter(item => item.id !== parseInt(req.params.userId, 10))
|
|
res.json(project)
|
|
} else {
|
|
res.status(404).json({ detail: 'Not found.' })
|
|
}
|
|
})
|
|
|
|
module.exports = router
|