adding a comment backend, experimenting with static html frontend (plus bash)

This commit is contained in:
notnull 2019-02-14 08:59:14 -08:00
parent df2afd36e2
commit 24ae647142
17 changed files with 258 additions and 129 deletions

View File

@ -1,43 +1,40 @@
const router = require('express').Router(); const router = require('express').Router()
const { Article } = require('../db/models'); const { Article } = require('../db/models')
const buildPage = require('./buildPage'); const buildPage = require('../scripts/buildPage')
const buildTable = require('../scripts/buildArticleTable')
module.exports = router; module.exports = router
router.get('/', async (req, res, next) => { router.get('/', async (req, res, next) => {
try { try {
const articles = await Article.findAll(); const articles = await Article.findAll()
const tbl = articles const tbl = buildTable(articles)
.map( const page = buildPage(tbl)
article => `<tr><td>${article.title}</td><td>${article.link}</td></tr>` console.log('REEEEEEEEEEEEEEEEEEE\n', page, tbl)
) res.status(201).send(page)
.join();
const page = buildPage(tbl);
console.log(page);
res.status(201).send(page);
} catch (err) { } catch (err) {
next(err); next(err)
} }
}); })
router.get('/:id', async (req, res, next) => { router.get('/:id', async (req, res, next) => {
try { try {
const article = await Article.findById(req.params.id); const article = await Article.findById(req.params.id)
console.log(article.title); console.log(article.title)
console.log(`by: ${article.author}`); console.log(`by: ${article.author}`)
console.log(article.text); console.log(article.text)
res.status(201).send(article); res.status(201).send(article)
} catch (err) { } catch (err) {
next(err); next(err)
} }
}); })
router.post('/', async (req, res, next) => { router.post('/', async (req, res, next) => {
const body = req.body; const body = req.body
try { try {
const article = await Article.create(body); const article = await Article.create(body)
res.redirect(article.id); res.redirect(article.id)
} catch (err) { } catch (err) {
next(err); next(err)
} }
}); })

27
api/comments.js Normal file
View File

@ -0,0 +1,27 @@
const router = require('express').Router()
const { Comment } = require('../db/models')
const buildPage = require('../scripts/buildPage')
module.exports = router
router.get('/', async (req, res, next) => {
try {
const comments = await Comment.findAll({
attributes: ['id', 'title', 'content', 'userId', 'parentId'],
})
const page = buildPage(
res.status(201).send()
} catch (err) {
next(err)
}
})
router.post('/', async (req, res, next) => {
const newComment = req.body // good sanitization
try {
const comment = await Comment.create(newComment)
res.redirect('http://localhost:1337')
} catch (err) {
next(err)
}
})

View File

@ -1,20 +1,21 @@
const router = require('express').Router(); const router = require('express').Router()
module.exports = router; module.exports = router
router.use('/items', require('./items')); router.use('/items', require('./items'))
router.use('/articles', require('./articles')); router.use('/articles', require('./articles'))
router.use('/comments', require('./comments'))
router.get('/', async (req, res, next) => { router.get('/', async (req, res, next) => {
try { try {
res.send('/n-------/nHello from Express!/n--------/n'); res.send('/n-------/nHello from Express!/n--------/n')
} catch (err) { } catch (err) {
next(err); next(err)
} }
}); })
router.use((req, res, next) => { router.use((req, res, next) => {
const error = new Error('Not Found!!!!!!!'); const error = new Error('Not Found!!!!!!!')
error.status = 404; error.status = 404
next(error); next(error)
}); })

13
api/users.js Normal file
View File

@ -0,0 +1,13 @@
const router = require('express').Router()
const { User } = require('../db/models')
module.exports = router
router.get('/', async (req, res, next) => {
try {
const users = await User.findAll({ include: User })
res.status(201).json(users)
} catch (err) {
next(err)
}
})

View File

@ -7,8 +7,7 @@ const createDB = () => {
const db = new Sequelize( const db = new Sequelize(
process.env.DATABASE_URL || `postgres://localhost:5432/${databaseName}`, process.env.DATABASE_URL || `postgres://localhost:5432/${databaseName}`,
{ {
logging: false, operatorsAliases: false,
operatorsAliases: false
} }
) )
return db return db

View File

@ -1,19 +1,5 @@
const db = require('./db') const db = require('./db')
const {Article, Vote, User} = require('./models');
// sigh
// I am using Sequelize as an ORM for the database.
// It has its own syntax for defining the relations
// in the database. Something like the following:
Article.belongsTo(User)
User.hasMany(Article)
Article.hasMany(Vote)
Vote.belongsTo(Article)
Vote.belongsTo(User)
User.hasMany(Vote)
// the questions are: // the questions are:
// 1. how to store votes in the database? as a count on the article? this would be less accurate but ok for the beginning <- I am not a fan of this approach // 1. how to store votes in the database? as a count on the article? this would be less accurate but ok for the beginning <- I am not a fan of this approach
// 2. what votes do we count? (anon, per ip address, cookies?) to build relations between votes we need a concept of users based identification <- yep! // 2. what votes do we count? (anon, per ip address, cookies?) to build relations between votes we need a concept of users based identification <- yep!

View File

@ -1,19 +1,19 @@
const Item = require('./item') const Item = require('./item')
const Article = require('./article') const Article = require('./article')
const Comment = require('./comment') const Comment = require('./comment')
//const User = require('./user') const User = require('./user')
Article.hasMany(Comment) //puts postId on Comment Article.hasMany(Comment) // allows for addComment
Comment.belongsTo(Article) Comment.belongsTo(Article)
//User.hasMany(Article) //puts userId on Post, creates instance method 'user.getPosts()' User.hasMany(Article)
//Article.belongsTo(User) // creates instance method 'post.getUser()'' Article.belongsTo(User) // allows for setUser
//User.hasMany(Comment) //puts userId on Comment User.hasMany(Comment)
//Comment.belongsTo(User) //puts userId on Comment Comment.belongsTo(User)
// TODO // i understand more now: parent must be set instead of reply.
//Comment.belongsTo(Comment, { as: 'parent' })
//Comment.hasMany(Comment, { as: { singular: 'reply', plural: 'replies' } })
module.exports = { Item, Article, Comment } Comment.belongsTo(Comment, { as: 'parent' }) // setParent
module.exports = { Item, Article, Comment, User }

View File

@ -11,22 +11,21 @@ const User = db.define('user', {
email: { email: {
type: Sequelize.STRING, type: Sequelize.STRING,
unique: true, unique: true,
allowNull: false
}, },
firstName: { firstName: {
type: Sequelize.STRING type: Sequelize.STRING,
}, },
lastName: { lastName: {
type: Sequelize.STRING type: Sequelize.STRING,
}, },
username: { username: {
type: Sequelize.STRING, type: Sequelize.STRING,
unique: true, unique: true,
allowNull: false allowNull: false,
}, },
imageUrl: { imageUrl: {
type: Sequelize.STRING, type: Sequelize.STRING,
defaultValue: 'novatore.jpg' defaultValue: 'novatore.jpg',
}, },
password: { password: {
@ -35,7 +34,7 @@ const User = db.define('user', {
// This is a hack to get around Sequelize's lack of a "private" option. // This is a hack to get around Sequelize's lack of a "private" option.
get() { get() {
return () => this.getDataValue('password') return () => this.getDataValue('password')
} },
}, },
salt: { salt: {
type: Sequelize.STRING, type: Sequelize.STRING,
@ -43,11 +42,8 @@ const User = db.define('user', {
// This is a hack to get around Sequelize's lack of a "private" option. // This is a hack to get around Sequelize's lack of a "private" option.
get() { get() {
return () => this.getDataValue('salt') return () => this.getDataValue('salt')
} },
}, },
googleId: {
type: Sequelize.STRING
}
}) })
module.exports = User module.exports = User

View File

@ -1,41 +1,63 @@
const db = require("../db"); const db = require('../db')
const { Article, Comment, User } = require("./models"); const { Article, Comment, User } = require('./models')
// WHYYYYYYY
const testArticle = {
title: "read desert",
link: "https://readdesert.org"
};
const testArticle = {
title: 'read desert',
link: 'https://readdesert.org',
}
const testArticle2 = {
title: 'the best place ever',
link: 'https://irc.anarchyplanet.org',
}
const testComment = { const testComment = {
title: "best essay ever", title: 'best essay ever',
content: "read the sand book already!" content: 'read the sand book already!',
}; }
const testReply = {
title: 'u r so dumb',
content: 'i hate anews :P',
}
const testReply2 = {
title: 'best essay ever',
content: 'read the sand book already!',
}
const testUser = { const testUser = {
nick: "nn" username: 'nn',
}; }
async function runSeed() { async function runSeed() {
await db.sync({ force: true }); await db.sync({ force: true })
console.log("db synced!"); console.log('db synced!')
console.log("seeding..."); console.log('seeding...')
try { try {
const article = await Article.create(testArticle); const article = await Article.create(testArticle)
const user = await User.create(testUser); const user = await User.create(testUser)
const c1 = await Comment.create(testComment); const c1 = await Comment.create(testComment)
c1.addUser(user); const c2 = await Comment.create(testReply)
article.addUser(user); const c3 = await Comment.create(testReply2)
article.addComment(c1); await article.setUser(user)
console.log("seeded successfully"); await c1.setUser(user)
await c2.setUser(user)
await article.addComment(c1)
await c2.setParent(c1)
await c3.setParent(c2)
// await c2.setParent(c1)
console.log('seeded successfully')
} catch (err) { } catch (err) {
console.error(err); console.error(err)
process.exitCode = 1; process.exitCode = 1
} finally { } finally {
console.log("closing db connection"); console.log('closing db connection')
await db.close(); await db.close()
console.log("db connection closed"); console.log('db connection closed')
} }
} }
runSeed(); runSeed()

View File

@ -1,47 +1,45 @@
const fetch = require('node-fetch'); const fetch = require('node-fetch')
// implemented from: https://github.com/HackerNews/API // implemented from: https://github.com/HackerNews/API
const HN_PREFIX = 'https://hacker-news.firebaseio.com/v0/'; const HN_PREFIX = 'https://hacker-news.firebaseio.com/v0/'
const TOP_STORIES = 'topstories'; const TOP_STORIES = 'topstories'
const ITEM = 'item'; const ITEM = 'item'
function hnFetch(type, id = '') { function hnFetch(type, id = '') {
const url = id const url = id ? `${HN_PREFIX}${type}/${id}.json` : `${HN_PREFIX}${type}.json`
? `${HN_PREFIX}${type}/${id}.json`
: `${HN_PREFIX}${type}.json`;
return fetch(url, { return fetch(url, {
method: 'GET', method: 'GET',
headers: { headers: {
'Content-Type': 'application/json' 'Content-Type': 'application/json',
} },
}) })
.then(res => { .then(res => {
if (!isStatusOk(res.status)) { if (!isStatusOk(res.status)) {
throw res; throw res
} }
return res.json(); return res.json()
}) })
.then(res => res) .then(res => res)
.catch(error => console.error(error)); .catch(error => console.error(error))
} }
function isStatusOk(statusCode) { function isStatusOk(statusCode) {
return statusCode === 200 || statusCode === 304; return statusCode === 200 || statusCode === 304
} }
async function main() { async function main() {
const storyIds = await hnFetch(TOP_STORIES); const storyIds = await hnFetch(TOP_STORIES)
const stories = await Promise.all( const stories = await Promise.all(
storyIds.slice(0, 20).map(storyId => hnFetch(ITEM, storyId)) storyIds.slice(0, 20).map(storyId => hnFetch(ITEM, storyId))
); )
console.log( console.log(
stories.map(story => { stories.map(story => {
delete story.kids; delete story.kids
return story; return story
}) })
); )
} }
main(); main()

View File

@ -22,10 +22,9 @@ app.use(express.json())
app.use(express.urlencoded({ extended: true })) app.use(express.urlencoded({ extended: true }))
app.use(require('body-parser').text()) app.use(require('body-parser').text())
app.use('/api', require('./api')) app.use('/api', require('./api'))
app.use('/articles', require('./api/articles'))
app.get('*', (req, res) => app.get('*', (req, res) => res.send('try again.'))
res.sendFile(path.resolve(__dirname, 'public', 'articles.html'))
)
// error handling endware // error handling endware
app.use((err, req, res, next) => { app.use((err, req, res, next) => {

43
public/articles.js Normal file
View File

@ -0,0 +1,43 @@
const router = require('express').Router()
const { Article } = require('../db/models')
const buildPage = require('./buildPage')
module.exports = router
router.get('/', async (req, res, next) => {
try {
const articles = await Article.findAll()
const tbl = articles
.map(
article => `<tr><td>${article.title}</td><td>${article.link}</td></tr>`
)
.join()
const page = buildPage(tbl)
console.log(page)
res.status(201).send(page)
} catch (err) {
next(err)
}
})
router.get('/:id', async (req, res, next) => {
try {
const article = await Article.findById(req.params.id)
console.log(article.title)
console.log(`by: ${article.author}`)
console.log(article.text)
res.status(201).send(article)
} catch (err) {
next(err)
}
})
router.post('/', async (req, res, next) => {
const body = req.body
try {
const article = await Article.create(body)
res.redirect(article.id)
} catch (err) {
next(err)
}
})

21
public/form.html Normal file
View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<body>
<h2>Haxor Newz</h2>
<h3>much l337. very inform.</h3>
<form action="http://localhost:1337/api/comments" method="POST">
title:<br>
<input type="text" name="title" value="">
<br>
content:<br>
<textarea rows="4" cols="50" name="content"> </textarea>
<br>
<input type="submit" value="Submit">
</form>
<p> &#9398; anarchy planet </p>
</body>
</html>

View File

@ -0,0 +1,11 @@
const buildTable = articles =>
articles
.map(
article =>
`<tr><td><a href="${article.link}">${article.title}</a></td><td>${
article.content
}</td></tr>`
)
.join()
module.exports = buildTable

View File

@ -19,4 +19,4 @@ module.exports = listString =>
</body> </body>
</html> </html>
`; `

16
scripts/post.sh Executable file
View File

@ -0,0 +1,16 @@
#!/usr/bin/env bash
# read user input: http://mywiki.wooledge.org/BashFAQ/078
URL='http://localhost:1337/api/comments'
read -p "title: " title
read -p "content: " content
DATA="{\"title\": \"$title\", \"content\": \"$content\"}"
echo "Posting $DATA to $URL"
curl -H "Content-Type: application/json" -X POST -d "$DATA" "$URL"
exit 0
#http://goinbigdata.com/using-curl-for-ad-hoc-testing-of-restful-microservices/
#https://stackoverflow.com/questions/7172784/how-to-post-json-data-with-curl-from-terminal-commandline-to-test-spring-rest