From fc7c15529202dce8a55baa7237dfeea47db51595 Mon Sep 17 00:00:00 2001 From: Shandi Yuwono Date: Wed, 3 Jul 2019 09:24:06 +0700 Subject: [PATCH 1/8] overflow --- .gitignore | 21 +++++ client/.browserslistrc | 2 + client/.editorconfig | 5 ++ client/.eslintrc.js | 17 ++++ client/README.md | 29 +++++++ client/babel.config.js | 5 ++ client/package.json | 27 +++++++ client/postcss.config.js | 5 ++ client/public/favicon.ico | Bin 0 -> 4286 bytes client/public/index.html | 18 +++++ client/src/App.vue | 38 +++++++++ client/src/assets/logo.png | Bin 0 -> 6849 bytes client/src/components/navbar.vue | 94 +++++++++++++++++++++++ client/src/components/posts.vue | 57 ++++++++++++++ client/src/main.js | 16 ++++ client/src/router.js | 12 +++ client/src/store.js | 16 ++++ server/app.js | 42 ++++++++++ server/controllers/answercontroller.js | 43 +++++++++++ server/controllers/questioncontroller.js | 62 +++++++++++++++ server/controllers/usercontroller.js | 49 ++++++++++++ server/helpers/bcrypt.js | 12 +++ server/helpers/jwt.js | 10 +++ server/middlewares/authentication.js | 19 +++++ server/middlewares/authorization.js | 58 ++++++++++++++ server/models/answer.js | 25 ++++++ server/models/question.js | 22 ++++++ server/models/user.js | 55 +++++++++++++ server/package.json | 29 +++++++ server/routes/answerrouter.js | 0 server/routes/index.js | 9 +++ server/routes/questionrouter.js | 13 ++++ server/routes/userrouter.js | 7 ++ 33 files changed, 817 insertions(+) create mode 100644 .gitignore create mode 100644 client/.browserslistrc create mode 100644 client/.editorconfig create mode 100644 client/.eslintrc.js create mode 100644 client/README.md create mode 100644 client/babel.config.js create mode 100644 client/package.json create mode 100644 client/postcss.config.js create mode 100644 client/public/favicon.ico create mode 100644 client/public/index.html create mode 100644 client/src/App.vue create mode 100644 client/src/assets/logo.png create mode 100644 client/src/components/navbar.vue create mode 100644 client/src/components/posts.vue create mode 100644 client/src/main.js create mode 100644 client/src/router.js create mode 100644 client/src/store.js create mode 100644 server/app.js create mode 100644 server/controllers/answercontroller.js create mode 100644 server/controllers/questioncontroller.js create mode 100644 server/controllers/usercontroller.js create mode 100644 server/helpers/bcrypt.js create mode 100644 server/helpers/jwt.js create mode 100644 server/middlewares/authentication.js create mode 100644 server/middlewares/authorization.js create mode 100644 server/models/answer.js create mode 100644 server/models/question.js create mode 100644 server/models/user.js create mode 100644 server/package.json create mode 100644 server/routes/answerrouter.js create mode 100644 server/routes/index.js create mode 100644 server/routes/questionrouter.js create mode 100644 server/routes/userrouter.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a0dddc6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +.DS_Store +node_modules +/dist + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/client/.browserslistrc b/client/.browserslistrc new file mode 100644 index 0000000..d6471a3 --- /dev/null +++ b/client/.browserslistrc @@ -0,0 +1,2 @@ +> 1% +last 2 versions diff --git a/client/.editorconfig b/client/.editorconfig new file mode 100644 index 0000000..7053c49 --- /dev/null +++ b/client/.editorconfig @@ -0,0 +1,5 @@ +[*.{js,jsx,ts,tsx,vue}] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/client/.eslintrc.js b/client/.eslintrc.js new file mode 100644 index 0000000..98d0431 --- /dev/null +++ b/client/.eslintrc.js @@ -0,0 +1,17 @@ +module.exports = { + root: true, + env: { + node: true + }, + 'extends': [ + 'plugin:vue/essential', + '@vue/standard' + ], + rules: { + 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', + 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' + }, + parserOptions: { + parser: 'babel-eslint' + } +} diff --git a/client/README.md b/client/README.md new file mode 100644 index 0000000..0297c85 --- /dev/null +++ b/client/README.md @@ -0,0 +1,29 @@ +# client + +## Project setup +``` +npm install +``` + +### Compiles and hot-reloads for development +``` +npm run serve +``` + +### Compiles and minifies for production +``` +npm run build +``` + +### Run your tests +``` +npm run test +``` + +### Lints and fixes files +``` +npm run lint +``` + +### Customize configuration +See [Configuration Reference](https://cli.vuejs.org/config/). diff --git a/client/babel.config.js b/client/babel.config.js new file mode 100644 index 0000000..ba17966 --- /dev/null +++ b/client/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/app' + ] +} diff --git a/client/package.json b/client/package.json new file mode 100644 index 0000000..36a4861 --- /dev/null +++ b/client/package.json @@ -0,0 +1,27 @@ +{ + "name": "client", + "version": "0.1.0", + "private": true, + "scripts": { + "serve": "vue-cli-service serve", + "build": "vue-cli-service build", + "lint": "vue-cli-service lint" + }, + "dependencies": { + "core-js": "^2.6.5", + "vue": "^2.6.10", + "vue-router": "^3.0.3", + "vuetify": "^1.5.16", + "vuex": "^3.0.1" + }, + "devDependencies": { + "@vue/cli-plugin-babel": "^3.8.0", + "@vue/cli-plugin-eslint": "^3.8.0", + "@vue/cli-service": "^3.8.0", + "@vue/eslint-config-standard": "^4.0.0", + "babel-eslint": "^10.0.1", + "eslint": "^5.16.0", + "eslint-plugin-vue": "^5.0.0", + "vue-template-compiler": "^2.6.10" + } +} diff --git a/client/postcss.config.js b/client/postcss.config.js new file mode 100644 index 0000000..961986e --- /dev/null +++ b/client/postcss.config.js @@ -0,0 +1,5 @@ +module.exports = { + plugins: { + autoprefixer: {} + } +} diff --git a/client/public/favicon.ico b/client/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 GIT binary patch literal 4286 zcmds*O-Phc6o&64GDVCEQHxsW(p4>LW*W<827=Unuo8sGpRux(DN@jWP-e29Wl%wj zY84_aq9}^Am9-cWTD5GGEo#+5Fi2wX_P*bo+xO!)p*7B;iKlbFd(U~_d(U?#hLj56 zPhFkj-|A6~Qk#@g^#D^U0XT1cu=c-vu1+SElX9NR;kzAUV(q0|dl0|%h|dI$%VICy zJnu2^L*Te9JrJMGh%-P79CL0}dq92RGU6gI{v2~|)p}sG5x0U*z<8U;Ij*hB9z?ei z@g6Xq-pDoPl=MANPiR7%172VA%r)kevtV-_5H*QJKFmd;8yA$98zCxBZYXTNZ#QFk2(TX0;Y2dt&WitL#$96|gJY=3xX zpCoi|YNzgO3R`f@IiEeSmKrPSf#h#Qd<$%Ej^RIeeYfsxhPMOG`S`Pz8q``=511zm zAm)MX5AV^5xIWPyEu7u>qYs?pn$I4nL9J!=K=SGlKLXpE<5x+2cDTXq?brj?n6sp= zphe9;_JHf40^9~}9i08r{XM$7HB!`{Ys~TK0kx<}ZQng`UPvH*11|q7&l9?@FQz;8 zx!=3<4seY*%=OlbCbcae?5^V_}*K>Uo6ZWV8mTyE^B=DKy7-sdLYkR5Z?paTgK-zyIkKjIcpyO z{+uIt&YSa_$QnN_@t~L014dyK(fOOo+W*MIxbA6Ndgr=Y!f#Tokqv}n<7-9qfHkc3 z=>a|HWqcX8fzQCT=dqVbogRq!-S>H%yA{1w#2Pn;=e>JiEj7Hl;zdt-2f+j2%DeVD zsW0Ab)ZK@0cIW%W7z}H{&~yGhn~D;aiP4=;m-HCo`BEI+Kd6 z={Xwx{TKxD#iCLfl2vQGDitKtN>z|-AdCN|$jTFDg0m3O`WLD4_s#$S literal 0 HcmV?d00001 diff --git a/client/public/index.html b/client/public/index.html new file mode 100644 index 0000000..59d093b --- /dev/null +++ b/client/public/index.html @@ -0,0 +1,18 @@ + + + + + + + + + HacktivOverflow + + + +
+ + + diff --git a/client/src/App.vue b/client/src/App.vue new file mode 100644 index 0000000..4e0b846 --- /dev/null +++ b/client/src/App.vue @@ -0,0 +1,38 @@ + + + + + + diff --git a/client/src/assets/logo.png b/client/src/assets/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d2503fc2a44b5053b0837ebea6e87a2d339a43 GIT binary patch literal 6849 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 +
+ + + + + + + + Hacktiv Overflow + + + +
+ + + + + diff --git a/client/src/components/posts.vue b/client/src/components/posts.vue new file mode 100644 index 0000000..8e6d971 --- /dev/null +++ b/client/src/components/posts.vue @@ -0,0 +1,57 @@ + + + + + diff --git a/client/src/main.js b/client/src/main.js new file mode 100644 index 0000000..14cae22 --- /dev/null +++ b/client/src/main.js @@ -0,0 +1,16 @@ +import Vue from 'vue' +import App from './App.vue' +import router from './router' +import store from './store' +import Vuetify from 'vuetify' +import 'vuetify/dist/vuetify.min.css' + +Vue.use(Vuetify) + +Vue.config.productionTip = false + +new Vue({ + router, + store, + render: h => h(App) +}).$mount('#app') diff --git a/client/src/router.js b/client/src/router.js new file mode 100644 index 0000000..b41aba7 --- /dev/null +++ b/client/src/router.js @@ -0,0 +1,12 @@ +import Vue from 'vue' +import Router from 'vue-router' + + +Vue.use(Router) + +export default new Router({ + mode: 'history', + base: process.env.BASE_URL, + routes: [ + ] +}) diff --git a/client/src/store.js b/client/src/store.js new file mode 100644 index 0000000..3c7424e --- /dev/null +++ b/client/src/store.js @@ -0,0 +1,16 @@ +import Vue from 'vue' +import Vuex from 'vuex' + +Vue.use(Vuex) + +export default new Vuex.Store({ + state: { + + }, + mutations: { + + }, + actions: { + + } +}) diff --git a/server/app.js b/server/app.js new file mode 100644 index 0000000..9c3e19a --- /dev/null +++ b/server/app.js @@ -0,0 +1,42 @@ +const express = require('express'); +const app = express(); +const routes = require('./routes'); +const port = 3000; +const cors = require('cors'); + +if (!process.env.NODE_ENV || process.env.NODE_ENV === 'development') { + require('dotenv').config() +} + +app.use(express.urlencoded({extended: false})); +app.use(express.json()); + +app.use(cors()); +app.use('/', routes) + +const mongoose = require('mongoose'); +const url = 'mongodb://localhost:27017/project' +mongoose.connect(url, {useNewUrlParser: true}, (err) => { + if(err) { + console.log(err) + } + else { + console.log('mongoose connected') + } +}) + +app.use(function(err,req,res,next){ + if(err.code === 404) { + res.status(404).json({ message: 'Resource not found' }) + } else if(err.name === 'ValidationError') { + res.status(500).json({ message: err.message }) + } else { + const message = err.message + const status = err.code || 500 + res.status(status).json({ message: message }) + } +}); + +app.listen(port, () => console.log(`listening on port port`)) + +//install axios, bcrypt, cors, dotenv, express, jwt, mongoose \ No newline at end of file diff --git a/server/controllers/answercontroller.js b/server/controllers/answercontroller.js new file mode 100644 index 0000000..3a84d86 --- /dev/null +++ b/server/controllers/answercontroller.js @@ -0,0 +1,43 @@ +const Answer = require('../models/answer') +const Question = require('../models/question') + +class AnswerController { + static getAnswers(req,res,next) { + Answer.find({ + // question: + }) + } + + static addAnswer(req,res,next) { + const { title, description, questionId } = req.body + + Answer.create({ + user: req.decode.id, + title: title, + description: description, + upvotes: 0, + downvotes: 0, + question: questionId + }) + .then(answer => { + res.status(201).json(answer) + }) + .catch(next) + } + + static editAnswer(req,res,next) { + const { title, description, question} + } + + static deleteAnswer(req,res,next) { + Answer.deleteOne({ + _id: req.params.id + }) + .then(deleted => { + res.status(200).json(deleted) + }) + .catch(next) + } +} + +module.exports = AnswerController \ No newline at end of file diff --git a/server/controllers/questioncontroller.js b/server/controllers/questioncontroller.js new file mode 100644 index 0000000..29ae487 --- /dev/null +++ b/server/controllers/questioncontroller.js @@ -0,0 +1,62 @@ +const Question = require('../models/question') + +class QuestionController { + static getPublicQuestions(req,res,next) { + Question.find() + .populate('answers') + .then(questions => { + res.status(200).json(questions) + }) + .catch(next) + } + + static addQuestion(req,res,next) { + const { title, description } = req.body + + Question.create({ + user: req.decode.id, + title: title, + description: description, + upvotes: 0, + downvotes: 0, + answers: [] + }) + .then(question => { + res.status(201).json(question) + }) + .catch(next) + } + + static editQuestion(req,res,next) { + const { title, description } = req.body + + Question.findOne({ + _id: req.params.id, + user:req.decode.id + }) + .then(question => { + question.title = title + question.description = description + return question.save() + }) + .then(edited => { + res.status(200).json(edited) + }) + .catch(next) + } + + static deleteQuestion(req,res,next) { + + Question.deleteOne({ + _id: req.params.id + }) + .then(deleted => { + res.status(200).json(deleted) + }) + .catch(next) + } + + +} + +module.exports = QuestionController \ No newline at end of file diff --git a/server/controllers/usercontroller.js b/server/controllers/usercontroller.js new file mode 100644 index 0000000..83517ba --- /dev/null +++ b/server/controllers/usercontroller.js @@ -0,0 +1,49 @@ +const User = require('../models/user') +const { verifyPassword } = require('../helpers/bcrypt') +const { generateToken } = require('../helpers/jwt') + + + +class UserController { + static register(req, res, next) { + const { firstName, lastName, email, password } = req.body + const input = { firstName, lastName, email, password } + User.create(input) + .then(newUser => { + res.status(201).json(newUser) + }) + .catch(next) + } + + static login(req, res, next) { + console.log(req.body.email, req.body.password) + User.findOne({ + email: req.body.email + }) + .then(user => { + if (user) { + if (verifyPassword(req.body.password, user.password)) { + const payload = { + email: user.email, + id: user.id + } + const token = generateToken(payload) + res.status(200).json({ + firstName: user.firstName, + lastName: user.lastName, + access_token: token + }) + } + else { + next({ code: 400, message: 'username/password invalid'}) + } + } + else { + next({ code: 400, message: 'username/password invalid' }) + } + }) + .catch(next) + } +} + +module.exports = UserController \ No newline at end of file diff --git a/server/helpers/bcrypt.js b/server/helpers/bcrypt.js new file mode 100644 index 0000000..cff7c9a --- /dev/null +++ b/server/helpers/bcrypt.js @@ -0,0 +1,12 @@ +const bcrypt = require('bcrypt') +const salt = bcrypt.genSaltSync(10) + +const hashPassword = (input) => { + return bcrypt.hashSync(input, salt) +} + +const verifyPassword = (input, password) => { + return bcrypt.compareSync(input, password) +} + +module.exports = {hashPassword, verifyPassword} \ No newline at end of file diff --git a/server/helpers/jwt.js b/server/helpers/jwt.js new file mode 100644 index 0000000..8611dd8 --- /dev/null +++ b/server/helpers/jwt.js @@ -0,0 +1,10 @@ +const jwt = require('jsonwebtoken') + +module.exports = { + generateToken(payload) { + return jwt.sign(payload, process.env.JWT_SECRET) + }, + verifyToken(token) { + return jwt.verify(token, process.env.JWT_SECRET) +} +} \ No newline at end of file diff --git a/server/middlewares/authentication.js b/server/middlewares/authentication.js new file mode 100644 index 0000000..5828a70 --- /dev/null +++ b/server/middlewares/authentication.js @@ -0,0 +1,19 @@ +const {verifyToken} = require('../helpers/jwt') + +module.exports = { + authentication(req,res,next) { + if(req.headers.hasOwnProperty('access_token')) { + try { + const decode = verifyToken(req.headers.access_token) + req.decode = decode + next() + } + catch(err) { + next({status: 401, message: "unauthorized"}) + } + } + else{ + next({status: 401, message: "unauthorized"}) + } + } +} \ No newline at end of file diff --git a/server/middlewares/authorization.js b/server/middlewares/authorization.js new file mode 100644 index 0000000..64fa079 --- /dev/null +++ b/server/middlewares/authorization.js @@ -0,0 +1,58 @@ +const Question = require('../models/question') + +module.exports = { + questionAuthorization(req,res,next) { + Question.findOne({ + _id: req.params.id + }) + .then(question => { + if(question) { + const {id} = req.decode + let strObj = question.user + '' + + if(strObj === id) { + next() + } + else { + next({status: 401, message: "unauthorized"}) + } + } + else { + next({code: 404}) + } + }) + .catch(next) + }, + + answerAuthorization(req,res,next){ + Question.findOne({ + _id: req.params.id + }) + .then(question => { + if(question) { + const {id} = req.decode + let strObj = question.user + '' + + if(strObj === id) { + next() + } + else{ + next({status: 401, message: "unauthorized"}) + } + } + else{ + next({code: 404}) + } + }) + .catch(next) + }, + + adminAuthorization(req,res,next) { + if(req.decode.email === "admin@admin.com") { + next() + } + else{ + next({code: 401, message: "unauthorized"}) + } + } +} \ No newline at end of file diff --git a/server/models/answer.js b/server/models/answer.js new file mode 100644 index 0000000..2bf79fa --- /dev/null +++ b/server/models/answer.js @@ -0,0 +1,25 @@ +const mongoose = require('mongoose') +const Schema = mongoose.Schema + +const AnswerSchema = new Schema({ + user: { + type: Schema.Types.ObjectId, + ref: 'User' + }, + title: { + type: String, + }, + description: { + type: String, + }, + upvotes: [ { type: Schema.Types.ObjectId, ref: 'User'} ], + downvotes: [{ type: Schema.Types.ObjectId, ref: 'User' }], + question: { + type: Schema.Types.ObjectId, + ref: 'Question' + } +}) + +const Answer = mongoose.model('Answer', AnswerSchema) + +module.exports = Answer \ No newline at end of file diff --git a/server/models/question.js b/server/models/question.js new file mode 100644 index 0000000..8a39c69 --- /dev/null +++ b/server/models/question.js @@ -0,0 +1,22 @@ +const mongoose = require('mongoose') +const Schema = mongoose.Schema + +const QuestionSChema = new Schema({ + user: { + type: Schema.Types.ObjectId, + ref: 'User' + }, + title: { + type: String, + }, + description: { + type: String, + }, + upvotes: [{ type: Schema.Types.ObjectId, ref: 'User' }], + downvotes: [{ type: Schema.Types.ObjectId, ref: 'User' }], + Answers: [ { type: Schema.Types.ObjectId, ref: 'Answer' } ] +}) + +const Question = mongoose.model('Question', QuestionSChema) + +module.exports = Question \ No newline at end of file diff --git a/server/models/user.js b/server/models/user.js new file mode 100644 index 0000000..0b5db53 --- /dev/null +++ b/server/models/user.js @@ -0,0 +1,55 @@ +const mongoose = require('mongoose') +const Schema = mongoose.Schema +const { hashPassword } = require('../helpers/bcrypt') + +let uniqueCheck = function(value) { + return User.findOne({ + email: value + }) + .then(user => { + if (user) { + return false + } + }) +} + +let formatCheck = function(value) { + let re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; + return re.test(value); +} + +const UserSchema = new Schema({ + firstName : { + type: String, + required: [true, 'first name is required'] + }, + lastName : { + type: String, + required: [true, 'last name is required'] + }, + email: { + type: String, + required: [true, 'email is required'], + validate: [ + { validator: uniqueCheck, msg: 'Email is already registered' }, + { validator: formatCheck, msg: 'Incorrect email format'} + ], + }, + password: { + type: String, + required: [true, 'password is required'], + minlength: 8, + maxlength: 12 + } +}) + +UserSchema.pre('save', function (next) { + let hash = hashPassword(this.password) + this.password = hash + next() +}) + + +const User = mongoose.model('User', UserSchema) + +module.exports = User \ No newline at end of file diff --git a/server/package.json b/server/package.json new file mode 100644 index 0000000..0656f4d --- /dev/null +++ b/server/package.json @@ -0,0 +1,29 @@ +{ + "name": "hacktivOverflow-server", + "version": "1.0.0", + "description": "", + "main": "app.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/shandiyuwono/hacktivOverflow-server.git" + }, + "keywords": [], + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/shandiyuwono/hacktivOverflow-server/issues" + }, + "homepage": "https://github.com/shandiyuwono/hacktivOverflow-server#readme", + "dependencies": { + "axios": "^0.19.0", + "bcrypt": "^3.0.6", + "cors": "^2.8.5", + "dotenv": "^8.0.0", + "express": "^4.17.1", + "jsonwebtoken": "^8.5.1", + "mongoose": "^5.6.2" + } +} diff --git a/server/routes/answerrouter.js b/server/routes/answerrouter.js new file mode 100644 index 0000000..e69de29 diff --git a/server/routes/index.js b/server/routes/index.js new file mode 100644 index 0000000..da2489a --- /dev/null +++ b/server/routes/index.js @@ -0,0 +1,9 @@ +const router = require('express').Router() +const userRouter = require('./userrouter') +const questionRouter = require('./questionrouter') + + +router.use('/users', userRouter) +router.use('/questions', questionRouter) + +module.exports = router \ No newline at end of file diff --git a/server/routes/questionrouter.js b/server/routes/questionrouter.js new file mode 100644 index 0000000..8bc71ac --- /dev/null +++ b/server/routes/questionrouter.js @@ -0,0 +1,13 @@ +const router = require('express').Router() +const QuestionController = require('../controllers/questioncontroller') +const { questionAuthorization } = require('../middlewares/authorization') +const { authentication } = require('../middlewares/authentication') + +router.get('/', QuestionController.getPublicQuestions) + +router.use(authentication) +router.post('/', QuestionController.addQuestion) +router.patch('/:id', questionAuthorization, QuestionController.editQuestion) +router.delete('/:id', questionAuthorization, QuestionController.deleteQuestion) + +module.exports = router \ No newline at end of file diff --git a/server/routes/userrouter.js b/server/routes/userrouter.js new file mode 100644 index 0000000..757616c --- /dev/null +++ b/server/routes/userrouter.js @@ -0,0 +1,7 @@ +const router = require('express').Router() +const UserController = require('../controllers/usercontroller') + +router.post('/register', UserController.register) +router.post('/login', UserController.login) + +module.exports = router \ No newline at end of file From a64bf7917b655dc50d18051a6f9edf2a286a3be9 Mon Sep 17 00:00:00 2001 From: Shandi Yuwono Date: Wed, 3 Jul 2019 14:17:15 +0700 Subject: [PATCH 2/8] login/signup --- .gitignore | 1 + client/package.json | 2 + client/src/App.vue | 23 +++- client/src/components/navbar.vue | 14 +- client/src/components/posts.vue | 19 +-- client/src/components/profile.vue | 24 ++++ client/src/components/signin.vue | 106 ++++++++++++++++ client/src/components/signinsuccess.vue | 56 ++++++++ client/src/components/signup.vue | 162 ++++++++++++++++++++++++ client/src/main.js | 2 + client/src/router.js | 19 ++- client/src/store.js | 32 ++++- client/src/views/askquestion.vue | 13 ++ client/src/views/home.vue | 26 ++++ server/app.js | 2 +- server/controllers/usercontroller.js | 11 +- server/models/user.js | 4 +- server/package.json | 3 +- server/routes/userrouter.js | 8 +- 19 files changed, 494 insertions(+), 33 deletions(-) create mode 100644 client/src/components/profile.vue create mode 100644 client/src/components/signin.vue create mode 100644 client/src/components/signinsuccess.vue create mode 100644 client/src/components/signup.vue create mode 100644 client/src/views/askquestion.vue create mode 100644 client/src/views/home.vue diff --git a/.gitignore b/.gitignore index a0dddc6..c1d5222 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ node_modules # local env files .env.local .env.*.local +.env # Log files npm-debug.log* diff --git a/client/package.json b/client/package.json index 36a4861..30dcb91 100644 --- a/client/package.json +++ b/client/package.json @@ -8,9 +8,11 @@ "lint": "vue-cli-service lint" }, "dependencies": { + "axios": "^0.19.0", "core-js": "^2.6.5", "vue": "^2.6.10", "vue-router": "^3.0.3", + "vuelidate": "^0.7.4", "vuetify": "^1.5.16", "vuex": "^3.0.1" }, diff --git a/client/src/App.vue b/client/src/App.vue index 4e0b846..0276918 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -1,20 +1,23 @@ diff --git a/client/src/components/navbar.vue b/client/src/components/navbar.vue index bab25e7..5e70241 100644 --- a/client/src/components/navbar.vue +++ b/client/src/components/navbar.vue @@ -33,7 +33,7 @@ {{ item.icon }} @@ -47,15 +47,16 @@ - + - Hacktiv Overflow +
Hacktiv Overflow
@@ -78,13 +79,18 @@ export default { { icon: 'archive', text: 'Archive' }, { icon: 'delete', text: 'Trash' }, { divider: true }, - { icon: 'settings', text: 'Settings' }, + { icon: 'input', text: 'Sign in', path: '/signin' }, { icon: 'chat_bubble', text: 'Trash' }, { icon: 'help', text: 'Help' }, { icon: 'phonelink', text: 'App downloads' }, { icon: 'keyboard', text: 'Keyboard shortcuts' } ] } + }, + methods: { + toHome() { + this.$router.push('/') + } } } diff --git a/client/src/components/posts.vue b/client/src/components/posts.vue index 8e6d971..2acb91c 100644 --- a/client/src/components/posts.vue +++ b/client/src/components/posts.vue @@ -1,17 +1,16 @@ diff --git a/client/src/components/posts.vue b/client/src/components/posts.vue index bb69083..56439ed 100644 --- a/client/src/components/posts.vue +++ b/client/src/components/posts.vue @@ -2,11 +2,14 @@ - Public questions - Your questions + Public questions + Your questions -